Skip to content

Instantly share code, notes, and snippets.

@goll
goll / README.md
Last active April 22, 2025 17:08
Docker nftables configuration for Debian 10
@cridenour
cridenour / gist:74e7635275331d5afa6b
Last active June 17, 2025 16:47
Setting up Vim as your Go IDE

Setting up Vim as your Go IDE

The final IDE

Intro

I've been wanting to do a serious project in Go. One thing holding me back has been a my working environment. As a huge PyCharm user, I was hoping the Go IDE plugin for IntelliJ IDEA would fit my needs. However, it never felt quite right. After a previous experiment a few years ago using Vim, I knew how powerful it could be if I put in the time to make it so. Luckily there are plugins for almost anything you need to do with Go or what you would expect form and IDE. While this is no where near comprehensive, it will get you writing code, building and testing with the power you would expect from Vim.

Getting Started

I'm assuming you're coming with a clean slate. For me this was OSX so I used MacVim. There is nothing in my config files that assumes this is the case.

@KonradIT
KonradIT / readme.md
Last active June 12, 2025 10:51
GoPro Studio for Linux
@mason-stewart
mason-stewart / gist:998038
Created May 29, 2011 18:52
Automatically show new tweets on Twitter.com
// Sometimes, when I'm in my office but not sitting at my computer, I want to glance over at new tweets
// in my feed at http://twitter.com. I find myself annoyed with having to click "Show X new tweets"
// button that pops up. Running this in the console solves my problem.
setInterval(function(){$("#new-tweets-bar").click()}, 5000);