Skip to content

Instantly share code, notes, and snippets.

View chriszarate's full-sized avatar
👋
hi

Chris Zarate chriszarate

👋
hi
View GitHub Profile
/server add <name> <team>.irc.slack.com/6667 -ssl -password=<password>
/set irc.server.<name>.ssl_verify off
/set irc.server.<name>.nicks <username>
/connect <name>
@dphiffer
dphiffer / littlenets_library.md
Last active August 29, 2015 14:07
LittleNets Library

The LittleNets Little Library

Assembled by Ingrid Burrington

When we talk about what the web could be, it is often with nostalgia for a web that was—or a web that we think might have been, but we missed it. We tend to trip over our words whenever we talk about the web in any non-trivial way. Anything we say is so easily dated, or sound incredibly pretentious, and nothing ever is true to the whole place, because it simply can't be true to the whole place.

These are some of the writings that have shaped the way I think about and talk about the network. Some of them are kind of "weird old internet" texts of internet history and some of them are from now, and are a little bit urgent. All of them are probably important to me because they have this ideal mix of sincerity, uncertainty, and unexpected grace.

For texts that I read online, I've saved the pages as accurately as wget would allow. They're sort of like weird scrapbook objects that way.

@zcmarine
zcmarine / remap_capslock.lua
Created March 28, 2017 15:35
Hammerspoon capslock remapping: tap to Escape, hold in chord for Control
-- Inspired by https://github.com/jasoncodes/dotfiles/blob/master/hammerspoon/control_escape.lua
-- You'll also have to install Karabiner Elements and map caps_lock to left_control there
len = function(t)
local length = 0
for k, v in pairs(t) do
length = length + 1
end
return length
end