search for: dandi

Displaying 20 results from an estimated 228 matches for "dandi".

Did you mean: andi
2008 May 26
3
[LLVMdev] X86TargetMachineModule not helping
Hi all, After creating a new LLVM-based project, I faced an odd problem. ExecutionEngine::create always retuned null. After some investigation I found out that it was due to the target architecture not getting registered. I'm using Visual C++ 2005 and in the X86TargetMachine.cpp file an extern variable X86TargetMachineModule is created to 'ensure' that the module is linked in. It
2006 Aug 09
2
how to access selected value in controller action
I have this in a view: <%= start_form_tag :action => ''create_price'', :id => @media.id %> <%= select("media", "price_code_id", PriceCode.find_all.collect {|pc| [pc.name, pc.id ] }, { :include_blank => false }) %> <%= submit_tag ''Add Price Code'' %> <%= end_form_tag %> My question is, how would I access the
2006 Apr 06
3
has_and_belongs_to_many find
Say I have a post model that has_and_belongs_to_many :categories, and a category model that has_and_belongs_to_many :posts. So I have a categories_posts table to do the join. That''s all find and dandy. However I want to be able to find all the posts that belong to a specific category. I tried Post.find_by_category(:id) but that doesn''t work. Does anyone have any insight?
2006 Apr 19
1
AJAX, Response codes and Opera.
Hello all. I am in the following situation. I page made up of a few divs and a form using form_remote_tag like so: <%= form_remote_tag :update => { :failure => ''content'', :success => ''body'' }, :url => { :controller => ''server'', :action => ''create'', :client_id => params[:client_id] } -%> <%=
2005 Sep 17
2
Complete NPA-NXX list for USA/Canada npanxx, ratecenters, etc (attached)
I noticed while reading some posts that people were looking for a complete NPA-NXX list for all area codes and prefixes. We happen to have the entire database. So I am making it available to the public. Help is available at: http://download.sixtel.net/npa/help.txt (Caution, 20meg files) Mysql Insert for this is available at: http://download.sixtel.net/npa/npainsert.txt CSV data for
2006 Nov 13
2
Custom voicemail extension greeting
Making custom "voicemail greetings" seems fairly straight forward, and I've done it. However, I'm looking for a way to make the actual extension answer with "You've reached my Jim Dandy voice mailbox, go take a flying . . .". (OK, so maybe not), instead of "The person at extension xxxx, is unavailable" Possible? Easy? Under my nose? joe a.
2013 Aug 16
3
UEFI PXE boot & Microsoft DHCP
I'm currently using Microsoft DHCP to enable PXE booting. I've set options 66 and 67 for the relevant scopes and it's all fine and dandy. However, UEFI machines won't initiate PXE boot, they don't seem to recognize the options. Is there another setting that need to be set? And how to I filter UEFI clients so I set option 67 to the right value (lpxelinux.efi)? -- Alexandre
2006 Mar 10
3
In Place Editor and Empty Fields
So, the InPlaceEditor with AJAX is all nice and dandy, works great. What about fields that don''t have any content? As far as I can tell, this doesn''t work so well - there''s nothing to click on so no edit form pops up... Am I missing something? HH
2006 Feb 11
5
Strange messages in "congratulations" mode
Hi All.. First off, I thought I''d let you know that im UBER new at ruby, so what im asking you may have a really simple answer... Anyway, i just started using RoR and i''ve set it up on OSX, running Apache2. It all goes fine and dandy, I get the "Welcome aboard" page to say that its all setup and running ok, but when I click on "About your applications
2002 Sep 10
3
XP woes
Working with Windows XP and debian Samba 2.2.3a on a box as my PDC. Sign or seal patch was applied. The past few days when we have been adding new computers running windows XP to the domain we have had machines tell us they have joined the domain, but when we try to log onto them using a "domain" account we get the following error on the PC: "The system could not log you on to
2004 Aug 01
3
Binaries for Visual Studio.NET?
I apologize for what's surely a common question, but the Xiph archive-searcher seems broken, and all my other searches have come up dry. Anyway, my question is: Are there any Theora binaries available for Visual Studio.NET? Alternatively, how do I build Theora using Visual Studio.NET? I tried using "\win32\theora_static.dsp", but VS.NET claimed it was corrupt and couldn't
2008 Apr 07
2
DTMF between Asterisk servers.
Hello, I'm a little confused on DTMF. A sip peer is registered on two Asterisk servers. No dtmfmode is set for them, the sip peer is 999 on Asterisk 1 and 999 on Asterisk 2. They both register on each other. A call comes in on Asterisk server 1, provider 1, dtmf=inband. Then the call is transferred to Asterisk 2: RetryDial(/var/lib/asterisk/sounds/connecting,15,10,SIP/12351 at
2002 Nov 22
2
TC HTB Traffic Shaping
Hi guys, I''m new to TC HTB traffic shaping.... I installed it at my first try on my Bearing Leaf Router/Firewall I use the tc -s class show dev eth? To see my output All looks dandy and nice, but it''s figures, of which at current momment looks like French to me, I would like to see exactly what these figures looks like in a GRAPH style... I know I can use MRTG, I do have
2005 Mar 23
2
ADIT 600 "Dynamic Impedance matching"
Has anyone ever heard of this so called Dynamic Impedance matching on the ADIT 600? I called their support and they've never heard of it. We are of course having echo problems are on the far end due to digital/analog conversion on the local end using a channel bank. We have purchased an ADIT 600 and yes the complaints are "far less" however we're still getting them. While I have
2015 Jan 19
3
[PATCH] Makefile: add support for git svn clones
Hi, On Mon, Jan 19, 2015 at 03:31:32PM -0500, Duncan Murdoch wrote: > >>> git has an interface for cloning SVN repositories into git > >>> which some users might decide to use. For those users' > >>> surprise, the repository will always fail to build on svnonly > >>> target and it will exit early. > >>> > >>> The
2006 Aug 09
3
Rails 1.1.5: Mandatory security patch (and other tidbits)
We''re still hard at work on Rails 1.2, which features all the new dandy REST stuff and more, but a serious security concern has come to our attention that needed to be addressed sooner than the release of 1.2 would allow. So here''s Rails 1.1.5! This is a MANDATORY upgrade for anyone not running on a very recent edge (which isn''t affected by this). If you have a public
2009 Feb 18
5
fields_for and Conflicting types for parameter containers. Expected an instance of Hash but found an instance of Array.
I''m trying to use ''fields_for'' in a form. I want the same form to support both the creation of new obejcts as well as the editing of old ones. So - in my controller, sometimes I will pass to the form an object that already exists in my database and has an id and other times I will pass it a newly created instance of an object that does not yet exist in the database and
2016 Sep 07
4
DNF update
On Tue, 2016-09-06 at 18:03 -0700, John R Pierce wrote: > DNF is a replacement for Yum that will probably be in a future RHEL > release, but is not used by any RHEL/CentOS yet. I think it should be called YUM. Nothing wrong with having a new version of Yum, especially when we have a new version of Centos with many strange differences (if not alien concepts) called C7. Keep it simple,
2006 Aug 13
1
Johnny's postfix/dovecot/squirrelmail/virus scanning + Centos4 Walk Through...
Is anyone mirroring Johnny's write up on this? As fate would have it, I've finally got some time to sit down and configure a spare box to be my new mail server and Johnny's site has been defaced again. :-( Sigh....I even checked to make sure it was up this morning, drove to the office so I could do everything from the terminal and my handy dandy roadmap is gone.... Any pointers
2006 Aug 14
1
Big Thanks to Johnny
As a result of following Johnny's handy dandy guide, the postfix/clamav/spamassassin/squirrelmail/dovecot install on one of my new 4.3 boxes was mostly painless. I've been using postfix and keeping in touch with Wietse since 98-ish so I'm quite comfy with postfix, but all this new fangled mail scanning stuff is a bit confusing to an old dog like me. :-) It seems to mostly work,