Skip to content

Instantly share code, notes, and snippets.

@joefiorini
joefiorini / PKGBUILD
Last active May 12, 2022 17:27 — forked from 4Evergreen4/PKGBUILD
Bitwig Beta 4.3 PKGBUILD
# Maintainer: Jonathon Fernyhough <jonathon at_m2x+dev>
# Contributor: Aleksej Komarov <stylemistake@gmail.com>
# Contributor: MKzero <info[at]linux-web-development[dot]de>
# Contributor: Evergreen <evergreenubuntu[at]gmail[dot]com>
# Upstream: Bitwig GmbH <support@bitwig.com>
# Original PKGBUILD taken wholesale from stylemistake's bitwig-studio package
# JF added a prepare() to allow side-by-side installation with release version
pkgname=bitwig-studio-beta
@joefiorini
joefiorini / sway-launcher-desktop.sh
Last active October 22, 2019 20:14 — forked from Biont/sway-launcher-desktop.sh
sway-launcher-desktop
#!/usr/bin/env bash
# terminal application launcher for sway, using fzf
# Based on: https://gitlab.com/FlyingWombat/my-scripts/blob/master/sway-launcher
# https://gist.github.com/Biont/40ef59652acf3673520c7a03c9f22d2a
shopt -s nullglob
if [[ "$1" == 'describe' ]]; then
shift
if [[ $2 == 'command' ]]; then
title=$1
@joefiorini
joefiorini / awesome.rb
Last active November 24, 2015 20:01 — forked from dr-fozzy/gist:9638661
require 'formula'
class Awesome < Formula
url 'http://awesome.naquadah.org/download/awesome-3.5.6.tar.bz2'
homepage 'http://awesome.naquadah.org/'
md5 '81c7353932dd067cc7a222d9ede1cdd7'
depends_on 'cmake'
depends_on 'lua'
depends_on 'imlib2'
@joefiorini
joefiorini / commitmessage.txt
Created August 22, 2012 19:59 — forked from cromwellryan/commitmessage.txt
An acceptable commit message?
Refactoring done earlier didn't execute acceptance tests.
This makes me wonder why we even have acceptance tests. The acceptance tests (and the bug they surfaced) are fixed. Ugh. Professionalism people. Please.
@joefiorini
joefiorini / gist:1720014
Created February 1, 2012 23:02 — forked from sjltaylor/gist:1713820
My rspec fantasy
# Here is a normal set of specs...
describe 'some normal rspec' do
describe 'doing something with a Product and Users' do
before :each do
# setup etc
# preconditions could go here
speaker "Chris Hayes"
time "03:15"
blah blah blah - lots of blah blah blah
speaker "Debbie Stabenow"
time "04:56"
even more blah blah blah - tons of blah
@joefiorini
joefiorini / waves.txt
Created October 16, 2009 00:05 — forked from mislav/waves.txt
> This is a Shortwave configuration file
> http://shortwaveapp.com/
>
> Some triggers copied from benpickles (http://gist.github.com/43371)
>
> Urls may contain the following replacement tokens:
>
> %s → search terms
> %r → URL of current page
> %d → domain part of the current URL
@joefiorini
joefiorini / waves.txt
Created October 15, 2009 18:27 — forked from mislav/waves.txt
> This is a Shortwave configuration file
> http://shortwaveapp.com/
>
> Some triggers copied from benpickles (http://gist.github.com/43371)
>
> Urls may contain the following replacement tokens:
>
> %s → search terms
> %r → URL of current page
> %d → domain part of the current URL
Feature: Wiki Documents
In order to manage wiki content
As a user
I want see, create and edit wiki documents
#
Scenario: View document page
Given there is a document titled "TestDocument"
When I visit the "TestDocument" document page
Then I should see "TestDocument"
@joefiorini
joefiorini / build_ruby19.sh
Created July 1, 2009 17:20 — forked from postmodern/build_ruby19.sh
7/1/09 LATEST RUBY 1.9! Easy to change version number. More robust.
#!/bin/bash
set -e
RUBY_BASE="ruby-1.9.1-p129"
RUBY_URL="ftp://ftp.ruby-lang.org/pub/ruby/1.9/$RUBY_BASE.tar.bz2"
install_ruby19() {
create_src_directory
download_ruby19_source