search for: programmer

Displaying 20 results from an estimated 8244 matches for "programmer".

Did you mean: programmed
2006 Aug 22
4
Native Extensions on Windows 0.10 series
Hi all, I''ve just noticed that 0.10 is out and wanted to give it a try on windows. I''m not at all an VS C++ Developer so I might do something very stupid here. My env: Windows Server 2003 VS .NET 2003 On the command line with nmake from VC7 in the path this is what I get: Attempting remote update of ferret Building native extensions. This could take a while... Microsoft
2013 Mar 14
7
No Migration Files are created
I''ve been working with Rails for 3 Months now, but haven''t experienced this problem until now. I''m currently working through Micharl Hartls Tutorial and everything worked fine so far, but suddenly (chapter 11) I can nolonger create Migration Files. when entering "rails g model Name field1:type" I don''t get the usual "create db/migrate...."
2006 Nov 04
0
Weird exception
Hiall, I''m currently experiencing with javascript a lot, and I have some pretty messy code trying to handle some realtime validation issues. Although everything pretty much "works alright", i.e. does the right thing but all the time shows "A script on these page seems to be slow ..." dialogue. So my suspicion is that the trouble definitely starts in my code, however,
2006 Jul 20
0
Routing error
...; and the do a redirect in that function, much along the lines of the last example in http://www.bigbold.com/snippets/tags/routes but I still get this error in the log (see below) Help is greatly appreciated! Thanks Michael [2006-07-20 20:26:54] ERROR Errno::EINVAL: Invalid argument c:/programmer/ruby/lib/ruby/1.8/webrick/httprequest.rb:325:in `gets'' c:/programmer/ruby/lib/ruby/1.8/webrick/httprequest.rb:325:in `__send__'' c:/programmer/ruby/lib/ruby/1.8/webrick/httprequest.rb:325:in `_read_dat a'' c:/programmer/ruby/lib/ruby/1.8/webrick/...
2006 Mar 18
9
How do I write this SQL the Rails way?
I''m trying to find all the unique bill_number, status records in Bills table. I can do it with a find_by_sql statement like this: @records = Bill.find_by_sql( "select distinct bill_number, status from bills group by bill_number, status;") How would I rewrite it using ''find :all
2001 Sep 29
2
Mathematica Notebook Frontend
Hi, I need some help getting the Frontend to work - MathKernel.exe is working but when I try wine Mathematica.exe I get a lot of error messages - I'm using Mathematica Version 4.0 and wine20010824. At the end of the post there is the complete message I get from wine. Thanx a lot CFU wine Mathematica.exe For language 'german' several language ids were found: de_DE - 0407; de_CH
2006 Apr 18
7
Connecting to multiple databases
Hi Everyone, I am trying to connect to multiple databases and followed along the Recipe in Chad Fowlers ''Rails Recipes'' book (which basically is about establishing the connection in a subclass of ActiveRecord::Base, and inheriting all classes in need of this connection from this class) Chad Fowler says: "You won''t be able to instantiate an External, of course,
2006 Apr 27
5
Realtime Form Validation Plugin Available
Granted, I''m still very much a newbie, but after reading an article on AJAX that basically states at one point that just because you can use AJAX doesn''t always mean you should, I have to ask: Why bother contacting the server (even if it is an insignificant amount of bandwidth) to validate the sanity of form data (unless you''re actually validating against something in
2006 Mar 21
0
wine and Mankind (the one from www.mankind.net) - possible networking or file creation problem
Hello! I am now trying for quiet a while to get Mankind running with wine. I tried almost everything and read tons of wine's debug output - without success (yet...). The story in short: (also see http://appdb.winehq.com/appview.php?appId=2409) The game installs perfectly. It can be started. Its possible display Mankind's news website within the client, but that doesn't have priority
2006 Jun 27
3
Weird ActiveRecord Foreign Key Problem
Hello to all, I ran into a weird problem with an ActivRecord. I have a table named "build_order" with a column named "type" that is a foreign key to a table called "building_type". In a controller I try to read all the build_orders with "BuildOrder.find :all" and get the following error and stack trace: (eval):1:in `instance_eval'': compile
2007 Aug 03
2
Problem with making dll under Windows
Dear all, I have problems to compile a DLL for Windows XP with R version 2.5.1 (2007-06-27). See output below: C:\AZ_DATEN\C, C++\BE_speedup>R CMD SHLIB dmypow.c Goto undefined subroutine &DynaLoader::bootstrap_inherit at C:\Programme\R\R-2.5 .1\share\perl/XSLoader.pm line 80. Compilation failed in require at c:/Programme/Perl/lib/IO/Handle.pm line 262. BEGIN failed--compilation aborted
2006 Aug 07
2
uninitialized constants in worker class
I am new to this list and relatively new to the backgroundrb plugin,. So first i will say hello to everybody here, especially to Ezra Zygmuntowicz! I played a little bit with a dummy worker and so far everything worked well. But now i want to do real work in a worker but now i get that error[1]. It looks like that the constants configured in environment* configs are not available to the worker
2012 Apr 08
1
DLLs for Orcs Must Die
Hi, I could install Orcs Must Die, but when I try to run it, I get the following errors: Code: err:module:import_dll Library fmod_event.dll (which is needed by L"C:\\Programme (x86)\\Robot Entertainment\\Orcs Must Die!\\Build\\release\\OrcsMustDie.exe") not found err:module:import_dll Library lua90.dll (which is needed by L"C:\\Programme (x86)\\Robot Entertainment\\Orcs Must
2004 Jun 15
2
Polycom IP 600 Programmability
Do the Polycom IP phones have some programmability so you can do some programmable phone buttons like you can on the Cisco phones? If there is programmability, such as for soft-keys and the like, how would you rate Polycom's vs Cisco's capabilities? And where can one find the programming documentation? Thanx. Ray. -- Scanned for viruses and dangerous content at
2001 Jan 05
2
running Rcmd INSTALL, again
Ok, one last try. R1.2.0, WinNT 4.0: [R is installed in: R_HOME=D:\Programme\R\rw1020] Can anyone give a hint what the following error message (when running Rcmd INSTALL) means and what to do about it? cd D:\Programme\R\rw1020\src\library D:\Programme\R\rw1020\bin\rcmd install testfunctions make: Entering directory `/cygdrive/d/Programme/R/rw1020/src/gnuwin32' dlltool -k --as as --dllname
2010 Jun 18
4
C Interface
Greetings, I am trying to call simple C-code from R. I am on Windows XP with RTools installed. The C-function is #include <R.h> #include <Rinternals.h> #include <Rmath.h> #include <Rdefines.h> // prevent name mangling extern "C" { SEXP __cdecl test(SEXP s){ SEXP result; PROTECT(result = NEW_NUMERIC(1)); double* ptr=NUMERIC_POINTER(result); double t =
2008 Jul 23
1
Problem with an old programme for windows 95
Hello! I'm new on this forum Today I install an old programme for windows 95, his name is Cosmo. When I start it the programme print this message: "This programme must be run on a monitor dispaying thousand of colors (16 bit) please quit and configure your graphics card accordingly" How I can configure wine to run correctly this programme?? Forgive my bad English.... :P
2004 Jun 11
3
Einlesen von Daten unter R
Sehr geehrte Damen und Herren, An der Fachhochschule Winterthur wurde f??r mich im Rahmen einer Diplomarbeit (Prof. Ruckstuhl) ein R-Programm zur Auswertung von IR-Spektren (line-shape-Analyse zur quantitativen Analyse von Gasmischungen) entwickelt. Die Daten werden einer Excel-Tabelle entnommen. Bisher werden die spektroskopischen Daten ??ber den Inhalt von 64 Kan??len ??ber die
2004 Aug 04
2
Snom 200 Programmable Keys
I would like to use one of my Snom 200's 5 programmable keys to park calls. I am using image SIP 2.04g. I have tried a variety of combinations and have come to the conclusion that: 1) On the Key Mappings administration page, I must select the "Transfer" under the "Break Keys" option box to be able to successfully transfer calls using the "Transfer" button. 2)
2007 Jul 16
3
Can''t start Mongrel under win32
I have a fresh installation of Ruby, Rails and Mongrel. Unfortunately the server doesn''t start. Any ideas ? => Booting Mongrel (use ''script/server webrick'' to force WEBrick) => Rails application starting on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server ** Starting Mongrel listening at 0.0.0.0:3000 ** Starting Rails with