Categories
Life and Personal Tech and Culture

Teamwork

So much precious time and resources are wasted on separating your work relationships from your personal relationships. I mean, it is always a good idea to separate your work life and obligations from your personal ones, but there is this ongoing narrative that your team at work has to be different from your team at home.

A few people, mostly entrepreneurs, manage to work together as a team in the office and at home, but it is rare. If you’re starting a business, investors would advise against it; if you’re looking for a job, you’re supposed to not work together.

Imagine if we became good at compartmentalizing our work obligations from our professional ones. We would be able to solve so many problems easily, faster, and probably more efficiently as we wouldn’t have to spend time on making new teams and relationships for every project.

In fact, if you look at some of the top success stories, they were a result of professional/personal collaboration. Successful people have this innate capability to separate concerns, much like we aim for in our software code.

Companies need to investigate coaching employees on this instead of spending resources on creating rulebooks and curbing our natural human tendency to leverage effective teamwork for bigger and better goals. Given the opportunity, this would lead to better execution and possibly even more innovation.

Sure, there are challenges; some people are not good at teamwork, and if they bring their personal challenges into their workplace, it might be a recipe for disaster, which is what led to rulebooks around teamwork. The answer, in my opinion, though is to focus on coaching. Instead of shuffling the human problem here, the goal should be to tackle it head-on, and look at the bigger picture.

Categories
Life and Personal

New Portfolio Website

I finally managed to put together a new portfolio website to generate leads for business as well as showcase my professional and personal projects.

You can find it here — gargs.nl

I initially started with a WordPress theme, which wasn’t really that hard to setup on a new server as DigitalOcean makes it really easy to setup a VPS with the entire stack pre-configured. The only things that need to be done post-installation are setting up the private keys for remote login, disabling password-based logins, setting up the sudo-ers, and configuring LetsEncrypt. The hardest part is actually picking a theme and setting it up to your taste.

WordPress uses a database. It is PHP based. For a portfolio website which doesn’t really change that often, I figured that setting up a server with a database was really overkill. You also get an elegant editor, but it is not going to be used often. Finally, PHP has quite the learning curve.

It is then that I started looking at static site generators, and Hugo in particular. The first step is running a terminal command to setup a new website that creates the directory structure, followed by (usually) cloning the repository for a theme that you want to use. You also get the flexibility to use multiple themes for any particular site. The best part is that being templated, your website grows gradually in the form of git commits. This also gives you the flexibility to tweak the theme by just forking it. The theme I picked is quite simple, yet elegant for a portfolio website.

I also got into a bit of designing while building the website. The demo website using the theme used a lot of SVGs, and I decided to use some of my own. Turns out that SVGs are great for websites. They are vector-based which means that they look amazing on Retina displays. I wonder why websites just don’t use them for everything that isn’t a photo.

Uploading the website to the server is also just a matter of using scp or rsync, depending on how big your website is. There are even entire hosted workflows to automate this part — you push a new commit that triggers a new build of the website that triggers a new sync. It really can’t get any better than this!

Give my website a look and send me any feedback!