Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am fullyint on github.
  • I am fullyint (https://keybase.io/fullyint) on keybase.
  • I have a public key whose fingerprint is 6B17 568B CC29 2A5F 5B9B 6AFB C0BA 7674 2258 A584

To claim this, I am signing this object:

@fullyint
fullyint / ssh_config.diff
Last active November 1, 2018 13:16
ssh-hardening
port 22
-addressfamily any
+addressfamily inet
batchmode no
canonicalizefallbacklocal yes
canonicalizehostname false
challengeresponseauthentication yes
checkhostip yes
-compression no
+compression yes
@fullyint
fullyint / Gruntfile.js
Created January 6, 2015 21:32
using grunt-bless to create split css files for ie9 and oldIE with roots theme
// Gruntfile.js
// Discussion at http://discourse.roots.io/t/getting-around-ie9-css-limits/
// applies to https://github.com/roots/roots/tree/1b333d6
// using grunt-bless v0.1.1
'use strict';
module.exports = function(grunt) {
// Load all tasks
require('load-grunt-tasks')(grunt);
// Show elapsed time
@fullyint
fullyint / ssh-port.diff
Last active September 20, 2015 07:52
# Enable ssh_port option in vagrant-digitalocean
# Diff of /lib/vagrant-digitalocean/actions/create.rb
# wait for ssh to be ready
switch_user = @machine.provider_config.setup?
user = @machine.config.ssh.username
+ port = @machine.config.ssh.port
@machine.config.ssh.username = 'root' if switch_user
+ @machine.config.ssh.port = '22' if port