Reputation: 1268
Everyone once in a while, I'm in a coffee shop without a network connection. I like having all the code and tools local on my laptop for these occasions. I checkout the code locally, run mysql locally, and pull down all the API documentation. What are some tools and tricks you use when you have no network?
Upvotes: 1
Views: 270
Reputation: 4645
DNS tricks for testing servers and virtual servers (without actually having a network path to DNS up)
Upvotes: 1
Reputation: 15596
I'll turn the question around: What are some tips and tricks for developing when a network connection is available? The one big answer that comes to my mind is - Google.
I'm serious. OK, maybe that's not everything (more frequent integration might be another thing I do when I'm online). But at least as far as I'm concerned, my system of work doesn't really change very much when I go off the internet. All the things I need and use are on my laptop (with git being one of the most important).
And my tip?
Try to embrace the fact that you have no connection. Without internet there is no Twitter, no Facebook, no feed readers and all those distracting things, which means - you can actually DO your work. :)
Upvotes: 0
Reputation:
Upvotes: 0
Reputation: 12050
Upvotes: 6
Reputation: 1809
I'm a big fan of SVK for offline development. It is essentially a wrapper around svn that allows you to create local branches that you can work out of without a connection. You can commit to that local branch as often as you like and when you're back in connection range, it's a simple matter to get everything in sync again.
There are some introductory tutorials here.
Upvotes: 1
Reputation: 3321
I suppose I would recommend trying to keep track of what tools (VMs, Source control, bug tracking) and resources (documentation, websites, blogs) you use on a regular basis that possibly require a network.
Then, automate retrieving what you need from those resources (using RSS feeds comes to mind) such that they can seamlessly be used offline. As for source control, a distributed system (such as Git or Mercurial) may be of use.
Simply knowing what one uses on a regular basis is a good idea in any case.
Upvotes: 0
Reputation:
Why would I need a network connection? On this laptop, which is my main develpment machine, I've got:
plus documentation for all the above. What more do I need?
Edit: This is all on a 9-year old Sony notebook 900Mhz CPU, running W2K in 256Mb of RAM. Obviously, I don't run everything at once, but I can run Apache with PHP, SQL Server and a couple of C++ IDEs together with no probs.
Upvotes: 0
Reputation: 13096
Not really sure what you're getting at... I'm assuming you've got an installation of Rails already set up on your machine?
I like to use MAMP Pro when I'm developing locally but if you're just working with a Rails app even that is a bit extraneous.
Upvotes: 0