similar to: File upload/database import

Displaying 20 results from an estimated 1000 matches similar to: "File upload/database import"

2009 Feb 09
9
fastercsv, freezing into vendor/gems
I''m using fastercsv such that in my rake file I''m doing this. require ''fastercsv'' It works fine on my Mac. I need to freeze this gem into the app though so my rake tasks work on the production machine. ----------- I spent about two hours though this weekend trying to get this Gem "frozen" into the vendor/gems folder. I tried all sorts, I ... -
2008 Jul 23
2
Can't Load Text Files
Hi, I've completely forgotten how to do R, and it seems I can't even load simple files correctly. I have two tab deliminated text files (attached, these were test files of the larger data files I'm trying to work with) that I am trying to load into R so that I can merge them. They were originally excel files but I used "saved as" to reformat to text. I don't know if
2012 Apr 10
6
trust relationship between this workstation and the primary domain failed
Samba shares work for windows 7 and Server 2008, but XP and Server 2000 recieve the following error when trying to map samba shares: "The trust relationship between this workstation and the primary domain failed." tail -f /var/log/messages Apr 10 07:38:03 samba01 smbd[23581]:?? connect_to_domain_password_server: unable to open the domain client session to machine ad1.strat.com. Error
2005 Dec 23
1
Emails that get sent out on various site actions
Hi, I have a list of various "events" that emails should be sent out on. Example: user registers with site, or a user takes a test. And I want the admin user to be able to configure what email addresses should receieve the emails that get sent out on the events. Example: joe-TIA8ZjFfG1I@public.gmane.org and jane-+LBmYUDmh58@public.gmane.org get an email when a user registers, and
2004 Nov 03
2
Unread mail problem
Okay, here is the set up. I have Outlook set up to keep mail on the server for 5 days. At some point I started downloading all my mail that was on the server over and over again, even though I already have the mail. The weird thing is that it did not download all the mail, just a few. For example it would download 6 messages, then 18, then 12, etc! After I tried it a few times I had 50 of the same
2009 Feb 02
3
Files monitoring through Samba
I am trying to setup a way to watch each file that is created, updated, and deleted through samba. I have currently looked at inotify but I am not sure if that is the best way. What suggestions would you have to setup a way to get some type of event when one of these actions occur? I would like to watch a directory recursively and be able to run a shell script or perl script and that script know
2004 Jul 16
1
Rsync using --daemon - how to specify port on client side for upload.
Hi, I'm not sure what whether I have constitutes a bug, but here goes; I have two scripts; one I use when my website is 'correct' and i need a copy on my mirror, in which case, I start rsync like so; rsync -avvz rsync://www.clintoneast.com:20000/clinton /home/cje/mirror/ opening tcp connection to www.clintoneast.com port 20000 receiving file list ... It works fine. However, i
2010 Nov 25
3
[LLVMdev] how to eliminate dead infinite loops?
On 11/24/2010 06:55 PM, Owen Anderson wrote: > On Nov 23, 2010, at 9:22 AM, Andrew Clinton wrote: > > >> Most of my programs contain loops that the LoopDeletion pass is unable >> to remove. It appears that the following code in LoopDeletion.cpp:152 >> is the culprit: >> >> ScalarEvolution& SE = getAnalysis<ScalarEvolution>(); >>
2004 Feb 04
1
rsync ssh problem...
Hi all, I keep getting the following error when trying to use ssh: (with rsync 2.5.7) [root@drone2 root]# rsync --rsh="ssh -lpaul" clinton:: paul@clinton's password: rsync: server sent "" rather than greeting rsync error: error starting client-server protocol (code 5) at main.c(1043) ...while using root works! ie, [root@drone2 root]# rsync --rsh="ssh
2009 Apr 08
3
Rails 2.3 memcache performance drop
After much effort I upgraded our fairly large Rails app from 2.1 to 2.3. After deployment yesterday I noticed an across the board increase in response times. It seems that every call to memcache now takes 10x longer than before. Here are some example numbers from my development log (below), with memcache running locally. We see similar scale of performance drop in production as well - average
2006 May 23
5
Wierd pagination problem - Unknown options: order?
I am trying to use pagination with the order option. I am following examples I''ve seen all over the web, but I am getting an error. My code seems simple: def list @upload_pages, @uploads = paginate :uploads, :per_page => 20, :order => ''id'' end Yet I keep getting this error: ___________________________________________
2010 Nov 26
0
[LLVMdev] how to eliminate dead infinite loops?
On 11/25/2010 12:59 PM, Andrew Clinton wrote: > On 11/24/2010 06:55 PM, Owen Anderson wrote: >> On Nov 23, 2010, at 9:22 AM, Andrew Clinton wrote: >> >> >>> Most of my programs contain loops that the LoopDeletion pass is unable >>> to remove. It appears that the following code in LoopDeletion.cpp:152 >>> is the culprit: >>> >>>
2010 Nov 23
5
[LLVMdev] how to eliminate dead infinite loops?
Most of my programs contain loops that the LoopDeletion pass is unable to remove. It appears that the following code in LoopDeletion.cpp:152 is the culprit: ScalarEvolution& SE = getAnalysis<ScalarEvolution>(); const SCEV *S = SE.getMaxBackedgeTakenCount(L); if (isa<SCEVCouldNotCompute>(S)) return Changed; So, LoopDeletion thinks my loops might be infinite so it
2006 Jan 09
8
Pri Gateway Hardware
Does anyone have any experience using a PRI gateway, I am looking for a way to have multiple asterisk boxes use one PRI, and send that over the network. I herd there are copper gateway devices (like a X100P card, only it registers with asterisk using sip, and it doesn't have to be physically connected to the box) Does anyone have any experience with a PRI gateway? And could tell me the cost
2011 Jan 05
1
Heat map in R
Hello, I am trying to make a heatmap in R and am having some trouble. I am very new to the world of R, but have been told that what I am trying to do should be possible. I want to make a heat map that looks like a gene expression heatmap (see http://en.wikipedia.org/wiki/Heat_map). I have 43 samples and 900 genes (yes I know this will be a huge map). I also have copy numbers associated with
2006 May 14
3
Beginner question on paginate with params and conditions
I am trying to do a simple search by product name. The first page returns fine, but when I try to go to any other pages of the search results, I lose the original search parameters from my search form and get NilClass errors. Here is the code in my controller: namesearch = "%" + params[:name].strip + "%" @product_pages, @products = paginate :product,
2011 Feb 01
5
[LLVMdev] Loop simplification
I have a (non-entry) basic block that contains only PHI nodes and an unconditional branch (that does not branch to itself). Is it always possible to merge this block with it's successor and produce a semantically equivalent program? I'm trying to undo some of the loop optimizations that LLVM has applied to my program to reduce a pair of nested loops to a single loop.
2015 Nov 10
2
Generating Big Num addition code which uses ADC (add with carry) instructions
I'm trying to work out LLVM code which generates something similar to the following when adding large multiword numbers stored as separate words: ADD x1 x1 ADC x2 y2 ADC x3 y3 etc, where such a three argument add like ADC on x86 (which includes a carry in the addition) is available as a machine op. The background to this is that I'm trying to implement fast multiword addition in
2004 Nov 17
1
Rebuilind help
Okay see if you can see what I am doing wrong? Looking at the timestamp [root at ns3 sbin]# ls -la /usr/local/sbin/dovecot -rwxr-xr-x 1 root root 471186 Nov 13 18:25 /usr/local/sbin/dovecot rebuilding [root at ns3 sbin]# /root/dovecot-0.99.11/configure --sysconfdir=/etc --localstatedir=/var ...... [root at ns3 sbin]# make ...... [root at ns3 sbin]# sudo make install .... Looking at
2011 May 17
2
[LLVMdev] TargetRegisterInfo and "infinite" register files
On May 17, 2011, at 9:18 AM, Andrew Clinton wrote: > I have faced this same problem in my backend, and I'm working around it by providing a large physical register set. There are two problems with this: > > 1. There's a chance that the register allocator will run out of registers to assign, in which case the allocation will fail - making it necessary to retry with a larger