I’ve Framed! my hosts

And it feels great! For a couple of days I’ve been poking around with a small tool to ease the burdens of keeping track of different web development environments. The problem Nowadays a lot of developers have a number of different environments set up to improve the way they work. It’s often safe to tinker… Continue reading I’ve Framed! my hosts

Published
Categorized as Programming

Package, where the hell are you??!

Simple solution to a simple problem; Problem I can’t figure out where in the wholey hell of Linux-operating-system-paths-and-specifications, a package is spread out. Solution dpkg -L [package]

Published
Categorized as Null

Tunneling Gerrit

Tunneling and Gerrit was a really interesting happening, as it wasn’t all clear how to do the following things Allow cloning and interaction with Gerrit Git Allow interaction with Gerrit’s web UI The first part was easier than the second. So let’s look at the second first. Allowing interaction with Gerrit’s web UI In order… Continue reading Tunneling Gerrit

Gerrit commands and other bits

Gerrit is a really interesting code review tool. When I worked for one of my former employers I got to test it out and I was both intrigued and daunted by it. The learning curve is sky-high with this one, but there’s a lot of things done right, when it comes to running huge code… Continue reading Gerrit commands and other bits

Published
Categorized as Null

Fixing permissions in a shared Git repo

I hate shared Git repos’. Especially when I forget to set them as shared ones. And I start inviting people to join in on the fun. So, therefore, here’s a tip from a blog that tells you a way of fixing the mess you did, retroactively: https://blog.christophersmart.com/2014/01/10/permanently-fixing-permissions-on-a-shared-git-repo/ tl;dr TheRightWay git init –bare –shared tl;dr TheRadioactiveWay ssh… Continue reading Fixing permissions in a shared Git repo