Skip to content

Instantly share code, notes, and snippets.

View rawzone's full-sized avatar

Hans Nielsen rawzone

View GitHub Profile
@rawzone
rawzone / i3conf
Last active April 18, 2017 18:48
mpv playit script
# Play in fullscreen (url in clipboard via mpv, requires xclip)
bindsym $mod+m exec --no-startup-id "~/.i3/playit.sh"
bindsym $mod+Shift+m exec --no-startup-id "~/.i3/playit-fullscreen.sh
@rawzone
rawzone / html5-form-elements.html
Last active September 27, 2015 20:38
Form element with every HTML5 element
@extends('layouts.main')
@section('content')
<form action="/">
<fieldset>
<legend>A Sample Form Legend</legend>
<div class="form__row">
<label for="name">Name: </label>
@rawzone
rawzone / pre-commit
Created October 14, 2013 16:36
pre-commit hook for git to dumpt mysql database and add to repo.
#!/bin/bash
DBUSER="<USERNAME>"
DBPASS="<PASSWORD>"
DB="<DATABASE>"
HOST="<DATABASE HOST>"
mysqldump -u $DBUSER -p$DBPASS $DB > db/$DB.sql
git add db/$DB.sql