Skip to content

Instantly share code, notes, and snippets.

@wesruv
wesruv / SassMeister-input.scss
Last active May 5, 2023 21:03
Generated by SassMeister.com.
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
// See in action @ http://www.sassmeister.com/gist/43a347037bf0afa447ae
///
// Mixin to make-up for bad VH support in iOS
// @param {string} $property - CSS Property to style
@mattweldon
mattweldon / up-and-running-with-edeliver-on-do.md
Last active September 3, 2021 16:48
Getting Elixir / Phoenix running on Digital Ocean with edeliver

Build Server

  • Go to Digital Ocean
  • Create new droplet
  • London
  • Ubuntu
  • No apps
  • Add SSH keys
@gjedeer
gjedeer / gist:4514435
Created January 11, 2013 22:16
redmine supervisord script
[program:redmine]
command = /usr/bin/ruby /path/to/redmine/script/fastcgi
process_name = redmine
autostart = true
startsecs = 40
user = www-data
redirect_stderr = true
stdout_logfile = /var/log/redmine.log
environment = RAILS_ENV=production
@jimbojsb
jimbojsb / gist:1630790
Created January 18, 2012 03:52
Code highlighting for Keynote presentations

Step 0:

Get Homebrew installed on your mac if you don't already have it

Step 1:

Install highlight. "brew install highlight". (This brings down Lua and Boost as well)

Step 2:

@coolaj86
coolaj86 / how-to-publish-to-npm.md
Last active April 2, 2024 20:18
How to publish packages to NPM

Getting Started with NPM (as a developer)

As easy as 1, 2, 3!

Updated:

  • Aug, 08, 2022 update config docs for npm 8+
  • Jul 27, 2021 add private scopes
  • Jul 22, 2021 add dist tags
  • Jun 20, 2021 update for --access=public
  • Sep 07, 2020 update docs for npm version
require 'formula'
class GitDude < Formula
# always gets the latest version, since git-dude doesn't have
# any versioning schemes going on
head 'git://github.com/sickill/git-dude.git'
homepage 'https://github.com/sickill/git-dude'
def install
bin.install 'git-dude'