This file contains 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
This file contains 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
package com.juilyoon.booklook; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.net.ConnectivityManager; | |
import android.net.NetworkInfo; | |
import android.net.Uri; | |
import android.os.AsyncTask; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; |
This file contains 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
$30x8hrs -Photography | |
$20x8hrs -Post-processing | |
$100 -Transportation | |
$75 -Photo book [$30 per extra] | |
$25x3hrs -Photo book design | |
$225 -Equipment Rental | |
--- | |
$875 |
This file contains 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
I am currently the president of the UW Photo Club and have access to our rental equipment which includes: | |
2x AB800 Strobes | |
1x AB400 Strobe | |
3x 50'' Soft boxes | |
3x Cactus V5 Triggers | |
1x Black/white Portable Backdrop | |
My personal equipment is made up of: | |
Canon 600D | |
Canon 350D |
This file contains 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
CUP 76 | Community Building | |
--- | |
Karen Unland (Capital Ideas) | |
Sam Brook’s boss | |
Brittney LeBlanc (gastropost) | |
news radio | |
--- | |
being a part of the community | |
The Mission: |
This file contains 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
#!/bin/sh | |
SPACE="SERVER$(spacefinder | sed 's/Current Space ID: //')" | |
mvim --serverlist | grep $SPACE | |
if [ $? -eq 1 ] | |
then | |
mvim --servername $SPACE $* | |
else | |
mvim --servername $SPACE --remote $* | |
fi |
This file contains 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
class PostsController < ActionController::Base | |
def create | |
Post.create(post_params) | |
end | |
def update | |
Post.find(params[:id]).update_attributes!(post_params) | |
end | |
private |
This file contains 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
#Newbie programmer | |
def factorial(x): | |
if x == 0: | |
return 1 | |
else: | |
return x * factorial(x - 1) | |
print factorial(6) | |
#First year programmer, studied Pascal |
This file contains 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
$ ab -n 10000 -c 500 http://wp-demo.local/ | |
Server Software: nginx/0.8.54 | |
Server Hostname: wp-demo.local | |
Server Port: 80 | |
Document Path: / | |
Document Length: 5728 bytes | |
Concurrency Level: 500 |
This file contains 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
$ ab -n 200 -c 4 http://wp-demo.local:8080/ | |
Server Software: Apache/2.2.17 | |
Server Hostname: wp-demo.local | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 5726 bytes | |
Concurrency Level: 4 |
NewerOlder