This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ps ax | grep ssh | |
1817 ? Ss 0:00 /usr/bin/sshd -D | |
1886 ? Ss 0:00 /usr/bin/ssh-agent -s | |
3074 pts/0 S+ 0:00 sudo vim /etc/ssh/sshd_config | |
3075 pts/0 S+ 0:00 vim /etc/ssh/sshd_config | |
3165 pts/1 S+ 0:00 grep ssh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm ls -g --depth=0 | |
/Users/yuetsu/.npm-packages/lib | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Musical Playlist</title> | |
<link rel="stylesheet" href="css/styles.css"> | |
</head> | |
<body> | |
<h1>My Music Playlist</h1> | |
<script src="js/playlist.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ps aux | grep apache | |
root 1446 0.0 3.9 333700 19728 ? Ss 14:08 0:01 /usr/sbin/apache2 -k start | |
www-data 2926 0.0 5.8 338284 29464 ? S 16:35 0:01 /usr/sbin/apache2 -k start | |
www-data 2927 0.0 6.6 339524 33212 ? S 16:35 0:01 /usr/sbin/apache2 -k start | |
www-data 2928 0.0 5.8 338132 29272 ? S 16:35 0:01 /usr/sbin/apache2 -k start | |
www-data 2929 0.0 7.2 340120 36460 ? S 16:35 0:02 /usr/sbin/apache2 -k start | |
www-data 2930 0.0 6.6 341632 33516 ? S 16:35 0:01 /usr/sbin/apache2 -k start | |
www-data 3101 0.0 6.1 337500 30800 ? S 16:35 0:01 /usr/sbin/apache2 -k start | |
www-data 3104 0.0 5.6 338756 28548 ? S 16:38 0:01 /usr/sbin/apache2 -k start | |
www-data 3105 0.0 7.6 344192 38284 ? S 16:38 0:01 /usr/sbin/apache2 -k start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CompileXIB Fuzzy\ Bizz\ Programming\ Challenge/MyViewController.xib | |
cd "/Users/yuetsu/Documents/code/projects/Fuzzy Bizz Programming Challenge" | |
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/.. | |
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Fuzzy_Bizz_Progamming_Challenge --output-partial-info-plist /Users/yuetsu/Library/Developer/Xcode/DerivedData/Fuzzy_Bizz_Programming_Challenge-cqplutvqrbelwodchpedxtfjekfm/Build/Intermediates/Fuzzy\ Bizz\ Programming\ Challenge.build/Release-iphonesimulator/Fuzzy\ Bizz\ Progamming\ Challenge.build/MyViewController-PartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 9.0 --output-format human-readable-text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm install -g caniuse-cmd | |
npm ERR! tar.unpack untar error /Users/yuetsu/.npm/caniuse-cmd/1.0.0/package.tgz | |
npm ERR! Darwin 14.4.0 | |
npm ERR! argv "node" "/usr/local/bin/npm" "install" "-g" "caniuse-cmd" | |
npm ERR! node v0.12.5 | |
npm ERR! npm v2.11.2 | |
npm ERR! path /usr/local/lib/node_modules/caniuse-cmd | |
npm ERR! code EACCES | |
npm ERR! errno -13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> | |
The Triangle of Asterisks! | |
</title> | |
</head> | |
<body> | |
<h1>The Triangle of Asterisks!</h1> | |
<div id="asterisks"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var buttons = { | |
next: $('button.next') | |
}; | |
buttons.next.addEventListener('click', function() { | |
lifeView.next(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var _ = self.Life = function(seed) { | |
this.seed = seed; | |
this.height = seed.length; | |
this.width = seed[0].length; | |
this.prevBoard = []; | |
this.board = cloneArray(seed); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE-edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Bootstrap Example</title> |