I hereby claim:
- I am sirmackk on github.
- I am matt_o (https://keybase.io/matt_o) on keybase.
- I have a public key whose fingerprint is BF7A 35EF D857 C604 0EBF 29A6 E8ED 9834 2975 17C2
To claim this, I am signing this object:
| 0. Ensure rfkill is installed - "sudo apt-get install rfkill" | |
| 1. sudo vim /etc/rc.local | |
| 2. paste "rfkill block bluetooth" ABOVE exit 0 | |
| 3. :w |
| import sys | |
| import logging | |
| from django import setup | |
| from django.conf import settings | |
| from django.http import HttpResponse | |
| from django.conf.urls import url | |
| from django.contrib import admin |
| docker-compose -f docker-compose.yml -p app up -d --no-deps --build NAME |
| .user-content { | |
| column-count: 2; | |
| // The inline-block, last-child:block, and avoid-column | |
| // are required for columns to display consistantly | |
| // across all browsers. | |
| p { | |
| break-inside: avoid-column; | |
| display: inline-block; | |
| margin: 0; |
| SELECT file.project, | |
| COUNT(*) as total_downloads FROM TABLE_DATE_RANGE( | |
| [the-psf:pypi.downloads], | |
| TIMESTAMP("20160801"), | |
| TIMESTAMP("20160901") | |
| ) where file.project = 'py3tftp' group by file.project | |
| URL: https://bigquery.cloud.google.com/dataset/the-psf:pypi |
I hereby claim:
To claim this, I am signing this object:
| @font-face { | |
| @include font-face('nexa-bold-italic', '../fonts/nexa/Nexa Bold Italic'); | |
| } | |
| @font-face { | |
| @include font-face('nexa-bold', '../fonts/nexa/Nexa Bold'); | |
| } | |
| @font-face { | |
| @include font-face('nexa-book-italic', '../fonts/nexa/Nexa Book Italic'); |
| var gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| concat = require('gulp-concat'), | |
| minifyCSS = require('gulp-minify-css'), | |
| autoprefixer = require('gulp-autoprefixer'), | |
| uglify = require('gulp-uglify'), | |
| del = require('del'); | |
| // sprites? | |
| var paths = { |
| function! SpringStop() | |
| if filereadable("config/spring.rb") | |
| exec ":!spring stop" | |
| end | |
| endfunction | |
| function! RakeRoutesDo(path) | |
| if filereadable("config/spring.rb") | |
| exec ":!spring rake routes | grep " . a:path | |
| else |