https://shellshare.net I have migrated my wife's (then girlfriend) computer to Linux and sometimes I had to configure something on her computer (e.g. a printer). This ended up generating lots of back and forth on the phone with me telling her commands to write in the terminal, and she reading the output out loud. I wanted an easy way to see her terminal. So shellshare was born. Shellshare allows you to run a single c…
What a great way to create huge amounts of IT maintenance work for yourself.
Ask HN: What simple tools or products are you most proud of making?
641–650 of 892 posts
Re: Ask HN: What simple tools or products are you most proud of making?
#642Earlier quoted context omitted.
Why not just SSH + shared screen / tmux? Not sure why you need to involve the browser.
Incoming SSH connections can/should be blocked by the router. There is also likely to be no static IP.
Re: Ask HN: What simple tools or products are you most proud of making?
#643The simple tool I'm most proud of is spiped. If you have two systems which need to be able to talk over TCP without worrying about evilness on the network between them, spiped is the answer. The simple tool which has probably had the largest impact is bsdiff -- now found used in hundreds of millions of devices -- but I'm not particularly proud of it because it was a quick hack and horrible code written by a C novice.…
Right now it acts like a ssh -L tunnel, but doesn't have a mode where it acts like ssh -R, right?
Re: Ask HN: What simple tools or products are you most proud of making?
#644Earlier quoted context omitted.
What a great way to create huge amounts of IT maintenance work for yourself.
How so?
Re: Ask HN: What simple tools or products are you most proud of making?
#645Earlier quoted context omitted.
I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. rsync.net is a cloud service that provides a remote filesystem and ssh access. How do you envision using a remote storage provider to backup your laptop to your local server?
By using the cloud service to manage data transfer from one computer to the other, even if they are behind NAT, have changing IP addresses, ...? You know, just like CrashPlan, which otherwise also provides remote storage, does? (rsync.net doesn't offer that, but it is not a totally outlandish idea that they could if you just know them as "cloud backup services")
Ah, if that is what you wanted to do, they don't need to offer anything more than they already do. There's no reason why you can't rsync your laptop to rsync.net and then rsync the fs on rsync.net back to your local server.
Re: Ask HN: What simple tools or products are you most proud of making?
#646Earlier quoted context omitted.
As someone about to write a cron job, what ways do you see Cron fail? My assumption is that cron is robust and reliable, it's the job script itself that may fail silently and need monitoring, yes?
The most common failure I've seen is when people forget to use full paths in cron. bash instead of /bin/bash (or similar)
Re: Ask HN: What simple tools or products are you most proud of making?
#647Earlier quoted context omitted.
wget -qO shellshare http://get.shellshare.net && python shellshare Please don't tell people to do this. This is an idiom called "curl pipe sh"; you're asking people to run whatever code someone on their network decides to send them. As an absolute minimum, you should change that http to https , so that they're merely running whatever code YOU decide to send them; but even that doesn't quite fit with the "share your t…
What's a better alternative?
Re: Ask HN: What simple tools or products are you most proud of making?
#648http://bearbushkas.com I spent most of my free time the last 1.5 years to make this 4-player iPad game together with my brother (developer) and two cousins (graphics). Considering that it was our first Swift and SpriteKit project (my dayjob is programming business applications in Java), I am pretty proud of the outcome. It even got some reviews (one with a 92% rating!). The only problem is, we completely underestimat…
For what it's worth, I much prefer the pay once play forever model for good games. It would seem I am in the minority though
Re: Ask HN: What simple tools or products are you most proud of making?
#649https://unshorten.link I work in security and have a paranoia of shortened links (bit.ly, t.co). I got frustrated with the options out there that forced me to right click every shortened link or paste it into a site so I made this Chrome extension / web app. It is pretty simple and keeps a list of 300+ shortened link services to check against. If your browser ever visits one it redirects you to the site to expand the…
Re: Ask HN: What simple tools or products are you most proud of making?
#650I have some sideprojects around the internet, but so far the most useful thing I made has been http://paralleltext.io A tool that helps you learn languages by reading public domain books. I should continue working on that...
I’d be curious to know more about how it’s built, and where you found the source texts. It it open-source?