Skip to content

Instantly share code, notes, and snippets.

:fist: - This proposal is not safe to try
:one: - I strongly object to this proposal as written
:two: - I have concerns that need to be heard
:three: - I have concerns or improvements, but could live with it
:four: - I support this proposal and think it could be improved
:five: - I completely support this proposal as written
Verifying my Blockstack ID is secured with the address 133VNSmog7vVexfoDc68UeGeBzjJTaVeJ2 https://explorer.blockstack.org/address/133VNSmog7vVexfoDc68UeGeBzjJTaVeJ2

Keybase proof

I hereby claim:

  • I am Lewwwk on github.
  • I am lewwwk (https://keybase.io/lewwwk) on keybase.
  • I have a public key whose fingerprint is FF37 E3A3 8B04 FDF1 5D87 5A1E A75D 1F57 B0CB F3DA

To claim this, I am signing this object:

@Lewwwk
Lewwwk / parseEmail.js
Last active November 13, 2015 19:16
parseEmail - simple superscript plugin to parse and return an email address from an input string
var debug = require("debug")("parseEmail Plugin");
var emailRegex = require("email-regex");
exports.parseEmail = function(star, cb) {
// function to parse either a passed string or the entire message
var input;
if (typeof(star) === 'function') {
cb = star;
star = null;
Verifying that +lewwwk is my openname (Bitcoin username). https://onename.io/lewwwk
@Lewwwk
Lewwwk / gist:9003935
Created February 14, 2014 16:16
Removing menu bar icons
right click on an app
click 'Show Package Contents'
click Contents/Resources
find the icon
open a terminal window
type 'sudo chmod 0600 ' and then drag the file into terminal, press enter
type `sudo chown root 0600 ` and drag and enter
restart the app
@Lewwwk
Lewwwk / gist:7990845
Created December 16, 2013 17:29
OSX Finder - hidden file toggle script
-- AppleScript to toggle hidden "." files
-- Submitted by Baltwo on Apple Support Community
try
do shell script "defaults read com.apple.finder AppleShowAllFiles"
on error
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end try
if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is equal to "0" then