2D, hand drawn (non-pixel) art
- Cuphead
- Hollow Knight
- Jotun
- The Little Acre
- Skullgirl
- Sundered
2D, hand drawn (non-pixel) art
#!/usr/bin/env ruby | |
if ARGV == ['who', 'is', 'this?'] | |
puts "THIS IS SPARTA!!!" | |
end | |
puts (words = File.read('/usr/share/dict/words')).length | |
good_words = words.split.select {|w| w.size > 6} | |
puts good_words.sample(3).join(' ') | |
Thread.new{ STDERR.<< ", \n A PLAY IN 3 PARTS.\n\n============ PAGE " } | |
puts good_words.length | |
puts File.read(__FILE__).split.detect{|_| _ =~ /SPARTA/} |
#!/bin/bash | |
read -p "enter your wallet address: " WALLETID | |
sudo apt-get update | |
sudo apt-get install -y git automake g++ build-essential libcurl4-openssl-dev libjansson4 libjansson-dev | |
if [ -d $(pwd)/quarkcoin-cpuminer ]; then | |
rm -r $(pwd)/quarkcoin-cpuminer | |
fi | |
git clone https://github.com/uncle-bob/quarkcoin-cpuminer | |
cd quarkcoin-cpuminer | |
./autogen.sh |
This entire guide is based on an old version of Homebrew/Node and no longer applies. It was only ever intended to fix a specific error message which has since been fixed. I've kept it here for historical purposes, but it should no longer be used. Homebrew maintainers have fixed things and the options mentioned don't exist and won't work.
I still believe it is better to manually install npm separately since having a generic package manager maintain another package manager is a bad idea, but the instructions below don't explain how to do that.
Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.
<!-- media query debugger --> | |
<div class="navbar-fixed-top" style="right: initial"> | |
<button type="button" class="btn btn-default visible-lg">Large</button> | |
<button type="button" class="btn btn-default visible-md">Medium</button> | |
<button type="button" class="btn btn-default visible-sm">Small</button> | |
<button type="button" class="btn btn-default visible-xs">Extra-Small</button> | |
</div> | |
<!-- end media query debugger --> |
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
let viewController = SplitVc() |
Victor Alvarez
I have had a fixed mindset about many things, including tech. I have talked myself out of doing so many things because they are not a part of my self identification, be it learning how to code, cook, work out, or even let myself get angry in a healthy way. However, when I feeling confident or motivated, the growth mindset comes out. When I started to go to the gym last year, I wanted to learn and take in information, even if my ego had to be bruised a little. I wanted to learn how to code, even if I had to check wikipedia every five words. I still feel a little Fixed when in a way that it is hard for me to take criticism. I have to mentally prepare myself and even then, it’s tough. I get upset with how smug or overly confident someone with criticism can be. I project these thoughts and emotions on to the person.
I predict I will encounter difficulties with staying focused. I have trouble with that because I want to do a million things at once. I am not diagnosed with ADD but I actbackup: | |
image: 'borja/dockup:latest' | |
environment: | |
- AWS_ACCESS_KEY_ID=<SET ME> | |
- AWS_DEFAULT_REGION=<SET ME> | |
- AWS_SECRET_ACCESS_KEY=<SET ME> | |
- BACKUP_NAME=<SET ME> | |
- PATHS_TO_BACKUP=/var/lib/postgresql/data | |
- S3_BUCKET_NAME=<SET ME> | |
restart: on-failure |
/** | |
* Using Operator Mono in Atom | |
* | |
* 1. Open up Atom Preferences. | |
* 2. Click the “Open Config Folder” button. | |
* 3. In the new window’s tree view on the left you should see a file called “styles.less”. Open that up. | |
* 4. Copy and paste the CSS below into that file. As long as you have Operator Mono SSm installed you should be golden! | |
* 5. Tweak away. | |
* | |
* Theme from the screenshot (http://cdn.typography.com/assets/images/blog/operator_ide2.png): |
export CHROME_BIN=/usr/bin/google-chrome | |
export DISPLAY=:99.0 | |
sh -e /etc/init.d/xvfb start | |
sudo apt-get update | |
sudo apt-get install -y libappindicator1 fonts-liberation | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb |