search for: cronosi

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

Did you mean: cronos
2006 Jan 16
2
ActiveRecord: table name with spaces?
Howdy. I''m trying to work with a legacy SQL Server database where some of the table names have spaces in them. I''ve done set_table_name "tablename with spaces", but I can''t get find(:all) to work. I get the following error (because apparently it''s not putting [ ] around the name as is required for SQL Server for names with spaces.
2005 Oct 21
21
PHPonRails ?
I''ve have a very tight schedule project that MUST (not my option), be developed in PHP. Is there a Rails based framework for this platform? I like the Rails way of things, but in this case, I cannot choose the programming language, so please don''t offend me :-) Thanks in advance, Alessandro _______________________________________________ Rails mailing list
2003 Oct 14
2
Adding support for versioned files in rsync
Hi! Below is a link to a proposal I'm writing for two clients of ours who want an Internet-based backup solution. I propose eleven "objectives" in it, most of which are modifications to rsync. I'd like to contribute these changes back where possible, and so I'm posting this here for review. The nuts and bolts of it is the ability to keep multiple copies of files (think
2004 Feb 09
1
checksum_seed
What is the point to checksum_seed? When reading/writing batch, it is initialized to a constant value, otherwise it is initialized to time(NULL). It certainly has no useful cryptographic value :) I got the go-ahead from the client on my --link-by-hash proposal, and the seed is making the hash unstable. I can't figure out why the seed is there so I don't know whether to cirumvent it in
2004 Mar 02
1
Win32 and Backing up open files
I now fully and completely remember why I hate Windows. I have struggled with the backup semantics options in order to get rsync able to back up open files, and I got something that appeared like it should work, but it didn't work. So I finally broke down and wrote a holdopen.exe and a tryopen.exe to test my theory, and no matter what privleges were enabled (backup and restore were enabled),
2003 Oct 15
1
Versioned files (take 2)
I've pondered the feedback and revised my proposal to the client. Here is the revised project objectives. Notably, this is the addition of 4), the deletion of the whole slew of items actually related to handling versioned files, and mention of preexisting work on 1). I've took a little gander at some of the backup wrappers, and it looks like I will probably use one of these. I'll
2004 Feb 20
3
open files
hi guyz, One simple question. What does rsync do when it encounters open files. Do we have to use open file manager(like st bernard) to back up open files or is there any open source open file manager or can rsync backup open files by itself. thanx tarun --------------------------------- Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want.
2006 Apr 19
5
new article up at Linux Journal
http://www.linuxjournal.com/article/8993 If you''ve got feedback, requests for coverage, etc. please let me know. I''ll try to respond in an upcoming column. -- thanks, -pate ------------------------- http://on-ruby.blogspot.com
2005 Nov 16
37
Postgresql vs MySQL
Is there any reason to avoid using postgresql for small web apps? That is, is it''s overhead so large that the lighter MySQL will work substantially better for small apps on small machines? Or are they very similar in performance and configuration? I''ve used MySQL but postgresql has its appeals and I''m wondering if I need to keep MySQL around at all. On the other
2004 Feb 09
1
[patch] Add `--link-by-hash' option.
This patch adds the --link-by-hash=DIR option, which hard links received files in a link farm arranged by MD4 file hash. The result is that the system will only store one copy of the unique contents of each file, regardless of the file's name. Anyone have an example of an MD4 collision so I can test that case? :) Patch Summary: -1 +1 Makefile.in -0 +304 hashlink.c (new)
2004 Feb 23
0
[patch] Add `--link-by-hash' option (rev 4).
This patch adds the --link-by-hash=DIR option, which hard links received files in a link farm arranged by MD4 file hash. The result is that the system will only store one copy of the unique contents of each file, regardless of the file's name. (rev 4) * Updated for committed robust_rename() patch, other changes in CVS. (rev 3) * Don't link empty files. * Roll over to new file when
2004 Feb 17
0
[patch] Add `--link-by-hash' option (rev 3).
This patch adds the --link-by-hash=DIR option, which hard links received files in a link farm arranged by MD4 file hash. The result is that the system will only store one copy of the unique contents of each file, regardless of the file's name. (rev 3) * Don't link empty files. * Roll over to new file when filesystem maximum link count is reached. * If link fails for another reason, leave
2004 Feb 23
0
[patch] Add `--link-by-hash' option (rev 5).
This patch adds the --link-by-hash=DIR option, which hard links received files in a link farm arranged by MD4 file hash. The result is that the system will only store one copy of the unique contents of each file, regardless of the file's name. (rev 5) * Fixed silly logic error. (rev 4) * Updated for committed robust_rename() patch, other changes in CVS. (rev 3) * Don't link empty
2004 Feb 16
1
[patch] Add `--link-by-hash' option (rev 2).
This patch adds the --link-by-hash=DIR option, which hard links received files in a link farm arranged by MD4 file hash. The result is that the system will only store one copy of the unique contents of each file, regardless of the file's name. (rev 2) * This revision is actually against CVS HEAD (I didn't realize I was working from a stale rsync'd CVS). * Apply permissions after
2004 Feb 23
0
[patch] Fix for gcc 3.3.1 (maybe Cygwin-specific)
Cygwin's gcc 3.3.1 doesn't support a 64-bit type and doesn't like this macro (it causes missing semicolon errors wherever used). Patch Summary: -1 +1 rsync.h -------------- next part -------------- patchwork diff rsync.h --- rsync.h 2004-02-23 10:44:40.000000000 -0500 +++ rsync.h 2004-02-23 10:44:45.000000000 -0500 @@ -314,7 +314,7 @@ #define uint64 unsigned long long
2001 Mar 05
1
smbmount/kernel 2.4.2/Samba 2.0.7 - Unable to use large files/directories
Hi there. I'm having a very odd problem with samba. I have a Mandrake 7.2 linux distro, though I've compiled a 2.4.2 kernel for it (with samba support compiled in - not a module), and I've also compiled Samba 2.0.7. When I mount shares from my win98 machines, if I try to list a large directory or open a large file, the terminal freezes. I'm able to log in another, but if I
2004 Feb 17
1
[patch] Make robust_rename() handle EXDEV.
All callers of robust_rename() call copy_file() if EXDEV is received. This patch moves the copy_file() call into robust_rename(). Patch Summary: -12 +1 backup.c -15 +2 rsync.c -9 +33 util.c -------------- next part -------------- patchwork diff util.c --- util.c 2004-02-17 09:58:44.000000000 -0500 +++ util.c 2004-02-17 10:21:22.000000000 -0500 @@ -355,16 +355,40 @@