Skip to content

Instantly share code, notes, and snippets.

View jeroenvisser101's full-sized avatar
🇺🇦
Слава Україні!

Jeroen Visser jeroenvisser101

🇺🇦
Слава Україні!
View GitHub Profile
@jeroenvisser101
jeroenvisser101 / Issue.md
Last active March 29, 2018 18:27
Elixir Issue because I'm a dumb shit.

Cannot seem to get desired response through relationship. Must be missing some step here. How does one return with the relationship?

# Bol.com Lookup Command
class BolLookupCommand < Command
def help
'Searches for products in the Bol.com catalog.'
end
def syntax
'/bol <search query>'
end
@jeroenvisser101
jeroenvisser101 / osx-for-hackers.sh
Created October 7, 2015 12:52 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned. Also, please don't email me about this script, my poor inbox...
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
@jeroenvisser101
jeroenvisser101 / zsh.md
Last active August 29, 2015 14:06 — forked from tsabat/zsh.md

Prereq:

apt-get install zsh git-core

Getting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh