search for: bacon

Displaying 20 results from an estimated 151 matches for "bacon".

Did you mean: beacon
2008 Jul 04
4
Re ad in a file - produce independent vectors
Is there a way of reading in a file in a way that each line becomes a vector: for example: meals.txt breakfast bacon eggs sausage lunch sandwich apple marsbar crisps dinner chicken rice custard pie I want to read in this file and end up with 3 different vectors, one called breakfast which contains "bacon", "eggs", sausage" One called lunch with "sandwic...
2005 Aug 23
2
Zyxel Prestige 2000W Firmware - EVIL
If you see a wj0011 version of firmware for Zyxel Prestige 2000W floating around (I found it in a German forum), KEEP AWAY. It completely trashed the wireless networking in my phone. -- ========================================== Rod Bacon Empowered Communications Ground Floor, 102 York St. South Melbourne Victoria, Australia. 3205 Phone: +613 99401600 Fax: +613 99401650 FWD: 512237 ICQ: 5662270 ==========================================
2011 Nov 13
2
Rspec not finding my examples
...#39;' and rspec would find any spec files in a directory called spec. I even tried adding a .rspec file with "--default_path spec" in the directory from which I am running rspec. No luck with that either. I am using RSpec 2.7.0 and Ruby 1.9.2 under RVM. My directory structure is: bacon lib bacon.rb spec bacon.spec >From the bacon directory: $ rspec No examples found. $ rspec spec No examples found. $ rspec spec/bacon.spec .. Finished in 1.09 seconds 2 examples, 0 failures -- Cynthia N. Kiser cnk at ugcs.caltech.edu
2005 Jul 27
1
Cisco 7940 - Disappearing Clock - SOLVED
...dn't help. I eventually setup a new ntp server on my LAN, and used it as a sync source. Everything seems OK now. Obviously a problem with my other ntp server. Cheers. -------- Original Message -------- Subject: Cisco 7940 - Disappearing Clock Date: Thu, 28 Jul 2005 11:50:35 +1000 From: Rod Bacon <rod.bacon@empoweredcomms.com.au> To: asterisk-users@lists.digium.com This question is not actually * related, but please don't flame me! Is anyone out there using the 7.4 or 7.5 SIP firmware on their Cisco 79xx phones? I have a weird problem where my clock disappears after a period of...
2007 Feb 08
11
Best phone for easy provisioning
...tral provisioning? I've used CISCO 79XX phones, and they're great (but too expensive). I like Grandstream phones, but their provisioning sucks. What is everybody else using in large environments where individual config is not an option? ---------------------------------------- Rod Bacon Technical Manager JASCO Consulting Pty. Ltd. http://www.jasco.net.au <http://www.jasco.net.au/> Ph. 03 9432 6376 Fax: 03 9432 6378 ---------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/piperm...
2010 Sep 02
5
what is zfs doing during a log resilver?
So, when you add a log device to a pool, it initiates a resilver. What is it actually doing, though? Isn''t the slog a copy of the in-memory intent log? Wouldn''t it just simply replicate the data that''s in the other log, checked against what''s in RAM? And presumably there isn''t that much data in the slog so there isn''t that much to check? Or
2005 Jun 13
2
ztcfg server crash
...can vary), If I stop asterisk and try to run ztcfg -v to reinitialise my quad e1 card, the server will lock up. Sometimes it's a complete lockup, where it won't even return pings, other times it seems to be "partially screwed". -- ========================================== Rod Bacon Empowered Communications Ground Floor, 102 York St. South Melbourne Victoria, Australia. 3205 Phone: +613 99401600 Fax: +613 99401650 FWD: 512237 ICQ: 5662270 ==========================================
2007 Jan 08
0
[PATCH] auto_discovery_link_tag with more bacon!
Could a core member please check out ticket #6941? Makes auto_discovery_link_tag accept tons more content types. auto_discovery_link_tag :xml, formatted_posts_url(:xml) => <link href="http://localhost:3000/posts.xml" rel="alternate" title="RSS" type="application/xml" /> -- Josh Peek http://joshpeek.com/
2017 Nov 01
1
Creating Tag
...tem 7 12\ ham&chz up" salad swiss 12\ veggie cheese stk up" california omelet orange juice exteme bac boy dinner salad chef salad 12\ turkey up" the big cheese combo it fries cmb sm pepsi km cheese burger #NAME? #NAME? kid grilled cheese wheat kids ham cheese white box calif. blt bacon turkey melt coffee 1-pc pancake fries tuna sand biscuits & gravy s-1/3 patty x avocado x chez s-bacon #NAME? xtra egg lg bev upcharge sm ice tea small soup roast beef ww salad tuna med pepsi 20\ veg chzstk up" day nm egg san s-chkn brest bell pepper fruit 1 slice veggie turkey s-toast x sa...
2005 Feb 14
7
Outbound Caller ID on PRI
We have just had an ISDN PRI service commissioned here in AU (using Powertel as provider). I have called them and ensured that we have the ability to set Caller ID on our service to any number in our 100 number block, and I have been assured that everything is OK from their end (unlikely). Every time I drop a sample.call in to /var/spool/asterisk/outgoing with the Callerid: option set, the
1998 Feb 25
1
R-beta: Mac version
.... Before putting up the proposal some idea of the scale of the > task would be useful. Do you know what would be involved? Is there a > preferred compiler? > > CC'd to R+R for when the power returns:-) > > Colin I got a letter on the same topic a bit earlier today from John Bacon-Shone. I'm copying my reply to him below. Basically, I think that the scale of the task is highly dependent on whether you know your way around the Mac API to begin with. As for compilers, I have no knowledge of the Mac platform, but in general freeware is preferred, if it exists (and works!),...
2009 Apr 20
2
[LLVMdev] A few questions from a newbie
...), (LOAD32imm tglobaladdr:$addr)>; means? And I totally agree it would be better if someone can explain why the Wrapper is needed here. Regards, P.B. On Sun, Apr 19, 2009 at 11:01 PM, Jakob Stoklund Olesen <stoklund at 2pi.dk>wrote: > > On 20/04/2009, at 07.35, Peter Bacon wrote: > > > Hello, I am learning to write a new backend for LLVM and have a few > > simple questions. > > Hi Peter, > > I am a newbie too, but I have recently dealt with the same issues. > > > 1) What are the differences between 'constant' and 'targe...
2024 Jan 18
2
Should subsetting named vector return named vector including named unmatched elements?
Subsetting vector (including lists) returns the same number of elements as the subsetting vector, including unmatched elements which are reported as `NA` or `NULL` (in case of lists). Consider: ``` menu = list( ? "bacon" = "foo", ? "eggs" = "bar", ? "beans" = "baz" ? ) select = c("bacon", "eggs", "spam") menu[select] # $bacon # [1] "foo" # # $eggs # [1] "bar" # # $<NA> # NULL ``` Wouldn't it be...
2005 Oct 11
1
Wrong caller id in CDR
...and MySQL) are being written with the wrong callerid. As best as I can determine, they are being written with the CLID of the _last_ caller to access the specific ZAP channel in question, not the current one. Has anyone ever seen this before? -- ========================================== Rod Bacon Empowered Communications Ground Floor, 102 York St. South Melbourne Victoria, Australia. 3205 Phone: +613 99401600 Fax: +613 99401650 FWD: 512237 ICQ: 5662270 ==========================================
2006 Jan 22
1
SNOM 190 Daylight Savings
I've posted this to SNOM, but was wondering wheter anyone here has issues with SNOM 190 phones not showing the correct DST adjusted time (using the latest firmware). -- ========================================== Rod Bacon Empowered Communications Ground Floor, 102 York St. South Melbourne Victoria, Australia. 3205 Phone: +613 99401600 ? ?Fax: +613 99401650 FWD: 512237 ? ? ? ? ? ? ? ? ? ICQ: 5662270 ==========================================
2005 Oct 09
8
Zaptel Line Build Out
...t (or LBO) is an integer, from the following table: # 0: 0 db (CSU) / 0-133 feet (DSX-1) # 1: 133-266 feet (DSX-1) # 2: 266-399 feet (DSX-1) # 3: 399-533 feet (DSX-1) # 4: 533-655 feet (DSX-1) # 5: -7.5db (CSU) # 6: -15db (CSU) # 7: -22.5db (CSU) -- ========================================== Rod Bacon Empowered Communications Ground Floor, 102 York St. South Melbourne Victoria, Australia. 3205 Phone: +613 99401600 Fax: +613 99401650 FWD: 512237 ICQ: 5662270 ==========================================
2010 Jun 18
6
WD caviar/mpt issues
...#39;'s kind of a shame, because their single-drive performance is quite good - I''ve been doing single-drive tests in another chassis against cudas and constellations, and they seem quite a bit faster except on random-seek. Have I missed any changes/updates in the situation? Thanks, -bacon -- This message posted from opensolaris.org
2005 Feb 15
6
A hypothetical question...
I know this is casting a wide net, but If you were charged with building a large, public VOIP network with multiple PSTN gateways, the capacity to carry a lot of traffic and bill clients accurately, what pieces (brands, makes, models) would you use to assemble the solution? Assume that $$$ is not an issue. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Sep 06
5
PRI in and out
I am wanting to front-end a legacy PBX with an asterisk box. I have done plenty of asterisk work over the last 6 months to PRI circuits, but not with a PBX being involved. I know I can use asterisk and digium cards in this manner, but do I need separate cards for the PRI -> Asterisk side to the Asterisk -> PBX side, or will a 4-port PRI card do the job? (I already have a spare one of
2010 Dec 21
5
relationship between ARC and page cache
...you think - the machine has 90 dual-port SAS-2 spindles across 6 LSI controllers with 12 x4 uplinks off the expanders, no daisy-chain, with OCZ Vertex2Pro L2ARCs. I can push 5GByte/sec on/off disk all day without sweating hard.) Is my line of thinking valid, or am I missing something? Thanks, -bacon