Skip to content

Instantly share code, notes, and snippets.

View mbreit's full-sized avatar

Moritz Breit mbreit

View GitHub Profile
vagrant@ubuntu-xenial:~/test$ git push dokku master
The authenticity of host 'localhost (127.0.0.1)' can't be established.
ECDSA key fingerprint is SHA256:H/YoMz0KniRTO+LvuIhaFtfjcevU96KWGDj41IUzaQA.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
+ export DOKKU_DISTRO
++ . /etc/os-release
++ echo ubuntu
+ DOKKU_DISTRO=ubuntu
+ export DOKKU_IMAGE=gliderlabs/herokuish
# Simple ActiveJob worker for PostgreSQL using LISTEN/NOTIFY.
#
# Supports most ActiveJob features like multiple queues, priorities
# and wait times.
#
# To use this as your Rails job queue, add this to your environment
# configuration (config/environments/production.rb):
#
# config.active_job.queue_adapter = PgJob::QueueAdapter.new
#

Keybase proof

I hereby claim:

  • I am mbreit on github.
  • I am mbreit (https://keybase.io/mbreit) on keybase.
  • I have a public key whose fingerprint is 2580 9AB4 4E3C 46C4 93FC 55CC A5D9 4C47 CF38 AC62

To claim this, I am signing this object:

@mbreit
mbreit / SassMeister-input.scss
Created May 21, 2015 11:45
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
$green: #00FF00;
@mixin fa-icon {
}
.widget {
@mbreit
mbreit / SassMeister-input.scss
Last active August 29, 2015 14:21
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
$green: #00FF00;
@mixin fa-icon {
}
@mbreit
mbreit / *scratch*.el
Created November 27, 2014 14:11
Emacs: haml-lint checker for flycheck
(flycheck-def-config-file-var flycheck-haml-lintrc haml-lint ".haml-lint.yml"
:safe #'stringp)
(flycheck-define-checker haml-lint
"A haml-lint syntax checker"
:command ("haml-lint"
(config-file "--config" flycheck-haml-lintrc)
source)
:error-patterns
((warning line-start
@mbreit
mbreit / font-awesome.css.sass
Last active March 29, 2021 04:52
Using Font Awesome with SASS and mixins for adding icons to semantic HTML
$fontawesome_path: "." !default
@font-face
font-family: 'FontAwesome'
src: font-url('#{$fontawesome_path}/fontawesome-webfont.eot')
src: font-url('#{$fontawesome_path}/fontawesome-webfont.eot?#iefix') format("embedded-opentype"), font-url('#{$fontawesome_path}/fontawesome-webfont.woff') format("woff"), font-url('#{$fontawesome_path}/fontawesome-webfont.ttf') format("truetype")
font-weight: normal
font-style: normal
@mixin icon($icon)
#!/usr/bin/env ruby
# http://smacss.com/
# Box
# Border
# Background
# Text
# Other
@mbreit
mbreit / .gitconfig
Created February 12, 2011 13:48
Git config
[user]
email = test@example.com
name = Max Mustermann
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
[alias]