I hereby claim:
- I am mikejakobsen on github.
- I am mikejakobsen (https://keybase.io/mikejakobsen) on keybase.
- I have a public key whose fingerprint is 31BA 9DAF B8FA 5F9A ECAE 0792 CE9B B964 AA4E 23BF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| brew install --HEAD b-ramsey/homebrew-kali/acccheck | |
| brew install --HEAD b-ramsey/homebrew-kali/ace-voip | |
| brew install --HEAD b-ramsey/homebrew-kali/apache-users | |
| brew install --HEAD b-ramsey/homebrew-kali/armitage | |
| brew install --HEAD b-ramsey/homebrew-kali/asleap | |
| brew install --HEAD b-ramsey/homebrew-kali/automater | |
| brew install --HEAD b-ramsey/homebrew-kali/backdoor-factory | |
| brew install --HEAD b-ramsey/homebrew-kali/bbqsql | |
| brew install --HEAD b-ramsey/homebrew-kali/bdfproxy | |
| brew install --HEAD b-ramsey/homebrew-kali/bed |
| ### Keybase proof | |
| I hereby claim: | |
| * I am mikejakobsen on github. | |
| * I am mikejakobsen (https://keybase.io/mikejakobsen) on keybase. | |
| * I have a public key ASDWuL1I3cz56MZXqNkRTPHGcafETDiga6ve83sa-Pn6kgo | |
| To claim this, I am signing this object: |
| #!/usr/bin/env bash | |
| # 'Wi-Fi' or 'Ethernet' or 'Display Ethernet' | |
| INTERFACE=Wi-Fi | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| # Keep-alive: update existing `sudo` time stamp until finished | |
| while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & |
Replace "vue": "^1.0.24" with "vue": "^2.0.0", then run: npm install Line 40: package.json Reason: If you are using pre-2.0 Vue through NPM, you have to update it in your package.json file More info: http://vuejs.org/guide/migration.html#
Replace "vue-loader": "^8.5.0" with "vue-loader": "^9.0.0", then run: npm install Line 41: package.json Reason: vue-loader 9.0 is the earliest supported version compatible with Vue 2.0 More info: http://vuejs.org/guide/migration.html#
| HTML | |
| <nav class="mobile"> | |
| <button>Toggle</button> | |
| <div> | |
| <a href="#">Mobile 1</a> | |
| <a href="#">Mobile 2</a> | |
| <a href="#">Mobile 3</a> | |
| <a href="#">Mobile 4</a> | |
| </div> |
| function fizzBuzz(number) { | |
| for(var i = 0; i < number; i++) { | |
| if(i % 3 === 0 && i % 5 === 0) { | |
| console.log("FizzBuzz"); | |
| } | |
| else if(i % 3 === 0){ | |
| console.log("Fizz"); | |
| } | |
| else if(i % 5 === 0){ | |
| console.log("Buzz"); |
| class EmailsController < ApplicationController | |
| def send_email | |
| redirect_to_account if current_user.email.blank? | |
| case params[:email].to_sym | |
| when :rss_link | |
| LinkMailer.rss_link(current_user).deliver_later | |
| end |
| class EmailsController < ApplicationController | |
| def send_email | |
| redirect_to_account if current_user.email.blank? | |
| case params[:email].to_sym | |
| when :rss_link | |
| LinkMailer.rss_link(current_user).deliver_later | |
| end |
| // Generated by CoffeeScript 1.12.6 | |
| window.cl = function() { | |
| if (window.console && console.log) { | |
| return console.log(arguments); | |
| } | |
| }; | |
| window.params = function() { | |
| if (window._params) { | |
| return window._params; |