I hereby claim:
- I am micahbrich on github.
- I am micahbrich (https://keybase.io/micahbrich) on keybase.
- I have a public key ASBJth2oLpSqh6t9JYjdcDlrWeoXZ6FaM5uFwrxPRpCDwwo
To claim this, I am signing this object:
# Ruthless Simplicity | |
## Core Philosophy | |
**RUTHLESSLY PURSUE SIMPLICITY.** Great code isn't written—it's carved from complexity with unrelenting pressure. Every line must justify its existence. Every abstraction must prove its worth. We seek the essential core of each problem, then eliminate everything else without mercy. | |
Like a sculptor who starts with a block of marble and strips away everything that isn't the sculpture, we start with a problem and ruthlessly eliminate everything that isn't the solution. No compromises. No "just in case." No clever tricks. | |
We achieve this through: |
yarn add next react react-dom @emotion/core @emotion/styled babel-plugin-emotion @zeit/next-mdx @mdx-js/loader |
// |
# to run: docker-compose run | |
# | |
# Create a .evn file in the same folder as this file and change the variables. | |
# MOUNT_POINT=/tmp/ | |
# VPN_PROVIDER=changeme | |
# VPN_CONFIG=changeme | |
# VPN_USERNAME=changeme | |
# VPN_PASSWORD=changeme | |
# | |
# |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
RED="\033[0;31m" | |
YELLOW="\033[33m" | |
REDBG="\033[0;41m" | |
BLACKBG="\033[0;40m" | |
WHITE="\033[1;37m" | |
NC="\033[0m" | |
mkdir -p /Applications/MAMP/Library/vhosts; |
#!/bin/bash | |
####################################### | |
# List the contents, or download a | |
# folder from a GitHub repo. | |
# Argument: | |
# HTTPS URI to folder | |
####################################### | |
echo ${1} | sed 's/tree\/master/trunk/g' | { read uri; (svn export $uri); } |
source 'https://rubygems.org' | |
group :production do | |
gem "thin" | |
end |
class Pitcher | |
attr_accessor :whip, :age | |
alias :whip_1 :whip | |
(2..20).each do |num| | |
define_method("whip_#{num}") do | |
if self.age < 28 | |
eval("self.whip_#{num-1}") * 0.95 | |
else | |
eval("self.whip_#{num-1}") * 1.05 |
{% for post in paginator.posts %} | |
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1> | |
<h5 class="date">{{post.date}}</h5> | |
<div class="content"> | |
{{ post.content }} | |
</div> | |
{% endfor %} |