search for: kitchener

Displaying 20 results from an estimated 320 matches for "kitchener".

Did you mean: kirchner
2010 Oct 06
1
2 way intercom recommendation for restaurant kitchens
Greetings, I need a 2 way intercom for separate kitchens to communicate without having to walk back and forth. The speaker has to be loud but clear, not distorted. Sometimes the kitchens can be noisy. It needs to be easy to use. It needs to be easy to clean. It would be nice if it used POE. Eventually I would like the kitchens to be able to dial different parts of the restaurant when I
2011 Jan 05
3
VoIP PoE phones for restaurant (kitchen)
On Tue, 4 Jan 2011, Andy Graybeal wrote: >> The Polycom 321 has not been EOL'd and supports VLAN. It is, however, >> lacking a 2nd ethernet port if you were to go that route. >> >> -M >> > Thanks for the response Mark. I see the 331 has two ports and the same > features as the 321. > > I'm wondering what phone would be best being used as an
2006 Apr 07
4
Effect.toggle error in 1.6.1
I have this line of code: new Effect.toggle(document.getElementsByClassName(''modarea'', Event.findElement(ev,''li'')), ''blind''); I''ve confirmed that the Effect.toggle is indeed getting the proper element, however, I''m getting this in my javascript console: element.visible is not a function (effects.js: line 153) I
2006 Apr 28
4
.times not behaving as I''d expect
I''m using prototype 1.4.0 in a big web application I''ve been working on for months and today a bug was raised by one of our testers. After investigation it turns out that something done 0 times will actually fire once. So, for example, if I had (0).times( function(i) { alert(i); } ); it''d fire once rather than not at all. Is this a bug in prototype or the
2006 Jun 14
5
generic onDragStart onDrag and onDragFinish events extracted from scriptaculous?
Hi folks. I''m working on a project where I need some drag and drop, but I need to implement what happens in a very different way, so I''m creating my own class for it. I don''t want to reinvent the wheel and redo Thomas'' excellent drag/drop functionality, nor do I want to copy/paste his code over into mine. So, I was wondering, has anyone tried to extract
2006 May 25
7
prototype-ish subclassing
when using prototype and Class.create(), what''s the preferred method of creating a subclass? say I have a real simple class: var Testing = Class.create(); Object.extend(Testing.prototype, { initialize: function() { ... }, ... }); would I subclass it as so? var SubClass = Class.create(); Object.extend(Object.extend(SubCLass.prototype, Testing.prototype), { ...
2006 Feb 18
10
Updated: window dialog script
Dialog script has been update. A demo can be seen here: http://net4visions.com/dev/dialog/dialog.htm . Please see changelog for changes. The dialog script can be downloaded from here: http://www.net4visions.com/dev/downloads/dialog.zip . _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2002 Feb 12
2
Compileing 2.2.3a ( and ealier) on HPUX11
...finition of macro TCP_MAXSEG. The above is an example, it happens for each stage of the compile process. I can post the whole error list, if needed, but don't wan't clog up the mail list. Is this something I can fix or is it something that will be fixed or can I ignore it ? -- Stephen M Kitchener Unix Systems Supply Chain Division. AspenTech UK 1 Century Court, Tolpits Lane, Watford, Herts, WD18 9PT TEL +44 (0) 1923 652125 FAX +44 (0) 1923 652215 EMAIL steve.kitchener@aspentech.com WEB http://www.aspentech.com
2006 Apr 24
5
merging one array into another
Is there no better way to merge one array into another than iterating over the array you wish to append with each() and push()ing the elements on to the other array? Here''s what I mean: var arr1 = [1, 2, 3, 4, 5]; var arr2 = [''a'', ''b'', ''c'']; $A(arr2).each(function(el) { arr1.push(el) }); Is there no better way to do it than this?
2006 May 01
2
[prototype] Selector class fails on selector strings with spaces
I just ran across this bug when trying to re-create Ben Nolan''s behaviour.js with prototype and was wondering if anyone had fixed it before I went re-inventing the wheel :) Thanks! -Jeremy -- Jeremy Kitchen ++ kitchen-RA8HwDor7flnDGu+y90WmgC/G2K4zDHf@public.gmane.org http://ipaction.org/ -- defend your rights to fair use _______________________________________________
2006 Mar 08
2
RE: question about auto-updating div withoverflow:auto and maintaining position
You should be able to do this by changing the div''s .scrollTop value via javascript (maybe just pick a very large number to ensure bottom is hit, like 10,000). -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Jeremy Kitchen Sent:
2014 Mar 25
0
Wickes Kitchens
Wickes Kitchens , Go to www[.]wickeskitchensreviews[.]co[.]uk Wickes Kitchens ________________________ www[.]wickeskitchensreviews[.]co[.]uk -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2006 Mar 15
3
prototype.js Event.stopObserving
anyone have any information on how to effectively use this? Event.observe() doesn''t return anything, and nothing I''ve tried is actually removing the event listeners from the objects. -Jeremy -- Jeremy Kitchen ++ kitchen-RA8HwDor7flnDGu+y90WmgC/G2K4zDHf@public.gmane.org In the beginning was The Word and The Word was Content-type: text/plain -- The Word of Bob.
2006 Jan 11
2
RE: extending the Element.prototype to provide asetAttributes function
No comment on the usefulness of your function, as I''ve yet to try it. But for the "this" scope problem, try this... (removed your var and added the bind(this) after the function declaration. I didn''t test it though so you might want to give it whirl. It might introduce a different scope problem with the "attr" var but I think it should work.
2006 Feb 21
7
accordion (outlook bar thingy) help
Does anybody have a solution that really works nice? I know about: http://wiki.script.aculo.us/scriptaculous/show/accordion%20feature but I was hoping someone had worked out the kinks. I''m really looking for something like: http://openrico.org/rico/demos.page?demo=rico_accordion Thanks for your time. Joe _______________________________________________ Rails-spinoffs mailing list
2006 Feb 02
3
dynamic addition of table rows
Hi, I have a table laid out something like this: <table> <thead> <tr> <th>col 1</th> <th>col 2</th> </tr> </thead> <tbody id="tablebody"> <tr> <td>moo</td> <td>moo</td> </tr> <tr> <td>moo</td> <td>moo</td> </tr>
2006 Jan 11
2
extending the Element.prototype to provide a setAttributes function
Hi folks, I''m pretty new to javascript and prototype, so I just want to get some peer-review on a function I wrote that makes a handy (at least, it seems handy) way to set a group of attributes on an element easily. Object.extend(Element.prototype, { setAttributes: function(attrs) { var el = this; $H(attrs).each( function(attr) { el.setAttribute(attr[0], attr[1]);
2014 Mar 03
4
[LLVMdev] Cross-compiling Compiler-RT builtins
I am attempting to port an operating system project to use Clang/LLVM instead of GCC, but I'm having issues with Compiler-RT. Right now, the OS is being cross-compiled on an x86_64 host targeting ARMv7a. I built the LLVM toolchain according to the instructions, though I limited the supported targets to arm, x86, and x86_64 to reduce compilation time. I'm finding that compilation proceeds
2002 Oct 14
3
Directory size display discrepency
...2kb and if I du a du -ks on the directory it reports 4 k. Has anyone noticed this before ?, do I need to set up samba a different way? I should say that the machine that samba is on is a DEC/Compaq machine running 2.0.10 but is also seen on a 2.2.3a samba installed machine. Thanks -- Stephen M Kitchener Unix Systems Administrator EMEA APAC Supply Chain Division. AspenTech UK 1 Century Court, Tolpits Lane, Watford, Herts, WD18 9PT TEL +44 (0) 1923 652125 FAX +44 (0) 1923 652215 EMAIL steve.kitchener@aspentech.com WEB http://www.aspentech.com Aspenworld 2002 the premier global...
2008 Feb 27
0
Do you need a place to stay? Food to eat? 4000+ Shelters and soup kitchens in all 50 states:
Do you need a place to stay? Food to eat? 4000+ Shelters and soup kitchens in all 50 states: http://groups.google.com/group/homeless_shelters?hl=en --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to