Tagged: developers

0

Simple CGI programming

A simple HTTP server serves static HTML, Javascript, CSS, Images, etc. Sometimes you need a bit of dynamic content from the server-side. There are simple microframeworks to mega frameworks to achieve this. You could use any of these available web frameworks on the server side. But let’s say you don’t have access to any of those frameworks, and you want it to be simple and lightweight. You could try CGI.

Or you are just a web geek and want to spend an hour on old but interesting technology.

1

My Boring Yet Modern Web Starter Stack

I like to use the same stack again and again. It makes me productive, makes code less buggy, and builds knowledge over time. Unless there is a real need like unmaintained software or a different kind of application or unless I am going to build a Facebook or Google, I rarely change things in this stack. Even if I am going to build Facebook, I would start here and then adjust as it grows, just like Facebook did with it’s stack.

0

Linked List: FOSS Android Apps for GIT Users

I do quite a bit of work on the go; most of it happens on the phone. It’s not easy to software development on the phone. That is mostly due to the small screen size and lack of a hardware keyboard. Nevertheless, I have made numerous small changes to code on the phone, deployed them. The other big use case is browsing the code on the go, doing reviews and accepting merge requests, etc. I use the following apps for the same.

1

Securing your wordpress with self-signed SSL certificate

I have been wanting to do this for a long time now. At last thejeshgn.com is available through https. It’s mostly done for my own use than my readers. I wanted to protect the admin screen (basically wp-admin). Given that I use my own VPN on public wifi, it may seem less important....

Using sshuttle to remain Safe on Insecure Wi-Fi 2

Using sshuttle to remain Safe on Insecure Wi-Fi

Working from home mostly means working from cafes. Though I mostly tether through my mobile to get onto the Internet, it’s not always fast enough. Also bigger bandwidth does attract the geek in me towards public wi-fi. But most public wi-fis are insecure (I think even the private ones are insecure). Using HTTPS...

2

My mercurial dev/prod workflow using clones

Most of the people whom I work with are very confused about repository and work-folder of mercurial. If they are comfortable with that then they are hesitant to use named branches. Hence I stopped using branches for maintaining my dev and prod code streams. Instead settled on clones (forks on Bitbucket/GitHub). I find...