search for: stevie

Displaying 17 results from an estimated 17 matches for "stevie".

Did you mean: steve
2014 Dec 05
2
Debian patches for Xen 4.5.0 (RC3)
...t might save you some effort when 4.5.0 is finally released. I'm not sure if the resulting packages actually *work* (I'm actually not yet sure how to safely upgrade Xen). However, I can confirm this: * 'dpkg-buildpackage -uc -us' produces suitable-looking .deb files: -rw-r--r-- 1 stevie stevie 339152 Dec 5 00:08 ../libxen-4.5_4.5.0~rc3-1_amd64.deb -rw-r--r-- 1 stevie stevie 534696 Dec 5 00:08 ../libxen-dev_4.5.0~rc3-1_amd64.deb -rw-r--r-- 1 stevie stevie 30552 Dec 5 00:08 ../libxenstore3.0_4.5.0~rc3-1_amd64.deb -rw-r--r-- 1 stevie stevie 1703822 Dec 5 00:07 ../xen-hypervis...
2024 Apr 08
2
Exceptional slowness with read.csv
...Of course, when you know you've got errors & the files are big like that it can take a bit of work resolving things. The command line tools awk & sed might even be a good plan for finding lines that have errors & figuring out a fix, but I certainly don't envy you. All the best Stevie On Tue, 9 Apr 2024 at 00:36, Dave Dixon <ddixon at swcp.com> wrote: > Greetings, > > I have a csv file of 76 fields and about 4 million records. I know that > some of the records have errors - unmatched quotes, specifically. > Reading the file with readLines and parsing the l...
2024 Apr 08
1
Exceptional slowness with read.csv
data.table's fread is also fast. Not sure about error handling. But I can merge 300 csvs with a total of 0.5m lines and 50 columns in a couple of minutes versus a lifetime with read.csv or readr::read_csv On Mon, 8 Apr 2024, 16:19 Stevie Pederson, <stephen.pederson.au at gmail.com> wrote: > Hi Dave, > > That's rather frustrating. I've found vroom (from the package vroom) to be > helpful with large files like this. > > Does the following give you any better luck? > > vroom(file_name, delim = &q...
2007 Feb 28
2
backgroundrb 0.2.1 not supported on windows platform?
Hi all, I want to execute certain ruby script periodically in my rails application running on windows platform. I wanted to try out backgroundrb, but it seems that the support for Windows is deprecated with release 0.2.0 of BackgrounDRb. The latest release is 0.2.1 & the plugin still doesnt support windows platform. Can anyone throw more light on this? Also, can anyone suggest any
2024 Apr 08
2
Exceptional slowness with read.csv
...andle. readLines followed by read.csv(text= ) works great because, in that case, read.csv knows where the record terminates. Meaning, read.csv throws an exception that I can catch and handle with a quick and clean regex expression. Thanks, I'll take a look at vroom. -dave On 4/8/24 09:18, Stevie Pederson wrote: > Hi Dave, > > That's rather frustrating. I've found vroom (from the package vroom) > to be helpful with large files like this. > > Does the following give you any better luck? > > vroom(file_name, delim = ",", skip = 2459465, n_max = 5) &g...
2008 Jun 10
4
adding results from threads to a collection and returning it
Forgive me if this has been addressed somewhere, but I have searched and can''t come up with anything. I am basically trying to distribute several web page scraping tasks among different threads, and have the results from each added to an Array which is ultimately returned by the backgroundrb worker. Here is an example of what I''m trying to do in a worker method: pages =
2003 Dec 18
4
after hours
When setting include => daytime|9:00-21:00|mo-fri|*|* How does this determine what is different between 9 AM and 9 PM And after hours ??? I want different hours on Saturday and Sunday And a different welcome message after hours Any help appreciated Regards Mick
2007 Feb 20
1
"Text is not a module"
...monitoring a folder (using directory_watcher) and emailing a specific user when a file is dropped there, but it''s bombing immediately upon instantiation (or maybe when trying to instantiate ActionMailer?) with the error "Text is not a Module". Thanks for any input on this one! stevie 20070220-14:41:56 (4800) Text is not a module - (TypeError) 20070220-14:41:56 (4800) /u/testapp/config/../vendor/rails/actionmailer/lib/action_mailer/vendor/text/format.rb:49 20070220-14:41:56 (4800) /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'' 20070220-14:...
2018 Oct 13
2
libxen-dev, libxen-4.8: Potential upgrade path issues with regard to qemu
...understand that dealing with this is at least partially the responsibility of the Debian QEMU Team, which is why I've CC'd them. However, this seems to suggest that qemu packaging would need to be updated in lockstep with Xen, even if someone is using qemu in kvm or standalone mode! -- -- Stevie-O Real programmers use COPY CON PROGRAM.EXE -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://alioth-lists.debian.net/pipermail/pkg-xen-devel/attachments/20181013/06e57222/attachment.html>
2008 May 05
2
Deploying to a staging server using Capistrano: how to start up BackgrounDRb?
Hi. I am using BackgrounDRb to process thumbnails and upload to S3 - things are hunky-dory in development (thumbs are generated, these are uploaded to S3, the metadata is saved to trhe DB, and I get a nice status page updated by periodic calls via ask_status), but when I tried to deploy to our staging server and stop/start BackgrounDRb via Capistrano, things blew up - well, not exactly,
2007 Dec 10
21
BackgrounDRb 1.0 pre-release available now
Hi Folks, We are glad to announce shiny new release of BackgrounDRb, which will soon become 1.0. A quick summary of changes: - BackgrounDRb is no londer DRb, its based on event driven network programming library packet ( http://www.packet.googlecode.com ) . - Since we moved to packet, many nasty thread issues, result hash corruption issues are totally gone. Lots of work has went in making
2008 May 17
1
Can someone help with this error?
Hello all, I get this intermittent error saying OpenURI::HTTPError. At the bottom of the email is what is reported in my backgroundrb_server_<port>.log file. The process_netflix_reviews method is parsing (in the background) Netflix''s RSS feeds. This error also pretty much brings down the BDRb process and to recover, I am forced to do a ./script/backgroundrb stop
2024 Apr 08
4
Exceptional slowness with read.csv
Greetings, I have a csv file of 76 fields and about 4 million records. I know that some of the records have errors - unmatched quotes, specifically.? Reading the file with readLines and parsing the lines with read.csv(text = ...) is really slow. I know that the first 2459465 records are good. So I try this: > startTime <- Sys.time() > first_records <- read.csv(file_name, nrows
2012 Mar 18
3
vhost question
Hi, I'm using virtio to implement a mac80211 device in the guest. On the host side I plan to use a simple network simulation to control delivery of frames between guests. Right now I've used the vhost approach on the host side and can pass buffers from guest to host and back using virtio. My immediate problem is how to have the host-side tx kick handler get the host-side rx kick handler
2012 Mar 18
3
vhost question
Hi, I'm using virtio to implement a mac80211 device in the guest. On the host side I plan to use a simple network simulation to control delivery of frames between guests. Right now I've used the vhost approach on the host side and can pass buffers from guest to host and back using virtio. My immediate problem is how to have the host-side tx kick handler get the host-side rx kick handler
2008 Jul 08
3
antispam plugin, amavis and sa-learn
Hello, I would like to use the Dovecot antispam plugin to train SpamAssassin via sa-learn. I compiled the plugin and got it to work with the sendmail backend, which I tested by having it send a message to me. As I'm calling SpamAssassin with amavisd-new, I have a system-wide Bayes db, maintained by the amavis user. As expected, the antispam plugin calls the configured binary as the mail user
2006 Oct 06
1
Samba 3 LDAP password policies
Hi List, I hope sombody can give a Solution for the following behaviour: First the environment: One Samba 3.0.23b PDC with LDAP Backend (OpenLDAp 2.3) Another Samba 3.0.23b BDC with replicated LDAP Backend (OpenLDAP 2.3) Account policies set in LDAP and importet on both Samba PCs by pdbedit -y -i ldapsam as follows (working almost fine at least for password history, min length and bad logon