A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| 95.216.149.205 conntest.nintendowifi.net | |
| 95.216.149.205 ctest.cdn.nintendo.net | |
| 95.216.149.205 90dns.test | |
| 0.0.0.0 nintendo.com | |
| 0.0.0.0 nintendo.net | |
| 0.0.0.0 nintendo.jp | |
| 0.0.0.0 nintendo.co.jp | |
| 0.0.0.0 nintendo.co.uk | |
| 0.0.0.0 nintendo-europe.com |
| <keyboard> | |
| <!-- Left Half --> | |
| <keybind key="W-A-Left"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <x>0</x> | |
| <y>0</y> | |
| <height>100%</height> | |
| <width>50%</width> | |
| </action> |
I hereby claim:
To claim this, I am signing this object:
| class Api::RegistrationsController < Api::BaseController | |
| respond_to :json | |
| def create | |
| user = User.new(params[:user]) | |
| if user.save | |
| render json: user.as_json(auth_token: user.authentication_token, email: user.email), status: :created | |
| return | |
| else |
| #!/usr/bin/env python | |
| import spidev | |
| import time | |
| def write(value, cs): | |
| """" | |
| #Set chipSelect HIGH | |
| GPIO.output(cs, True) | |
| #Set clock LOW | |
| GPIO.output(clock, False) |
| #!/bin/bash | |
| MAGPPI_URL="https://www.raspberrypi.org/magpi-issues/" | |
| function get_issues() { | |
| curl $MAGPI_URL | grep "\"MagPi\d\d\.pdf\"" | grep -o "MagPi\d\d.pdf" | uniq > /tmp/magpi_issues.list | |
| } | |
| function download() { | |
| cat issues.list | xargs printf "https://www.raspberrypi.org/magpi-issues/%s\n" $1 | xargs wget | |
| } |
| # Ignore bundler config | |
| /.bundle | |
| # Ignore the default SQLite database. | |
| /db/*.sqlite3 | |
| # Ignore all logfiles and tempfiles. | |
| /log/*.log | |
| /tmp |