search for: roderick

Displaying 20 results from an estimated 206 matches for "roderick".

2002 Jul 31
1
rsync: omit summary with a single -v
...ld skip the two line summary info. I do a lot of cron-based transfers and I want to see what gets transferred if anything does, but I'd like it to be entirely silent otherwise. Here is a patch which makes a single -v behave this way. -vv causes it to include the extra info. diff -r -X /home/roderick/.diff-exclude -u rsync-2.5.5.debian/flist.c rsync-2.5.5/flist.c --- rsync-2.5.5.debian/flist.c Thu Mar 14 16:20:20 2002 +++ rsync-2.5.5/flist.c Wed Jul 31 09:13:10 2002 @@ -72,7 +72,7 @@ static int show_filelist_p(void) { - return verbose && recurse && !am_server; + return verbo...
2007 Feb 13
1
RE2: Suddenly "Subscript out of bounds"
..."ONKELINX, Thierry" <Thierry.ONKELINX An @inbo.be> <roderick.castillo at metanomics.de> Kopie 13.02.2007 15:29 Thema...
2008 Aug 25
4
R for Windows GUI closes when I try to read.spss
** High Priority ** I have been trying to read an SPSS file into R using read.spss ("C:/Documents and Settings/Roderick Harrison/My Documents/RWORK/ihisdat.sav", use.value.labels = TRUE, to.data.frame = FALSE, max.value.labels = 500, trim.factor.names = FALSE, trim_values = TRUE, reencode = NA, use.missings = to.data.frame) Each time (at least 5 or 6 by now) I get the following Microsoft error message and the...
2003 Feb 08
1
compare st_mode & 07777, or Aix dirs always differ
...iding whether or not the modes differ. I was surprised there wasn't an existing constant for 07777, but I couldn't find one. I thought then to exclude the S_IFMT bits, but on Aix that has the usual value of 0170000, so it wouldn't exclude the problematic 0200000 bit. diff -r -X /home/roderick/.diff-exclude -u rsync-2.5.5/rsync.c rsync/rsync.c --- rsync-2.5.5/rsync.c Thu Dec 20 10:33:13 2001 +++ rsync/rsync.c Fri Feb 7 10:12:50 2003 @@ -203,7 +203,7 @@ #ifdef HAVE_CHMOD if (!S_ISLNK(st->st_mode)) { - if (st->st_mode != file->mode) { + if ((st->st_mode & CHMOD_BITS...
2012 Feb 29
4
Problems with hyperthreading in Windows HVM
...' in libxc, Xen performs filtering on a bunch of cpuid functions. Though all the ones I patched are preserved by the filtering. From what I saw in past email threads there were issues with ACPI ID stuff in the past, can there be new issues here? Does anyone have hyperthreading working? Thanks, Roderick Colenbrander
2009 Feb 17
8
Converting Acts_As_Tree to Acts_As_Nested_Set
Hello, I have a tree structure that needs to be converted into a nested set. A great deal of work has already been done on the tree items, so maintaining the integrity of the id''s is mandatory. However I need the ability to access entire branches of the tree, which is what Nested set does. Does anyone have any suggestions on how to efficiently transfer the tree to the nested set and
2008 May 12
2
Which sound file formats?
I've got the text files created -- thanks to Russell Bryant -- for re-building the core and extra sounds using another voice but I'm not sure which formats to actually build. This will be a small/personal system using Vitelity.net so will only have SIP connections. The /var/lib/asterisk/sounds/ directory contains .alaw, .g722, .g729, .gsm, .ulaw, and .wav. What are the minimal
2019 Jun 10
2
Compile problem on Solaris
Hi Compiling dovecot 2.2.36.1 with the native compiler on Solaris 10 is giving the error below. Can anyone advise a compiler option or code change to resolve this please. Thanks. Roderick Johnstone # make make all-recursive Making all in . /bin/bash ./update-version.sh . . Making all in src Making all in lib-test Making all in lib make all-am source='sha3.c' object='sha3.lo' libtool=yes \ DEPDIR=.deps depmode=none /bin/bash ../../depcomp \ /bin/bash ../../libtool...
2008 Jul 17
4
A Mongrel parsing bug: "&" and "&amp;"
When using url_for to send path to a script (such as with auto_complete), multiple params are joined with the "&amp;" code. For example: text_field_with_auto_complete :blog :post, {}, { :posts_path(:a => 1, :b => 2), :method => :get } Produces this script: var blog_post_auto_completer = new Ajax.Autocompleter(''blog_post'',
2007 Aug 09
2
Rmovie on windows
Can rmovie be installed in a windows environment? When I run "gem install rmovie". It gives the following error: Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension. ruby extconf.rb install rmovie ''make'' is not recognized as an internal or external
2008 Nov 05
5
Phishing attempt
FYI/Heads up, I /just/ received what looks like a phishing attempt for information about Open Source PBX usage. It says it comes from Digium but all the links (including the one for digium.com) point elsewhere. Rod --
2016 Apr 17
3
[PATCH REBASED 2/2] nouveau/bl: Do not register interface if Apple GMUX detected
...t.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drm/nouveau/nouveau_backlight.c b/drm/nouveau/nouveau_backlight.c index 41330e4..94ac3cb 100644 --- a/drm/nouveau/nouveau_backlight.c +++ b/drm/nouveau/nouveau_backlight.c @@ -30,6 +30,7 @@ * Register locations derived from NVClock by Roderick Colenbrander */ +#include <linux/apple-gmux.h> #include <linux/backlight.h> #include <linux/idr.h> @@ -257,6 +258,12 @@ nouveau_backlight_init(struct drm_device *dev) struct nvif_device *device = &drm->device; struct drm_connector *connector; + if (apple_gmux_...
2009 Feb 20
3
GUI/WUI for creating (common) sieve scripts?
Anyone aware of a Web User Interface or GUI to allow users to create simple/common-type sieve scripts? I found the sieve testing and have used it as I play; plus mangesieve (and Net:ManageSieve.pm) but want to allow users to build so some clicking and maybe a little typing and then end up with some filters. So before I go invent this wheel I'd like to know what others are doing? TIA,
2005 Jul 26
1
itemize() needs to use CHMOD_BITS (patch)
...file->mode != st->st_mode) + if (preserve_perms && (st->st_mode & CHMOD_BITS) + != (file->mode & CHMOD_BITS)) iflags |= ITEM_REPORT_PERMS; if (preserve_uid && am_root && file->uid != st->st_uid) iflags |= ITEM_REPORT_OWNER; -- Roderick Schertler roderick@argon.org
2005 Jan 05
0
Samba, AD and NIS
...os(250) Username DOMAIN.INSA\pc-ipti17$ is invalid on this system [2005/01/04 16:27:14, 1] smbd/sesssetup.c:reply_spnego_kerberos(250) Username DOMAIN.INSA\pc-ipti17$ is invalid on this system Thanks a lot for helping me, i'm not really a samba-expert and i maybe do it the wrong way... Roderick. -- =================================== # Roderick Petetin # # CRI - INSA Rennes # # # # Roderick.Petetin@insa-rennes.fr # ===================================
2009 Jul 02
8
rails hyperthreading on Quad core
Hi, my video sharing website (politube.org) that I developed with rails, runs on lighttpd/fcgi (I know it is obsolete by now) and is severely under load and regularly blocks because the lighttpd process chews up 50% of RAM (1GB). So now I want to move the system to a new server with 8GB, 64bit , Quad core processor (intel i7 920) but I am not sure if hyperthreading will really do anything better.
2007 Oct 05
3
Do migration support MySQL BIGINT
hi, just wondering do migration support MySQL BIGINT ? what if i wanna create a migration with BIGINT ? should i use SQL directly ? kiwi -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2003 Sep 01
1
troubles with PXE APIS
...supposed reading your source code that exchange of packets before kernel downloading was just to fill some structure's fields. I used static parameters do I need such implementations ? I try to make the netbootloader as small as possible. Thanks by advance and sorry for my lame english :-(. Roderick -- Roderick ASSELINEAU <rdasselineau at yahoo.fr>
2008 May 07
3
[Q] IMAP update message header?
More about IMAP, less about Dovecot. This is more an IMAP question than specifically about Dovecot. Sorry to ask here but I've been researching, reading and lurking with no answer so far. What I'm doing is running reports as a user from a remote system to provide a list of messages (Sender/From, Subject, Date, size) in a specific folder(?). In one case it isn't even a Dovecot
2009 May 26
9
cookies are mandatory for Rails app?
is it true that Rails depend on cookies? It seems that flash is a part of session, and session uses cookies... so when i disable cookie in Firefox, what was working became ActionController::InvalidAuthenticityToken so is it true that for a RoR app to work, cookies are mandatory? -- Posted via http://www.ruby-forum.com/.