473,406 Members | 2,273 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

basic source code archiver

Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=
Jun 27 '08 #1
9 1434
Colin,

What you ask is complex, otherwise there were many more simple solutions.

It is even complex because you want to let it act simple.

Cor

"colin" <co*********@ntworld.NOSPAM.comschreef in bericht
news:Sj******************@newsfe16.ams2...
Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=
Jun 27 '08 #2
"colin" <co*********@ntworld.NOSPAM.comwrote in message
news:Sj******************@newsfe16.ams2...
Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=
By the time you're done figuring out a personal system for saving only the
files that have changed, and then deciding that it's sort of gross to save
the complete copy of a file that you only changed 2 lines in, and
implementing a system to handle _that_ situation, you could already have
gone through the setup and relatively short learning curve for something
like Subversion on Windows:
http://blogs.vertigosoftware.com/tea...r_Windows.aspx

It'll save you a lot of time, and give you a much more reliable revision
control system.

AHS
Jun 27 '08 #3
colin <co*********@ntworld.NOSPAM.comwrote:
I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.
There's not really much difference between what you've described and
real source control. You don't *have* to use branching/merging etc.

--
Jon Skeet - <sk***@pobox.com>
Web site: http://www.pobox.com/~skeet
Blog: http://www.msmvps.com/jon.skeet
C# in Depth: http://csharpindepth.com
Jun 27 '08 #4
colin wrote:
Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.
Try AJC Active Backup.

http://www.ajcsoft.com/AJCActBk.php

Highly configurable and yet simple to use.

--
Andre Prins
Twain Development
Jun 27 '08 #5
On 11 mai, 12:57, "colin" <colin.ro...@ntworld.NOSPAM.comwrote:
Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=
MOGware FileHamster does just that. I'm using the free version, it's
unobstrusive and does it's job well.

Michel
Jun 27 '08 #6
hey that sounds cool, hamster powered software !!!!
I like that, can you see the hamster spinning the little wheel ?

ive come unstuck using full blown vcs before when it locked up and would let
me look at my own files >.<
when the disc became non bootable.

what a nice range of answers ive got, sounds like thisl do the job,
ive yet to goggle for it but im sure its easy to find.

Colin =^.^=

<fd******@hotmail.comwrote in message
news:e4**********************************@2g2000hs n.googlegroups.com...
On 11 mai, 12:57, "colin" <colin.ro...@ntworld.NOSPAM.comwrote:
>Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=

MOGware FileHamster does just that. I'm using the free version, it's
unobstrusive and does it's job well.

Michel

Jun 27 '08 #7
thanks for this and all the other replies
ive use cvs before and it can consume quite a bit of time and patience
especialy when something doesnt go quite right or breaks.

ive used about 3 diferent cvs tools to access other software already,
such as online open source code, and its taken some patience
to get them to work.

but recently I had 12 bsod when trying to get multiple viewports to work
with managed directx and a fancy docking library that would change the
window to invalid sizes
while it was changing it from docked to undocked states.

i was geting woried my file system was going to become unbootable again.
at least zip files are relativly easy to recover compared to closed format
data stores.

I just like to make a snapshot when I get the thing to work,
and before I make any drastic changes,
unfortunatly my enthusiasm comes in bursts and i forget to make the snapshot
till after ive already made a few changes lol.

I dont need to keep versions going back over many weeks.
when I release a version I take a complete file dump.

the filehamster seems to be an ideal tool, it just looks for any files that
have changed and
puts them in the library, as long as it does this every few hours or so this
wil be fine,
I think i saw setings for that.

Colin =^.^=

"Arved Sandstrom" <as********@accesswave.cawrote in message
news:51FVj.1594$Yp.1341@edtnps92...
"colin" <co*********@ntworld.NOSPAM.comwrote in message
news:Sj******************@newsfe16.ams2...
>Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=

By the time you're done figuring out a personal system for saving only the
files that have changed, and then deciding that it's sort of gross to save
the complete copy of a file that you only changed 2 lines in, and
implementing a system to handle _that_ situation, you could already have
gone through the setup and relatively short learning curve for something
like Subversion on Windows:
http://blogs.vertigosoftware.com/tea...r_Windows.aspx

It'll save you a lot of time, and give you a much more reliable revision
control system.

AHS

Jun 27 '08 #8
On Sun, 11 May 2008 11:57:48 +0100, "colin"
<co*********@ntworld.NOSPAM.comwrote:
>Hi,

I could do with a simple source code archiver
something that can save all source files,
and then save any changed source file,
but I dont realy want or need the
complexity of source code control.

at the moment I just zip the entire directory,
and save in numbered files, but theres a lot of large
files that arnt modified often such as 3d model objects.

thanks
Colin =^.^=

Are you a single developer? Sourcegear Vault is great - free too.
Jun 27 '08 #9
On Mon, 12 May 2008 12:05:35 +0100, "colin"
<co*********@ntworld.NOSPAM.comwrote:

>I dont need to keep versions going back over many weeks.
when I release a version I take a complete file dump.
How about Mozy Online backup? Free for 2GB of backup. 4.95 a month for
unlimited backups. Even includes versioning ;-)
Jun 27 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Robin Powers | last post by:
PROCESS CONTROLS/VISUAL BASIC PROGRAMMERS SALARY: TO $100,000 LOCATION: LOS ANGELES AREA Our Client has recently acquired process automation systems used to monitor and control their...
3
by: Omar | last post by:
Hi Developers, I am trying to access an Excel data file through a VB.Net application. I have the following code: =================================== VB.Net Code =================== Dim...
10
by: trippeer | last post by:
I have the source code to an old BASIC program that a friend of mine would like to run online. I am a beginner at JS, but I think that it would be a good choice for the project. My background is in...
1
by: nightgamer360 | last post by:
i am a newbie to computer programming having gotten visual basic 6 and borland c++ builder 6 as gifts. is it possible to view the source code (not file information) of a folder (such as a basic...
111
by: Enteng | last post by:
Hi I'm thinking about learning C as my first programming language. Would you recommend it? Also how do you suggest that I learn it?What books/tutorials should I read for someone like me? Thanks...
6
by: borophyll | last post by:
Hi Please let me know if I have this clear. The basic source character set is the list of (96) characters that all implementations must have in their vocabulary. All other characters...
0
by: thunder44 | last post by:
Hello, I got this error message when I tried to get a backup of postgresql DB in a Fedora machine. The command that was used is: pg_dump /var/lib/pgsql/data/warranty_1_9 >...
0
AHMEDYO
by: AHMEDYO | last post by:
Hi Every one... With this visual Basic 6.0 Code you can handle more event that visual basic Support as Mouse wheel and hover or you can control event before VB IDE Default Windows proc as...
6
Atli
by: Atli | last post by:
This is an easy to digest 12 step guide on basics of using MySQL. It's a great refresher for those who need it and it work's great for first time MySQL users. Anyone should be able to get...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.