Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Windows': 0.02; 'repository': 0.05; 'binary': 0.07; 'important,': 0.07; 'git': 0.09; 'toss': 0.09; 'whichever': 0.09; 'cc:addr:python-list': 0.11; 'jan': 0.12; 'choose,': 0.16; 'clone': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:dev': 0.16; 'wing': 0.16; 'files.': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'commit': 0.19; 'thu,': 0.19; 'work,': 0.20; 'machine': 0.22; 'cc:addr:python.org': 0.22; 'package.': 0.24; 'cc:2**0': 0.24; 'push': 0.26; 'header:In-Reply-To:1': 0.27; 'external': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'gives': 0.31; 'code': 0.31; 'crash': 0.31; 'option.': 0.31; 'ray': 0.31; 'another': 0.32; 'mac': 0.33; 'there,': 0.34; 'subject:from': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'disk': 0.36; "i'll": 0.36; 'reports': 0.37; 'two': 0.37; 'list': 0.37; 'minimum': 0.38; 'remote': 0.38; 'system,': 0.38; 'problems': 0.38; 'that,': 0.38; 'anything': 0.39; 'either': 0.39; 'space': 0.40; 'how': 0.40; 'even': 0.60; 'hardware': 0.61; "you're": 0.61; 'more': 0.64; 'pays': 0.65; 'continuous': 0.68; 'consumer': 0.70; 'william': 0.81; 'manual,': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=nFKbj00YIJbsyvBNYyvIMQqH326NrNuTkqVWOZSX51s=; b=IzsaIUzxbo8Ra7ZDJbqf8p6lEpbk7zjpBiTGcyjNcfKUF1janFBX3zfSXHqDxf+8t8 9mq5gYDqfU64Exu5VjeO8+Z7qrf7XMrcG6ed5wCJwfmKFxtmJRnyF7HkG33O/mgwjndU Jq9NmQ5BOiclQpuxDpt06fjaImll9cFLs1O6ja7QZCGCE06iRE0znteFTVi+x4ed1c40 rUUhHCRZDa8QoN38xa3EOMLkL+12zJaTd3ERBomxP1vX155CpSxB26fz6Xs/UtS3x/CN TmiatJFv9vuWf4f/PXRSujfxShqGF1sJgVFnOrLrZ627sF4szUgbJImP04mcfy+aSY6l 6sAA== MIME-Version: 1.0 X-Received: by 10.68.108.194 with SMTP id hm2mr144755361pbb.22.1389200870343; Wed, 08 Jan 2014 09:07:50 -0800 (PST) In-Reply-To: <1611C8AA-18D1-427D-A578-89C8A7AA94F4@mac.com> References: <1389190314.4596.68121689.217AAEE5@webmail.messagingengine.com> <1611C8AA-18D1-427D-A578-89C8A7AA94F4@mac.com> Date: Thu, 9 Jan 2014 04:07:50 +1100 Subject: Re: Looking for tips for moving dev environment from Windows to Mac From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389200881 news.xs4all.nl 2879 [2001:888:2000:d::a6]:42167 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63499 On Thu, Jan 9, 2014 at 2:45 AM, William Ray Wing wrote: > Two external disks. One dedicated to TimeMachine for continuous backups = of code as you write it, and one dedicated to either CarbonCopy Cloner or S= uperDuper. Whichever you choose, set it up to do once-a-week clones at say= 2:00 AM Sunday. Modern Mac's are just as hard to crash as any other moder= n UNIX-derived system, and Mac laptops continue to top Consumer Reports lis= t of trouble-free systems, but ANY hardware can develop problems and it pay= s to be paranoid. That's one option. I prefer to put anything that's even vaguely important into a git repository, toss a remote clone of it onto one of my servers, and commit and push every change. (And if it's important, I'll clone that on another machine and pull, so I have a minimum of three copies.) It's a bit more work, a bit more manual, but it gives me versioning, backups, cryptographic hash checksums, notes ("Why the bleep did you do that, Past-Me?!?"), and replication, all in one tidy package. I don't know how much disk space you need for the two backup systems you describe there, but the size of a full-history repository isn't going to be huge, unless you're constantly editing big binary files. ChrisA