473,813 Members | 3,448 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1454
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*********@nt world.NOSPAM.co mschreef in bericht
news:Sj******** **********@news fe16.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*********@nt world.NOSPAM.co mwrote in message
news:Sj******** **********@news fe16.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*********@nt world.NOSPAM.co mwrote:
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.co m>
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...@nt world.NOSPAM.co mwrote:
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******@hotma il.comwrote in message
news:e4******** *************** ***********@2g2 000hsn.googlegr oups.com...
On 11 mai, 12:57, "colin" <colin.ro...@nt world.NOSPAM.co mwrote:
>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********@acc esswave.cawrote in message
news:51FVj.1594 $Yp.1341@edtnps 92...
"colin" <co*********@nt world.NOSPAM.co mwrote in message
news:Sj******** **********@news fe16.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*********@nt world.NOSPAM.co mwrote:
>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*********@nt world.NOSPAM.co mwrote:

>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
4153
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 asphalt drum operations. The architecture for this system is an Allen-Bradley SLC 5/04 PLC talking to
3
2969
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 sSqlString = "" Dim rCount As Integer = 0 Dim sDataSet As New DataSet() sSqlString = "Select * From "
10
2671
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 C/C++ and web development. Any suggestions that might get me off to a good start here? I can provide more information if needed, but I am not sure what would be helpful. The program is 550 lines in what appears to be BASIC and is a calendar...
1
2412
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 windows xp folder) or .zip or .rar file directly (the source code itself of the file, not the info of what files are in it) as most compilers will alow .exe programs only or dlls. curious and a new programmer, any help appreciated. id like to be able to...
111
5609
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 in advance! -entengk
6
4540
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 recognized by an implementation are implementation defined, and will not necessarily be the same across implementations. The key issue as far as developers are concerned is that if they want their code to be perfectly portable, then they must restrict...
0
1754
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 > /var/www/1.9/dump/test_warranty_1_9.sql The error message is: pg_dump: connection to database "/var/lib/pgsql/data/warranty_1_9" failed: FATAL: password authentication failed for user "postgres"
0
6859
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 WM_CREATE when windows start creation, this task is useful for some application , for example you can create new UI Control at run time using Form1.Control.add("vb.CommandButton","Cmd1") Function and you can handle command button event by WM_COMMAND Message...
6
38534
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 through this without much trouble. Programming knowledge is not required. Index What is SQL? Why MySQL? Installing MySQL. Using the MySQL command line interface
0
10665
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10406
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10420
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10139
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6897
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5568
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5704
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4358
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3881
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.