I hereby claim:
- I am tealtan on github.
- I am tealtan (https://keybase.io/tealtan) on keybase.
- I have a public key ASCNW7s4YhCzq3u2KXo11b6Q9kvZG8z8bvfyK7jKU98pOQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| @font-face { | |
| font-family: 'MyFontFamily'; | |
| src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), | |
| url('myfont-webfont.woff2') format('woff2'), | |
| url('myfont-webfont.woff') format('woff'), | |
| url('myfont-webfont.ttf') format('truetype'); | |
| } |
| <script type="text/javascript"> | |
| try { | |
| Typekit.load({ | |
| active: function() { | |
| $('.fuego-itembox-container').packery(); | |
| } | |
| }) | |
| } catch(e) {} | |
| </script> |
The thing about half-joking about things is that they sometimes become real. I said something about how the only alternative social network I’d trust now is a system where everyone runs their own secret RSS feeds (with no corresponding web component) and passes them around by word-of-mouth. No discovery, no stars, no pageviews, just semi-public paragraphs.
A range of options, depending on how much you want to do yourself:
| allen-tan:usr 204854$ brew update | |
| error: Your local changes to the following files would be overwritten by merge: | |
| Library/Contributions/brew_bash_completion.sh | |
| Library/Contributions/brew_fish_completion.fish | |
| Library/Contributions/brew_zsh_completion.zsh | |
| Library/Contributions/cmd/brew-graph | |
| Library/Contributions/cmd/brew-man | |
| Library/Contributions/cmd/brew-pull.rb | |
| Library/Contributions/cmd/brew-readall.rb | |
| Library/Contributions/cmd/brew-server |
This is by no means comprehensive, but are where I’d go:
Noma. It’s no El Bulli, but this is open, so! I love how it looks like a nondescript warehouse from the outside.
The Opera House. Ridiculous inside. (It looks like a pumpkin.) The Royal Danish Ballet and Royal Danish Orchestra both perform here all the time and apparently THE QUEEN comes all the time.
Koncerthuset. It’s a theater with 4 semi-transparent screens for walls. So you can see inside during the day and watch projections on it at night.
Craig Mod does a bigger overhaul with Twitter for Minimalists, but this will only do the following:
You can add this CSS in Safari with this extension. The URL to target is twitter.com/*.
| module ApplicationHelper | |
| def combine_highlight(selected_text, surrounding_text) | |
| if surrounding_text.include? selected_text | |
| split_text = surrounding_text.split(selected_text) | |
| content_tag(:p, split_text[0].to_s.html_safe + content_tag(:span, selected_text, class:"selected") + split_text[1].to_s.html_safe) | |
| else | |
| content_tag(:p, surrounding_text, class:"selected") | |
| end | |
| end |