Daily Life with the Offline Laptop
dataswamp.org
Daily Life with the Offline Laptop
1–10 of 24 posts
Re: Daily Life with the Offline Laptop
#2Re: Daily Life with the Offline Laptop
#3Re: Daily Life with the Offline Laptop
#4No affiliation, but I found Dash incredibly helpful for working offline: https://kapeli.com/dash . You can download the docs for most languages/frameworks AND you can download Stackoverflow by section in a way you can read and search.
Re: Daily Life with the Offline Laptop
#5I also tried doing what I called an "Internet Diet", of self-imposing working offline, and as long as I stuck with it I got a good amount done then also. In fact one thing I noticed was that if I didn't let myself have the internet, I'd start to get bored, and would naturally open up a code editor or text editor and start writing, or at least organizing the files on my hard drive or even just reading a book.
My main problem are my jobs, though. If my job absolutely requires the internet in order for me to do my job (and right now it absolutely does), then the distractions are just a few clicks away, tempting me, and I fall into its trap.
Time to get off the internet, at least for a bit.
Re: Daily Life with the Offline Laptop
#6No affiliation, but I found Dash incredibly helpful for working offline: https://kapeli.com/dash . You can download the docs for most languages/frameworks AND you can download Stackoverflow by section in a way you can read and search.
Pity it's mac only
Re: Daily Life with the Offline Laptop
#7No affiliation, but I found Dash incredibly helpful for working offline: https://kapeli.com/dash . You can download the docs for most languages/frameworks AND you can download Stackoverflow by section in a way you can read and search.
Re: Daily Life with the Offline Laptop
#8I like working offline and do it frequently. In fact, if I would just turn off my tethered 4G right now, I would get a lot more done and be much happier with myself. Will be doing just after I finish typing this :-). Because I use my computer primarily for programming, the biggest thing I need are docs. In that respect, I've found that working with Rust is amazing. Installing all the normal documentation you need and…
Re: Daily Life with the Offline Laptop
#9Re: Daily Life with the Offline Laptop
#10I like working offline and do it frequently. In fact, if I would just turn off my tethered 4G right now, I would get a lot more done and be much happier with myself. Will be doing just after I finish typing this :-). Because I use my computer primarily for programming, the biggest thing I need are docs. In that respect, I've found that working with Rust is amazing. Installing all the normal documentation you need and…
I use a tool called Zeal on linux which makes using docs even better than in a browser since its pretty much instant.
The thing I like about Rust's setup is that things just work out of the box. `rustup doc` opens a page containing the Rust book, Rust by example book, all of the API documentation and more -- all for the version of Rust that I currently have installed. `cargo doc` builds all of the documentation for all of the crates that I am using in my current project. All of the documentation is for the versions of the crates I'm using. It's just very seemless.
The really cool part of the Rust docs is that all of the API documentation (and crate documentation) has links to the source code. So if I can't understand what the documentation is saying, I can read the code. It's incredibly helpful. I must use that feature 5 or 6 times a day.
But, yeah, Zeal is quite useful and I really should set it up again for my Ruby stuff.