search for: whee

Displaying 20 results from an estimated 74 matches for "whee".

Did you mean: wheel
2006 Mar 03
2
Does an entry in AstDB stay after reboot?
...s. If there is a number, it calls that. Now I just need to know if I reboot the system, the current value will still be in the AstDB, I don't want to reboot the system and then find out the key is always getting erased. Thanks all for the help. exten => s,1,Answer() exten => s,2,DBget(WHEE=CFIM/temp) exten => s,3,GotoIf($["${WHEE}" = "0"]?s-NoCFIM,1:s-CFIM,1) ; If call forward number in AstDB, then call that number exten => s-CFIM,1,DBget(WHEE=CFIM/temp) exten => s-CFIM,2,Dial(Zap/g0/${WHEE},20,tm) exten => s-CFIM,102,Voicemail,u203 exten => s-CFIM...
2006 Apr 02
6
Neat style trick
Not terribly exciting, but I was happy to think of it. I needed a div with a fixed height that could vary depending on page content. So I did this: <div class="listcntnr" style="height: <%= @users.size / 2 * 125%>px"> Whee! --Al Evans -- Posted via http://www.ruby-forum.com/.
2019 Jan 30
4
kernel boot issues
...these, updated ones, won't boot: 2.6.32-754.3.5.el6.x86_64 2.6.32-754.6.3.el6.x86_64 2.6.32-754.9.1.el6.x86_64 2.6.32-754.10.1.el6.x86_64 They all show the same 'symptom',? grub says it is booting that kernel, screen blanks, solid corned in the left-top corner...? and that's whee it stays. I know this is vague, but any ideas? thanks, Ron
2003 Oct 03
2
802.11 phone review: WiSIP
Hello - Here's my first impression review of the first SIP 802.11 phone. I got my hands on the "first" one sold, so that perhaps makes me the first person to have a real 802.11 SIP phone commercially in the US interworking with Asterisk. Whee! Can someone point me to other commercially shipping phones to prove me wrong? http://www.loligo.com/asterisk/misc/WiSIP/WiSIP-review.html JT
2007 Sep 25
23
device alias
Hi. I''d like to request a feature be added to zfs. Currently, on SAN attached disk, zpool shows up with a big WWN for the disk. If ZFS (or the zpool command, in particular) had a text field for arbitrary information, it would be possible to add something that would indicate what LUN on what array the disk in question might be. This would make troubleshooting and general
2007 Dec 06
11
Weird Prototype behavior
In this code: <html> <head> <title>PT test</title> <script type=''text/javascript'' src=''/js/prototype/1.6.0/ prototype.js''></script> <script type=''text/javascript''> //<![CDATA[ Event.observe(window, ''load'', function () { alert($(''login_username'')); }); //]]>
2010 Apr 10
1
Error in SimpleVirtualInstall
...t besides that i can send and receive mail. ive used: http://wiki.dovecot.org/HowTo/SimpleVirtualInstall there it says that /etc/dovecot/passwd should look like: test:{PLAIN}pass bill:{PLAIN}secret timo at example.com:{PLAIN}hello123 dave at example.com:{PLAIN}world234 joe at elsewhere.org:{PLAIN}whee jane at elsewhere.org:{PLAIN}mypass but the syntax used for test and bill didnt work here, i had to add the virtual domain to get it working. or else deliver wasnt able to recognize the user (unknown user). Can anybody please confirm this? Also i would like to suggest to explicitely say that pro...
2014 Jul 03
1
gnutls_handshake() failed on updating package index from sernet's https debian package repository
Hi, anybody else having isssues on updating package index from sernet's https debian package repostory? I'm on debian wheezy. 'apt-get update' results in: W: Failed to fetch https://download.sernet.de/packages/samba/4.1/debian/dists/wheezy/main/source/Sources gnutls_handshake() failed: A TLS warning alert has been received. W: Failed to fetch https://download.sernet.de/packages/samba/4.1/debian/dists/wheezy/...
2011 Jul 11
3
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
Hello I am new to LLVM and would like to cross-compile LLVM 2.9 on x86 (Ubuntu) to ARM using Code Sourcery LIte toolchain for ARM EABI (2011.03-41). This is the command I used to configure: ./configure --build=i686-pc-linux-gnu --host=arm-none-linux-gnueabi --target=arm-none-linux-gnueabi followed by: make -C llvm.2.9 ENABLE_OPTIMIZED=0 I encountered the following errors: configure:error:
2011 Jul 12
0
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
...r building for your host, either because your cross compile tools are first on the path and have conflicting generic names (gcc, g++, etc. instead of a fully qualified name with the triple as prefix) or there's something broken in the host tools installation. -Jim On Jul 11, 2011, at 9:03 PM, Whee Cheng Ong wrote: > Hi Jim > > Thanks for your suggestion of building llvm in a dedicated directory. > However, it (build_llvm) does not work, and for some reasons, it > appear to re-run configure when make is called, using different host > and target configurations: > fusion...
2006 Feb 24
9
Growing beyond unsigned integer for the id field
I am creating an app that will out grow an int(10) unsigned for the id field, ie. 4,294,967,295 records. What are my options, I have looked at the GUID plugin that lets you use a 32 char GUID, but I still want the id''s to be sequential, and (I think) that the overhead of searching a varchar field will be too big for such a large number of records. It does not appear you can use a
2015 Oct 01
2
req->nr_phys_segments > queue_max_segments (was Re: kernel BUG at drivers/block/virtio_blk.c:172!)
...rint out sg_elems at init time and when this fails, > to make sure some kind of memory corruption > does not change sg_elems after initialization? > > > Jens, how may we get more segments than blk_queue_max_segments? > Is driver expected to validate and drop such requests? > Whee! I'm not alone anymore! I have seen similar issues even on non-mq systems; occasionally I'm hitting this bug in drivers/scsi/scsi_lib.c:scsi_init_io() count = blk_rq_map_sg(req->q, req, sdb->table.sgl); BUG_ON(count > sdb->table.nents); There are actually two problems here:...
2015 Oct 01
2
req->nr_phys_segments > queue_max_segments (was Re: kernel BUG at drivers/block/virtio_blk.c:172!)
...rint out sg_elems at init time and when this fails, > to make sure some kind of memory corruption > does not change sg_elems after initialization? > > > Jens, how may we get more segments than blk_queue_max_segments? > Is driver expected to validate and drop such requests? > Whee! I'm not alone anymore! I have seen similar issues even on non-mq systems; occasionally I'm hitting this bug in drivers/scsi/scsi_lib.c:scsi_init_io() count = blk_rq_map_sg(req->q, req, sdb->table.sgl); BUG_ON(count > sdb->table.nents); There are actually two problems here:...
2002 Nov 04
3
passwd command problem with Solaris/winbind/pam
Hi- I am running Samba 2.2.5 on Solaris 8 with winbind and pam configured. I have the following in my nsswitch.conf: passwd: files winbind group: files winbind Now local users on the Solaris 8 machine cannot change there password using the passwd command: Here is the sample output: # passwd michasp1 Enter new password: Enter new password again: Supported configurations for passwd
2004 Nov 30
2
Bug in ogg123 playback of OggFLAC files?
...00 00 |..fLaC..."......| Should the second line from the above code be a comparison against the string "FLAC" instead, or should the "fLaC" comparison be at position 34? Changing the code to compare with "FLAC" results in a binary that can play my OggFLAC file, whee. But I still can't seek. The reason became clear when looking further through the code... return 0; /* No seeking at this time */ Whoops, bummer. Out of curiosity, how easy should it be to implement seeking within an OggFLAC file, as opposed to a plain ordinary FLAC file? Now, to sadde...
2004 Nov 30
2
Bug in ogg123 playback of OggFLAC files?
...00 00 |..fLaC..."......| Should the second line from the above code be a comparison against the string "FLAC" instead, or should the "fLaC" comparison be at position 34? Changing the code to compare with "FLAC" results in a binary that can play my OggFLAC file, whee. But I still can't seek. The reason became clear when looking further through the code... return 0; /* No seeking at this time */ Whoops, bummer. Out of curiosity, how easy should it be to implement seeking within an OggFLAC file, as opposed to a plain ordinary FLAC file? Now, to sadde...
2019 Jan 30
0
kernel boot issues
...2-754.3.5.el6.x86_64 > > 2.6.32-754.6.3.el6.x86_64 > > 2.6.32-754.9.1.el6.x86_64 > > 2.6.32-754.10.1.el6.x86_64 > > > They all show the same 'symptom', grub says it is booting that kernel, screen blanks, solid corned in the left-top corner... and that's whee it stays. > > I know this is vague, but any ideas? You should remove the ?rhgb quiet? from the grub kernel line, to get a better idea of what it?s actually doing. Any chance you?re using a 3rd-party drivers for the video card? -- Jonathan Billings <billings at negate.org>
2019 Jan 31
0
kernel boot issues
...: > > 2.6.32-754.3.5.el6.x86_64 > 2.6.32-754.6.3.el6.x86_64 > 2.6.32-754.9.1.el6.x86_64 > 2.6.32-754.10.1.el6.x86_64 > > They all show the same 'symptom',? grub says it is booting that kernel, > screen blanks, solid corned in the left-top corner...? and that's whee > it stays. > I know this is vague, but any ideas? > > thanks, > Ron Hello Ron, I have the same problem on a Dell Latitude E6430 laptop running CentOS 6.10. I get a solid white rectangle in the upper left corner at boot. See the link below for suggested work arounds. I have not t...
2007 Apr 18
0
[PATCH 10/21] i386 Use protected segment for 16bit stack
Use prepare_protected_segment macro to set up the 16-bit stack. Whee!! This code is almost readable now. Signed-off-by: Zachary Amsden <zach@vmware.com> Index: linux-2.6.14-zach-work/arch/i386/kernel/cpu/common.c =================================================================== --- linux-2.6.14-zach-work.orig/arch/i386/kernel/cpu/common.c 2005-11-04 16:54:4...
2006 Apr 25
0
Capistrano adding shared files
...ry to shared" task :after_setup do run <<-CMD mkdir -p -m 775 #{shared_path}/user_img CMD end desc "Link shared usr_img directory to public/usr_img" task :after_update_code do run <<-CMD ln -nfs #{shared_path}/user_img #{release_path}/public/user_img CMD end Whee! --Al Evans -- Posted via http://www.ruby-forum.com/.