View 01.install-brew.sh
# DOCS: https://brew.sh/ | |
# run the install script | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# update brew | |
brew update | |
# run the health check | |
brew doctor |
View safari-console.txt
[Error] Cross-origin redirection to https://events.duolingo.com/gql denied by Cross-Origin Resource Sharing policy: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true. | |
[Error] Failed to load resource: Cross-origin redirection to https://events.duolingo.com/gql denied by Cross-Origin Resource Sharing policy: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true. (callback, line 0) | |
[Error] Fetch API cannot load https://events.duolingo.com/accounts/ssoclient/callback/?sso_token=b7YmP7L9171r5DtOt2Vk3iwzPqJdkfwQ5dwUww4kPtnJZeMwAIvUPIwmExxO3jGVwG_zHvp7vLN8ynEp0FaZSuPCwEOCz-_oK17C-Pl3zadpK0VrIp-oYS4Lc2hhqUGnqdBaH0YZ8TnVHAVXk6NedA2hTt7Zz1_4JSiSZuAKMIdp6pLybASJlFCqrRYjxccpp79m0fJF53eLK-h52xWOSOyOMNQRShKBUMxxu-uaToFJXVhw4Okxemsene_29epxU235zdfesZN3iAwwHbAo_pLBtfrGS2tYkhvEtMq9U-nV6b6qRLKdULPw9Jf8DPAirdc9hYX2C1xVPiwtY23sn21wsdZn8UGVp6WqCFkwqyAwgvzG69keOkRjBy-oUGKWf6-Big0HhNXH0DtIBD7SRQ%3D%3D&sso_auth_status=OK due to access control checks. | |
[Error] Unhandled (in rea |
View gist:8660722
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" |
View gist:7669633
AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:[self.project.composition copy] presetName:AVAssetExportPresetPassthrough]; | |
NSURL* outputURL = [self createTempAssetFileURL:@"export"]; | |
exportSession.outputURL = outputURL; | |
// exportSession.outputFileType=AVFileTypeQuickTimeMovie; | |
exportSession.outputFileType=AVFileTypeMPEG4; | |
[exportSession exportAsynchronouslyWithCompletionHandler:^{ | |
switch (exportSession.status) { | |
case AVAssetExportSessionStatusFailed:{ |
View gist:7669646
NSDictionary *videoCleanApertureSettings = [NSDictionary dictionaryWithObjectsAndKeys: | |
@480, AVVideoCleanApertureWidthKey, | |
@480, AVVideoCleanApertureHeightKey, | |
@0, AVVideoCleanApertureHorizontalOffsetKey, | |
@0, AVVideoCleanApertureVerticalOffsetKey, | |
nil]; | |
NSDictionary *videoAspectRatioSettings = [NSDictionary dictionaryWithObjectsAndKeys: | |
@1,AVVideoPixelAspectRatioHorizontalSpacingKey, |
View gist:7490764
f0ster left the chat room. (Ping timeout: 240 seconds) | |
[10:37am] JSeligstein: remear: how would I know which one to use without also storing my token? | |
[10:37am] ras__: skylar: it'll have all the same cards and bank accounts attached on Customer that it does on Account | |
[10:37am] remear: JSeligstein: if you did something like customer.debit it would default to the most recently added | |
[10:38am] skylar: ras__ so Balanced::Account.find(uri).customer_uri ? | |
[10:39am] remear: to debit a specific one just pass the URI for it as source_uri. how you determine which one you want to debit is up to you. some people allow only one card at a time and so store the URI for it. others allow multiple cards to pick from | |
[10:39am] remear: skylar: yes | |
[10:39am] skylar: thanks! that's helpful | |
[10:39am] JSeligstein: remear: okay, i'll just store the uri for the specific card then | |
[10:39am] JSeligstein: remear: thanks |
View gist:7489199
awsmsce:Hey everyone, quick question (hopefully) regarding URIs. wondering where there is a different uri for the same card when you refer to it from active_card and what the tokenizer returns | |
[2:48pm]jacobolus:hi awsmsce | |
[2:48pm]jacobolus:awsmsce: can you elaborate a bit? | |
[2:49pm]jacobolus:what's the "tokenizer"? | |
[2:49pm]awsmsce:when you tokenize a code, the api returns a URI for a card.. without a customer associated: | |
[2:49pm]jacobolus:yes | |
[2:50pm]awsmsce:however this differs from the URI that is returned when looking up a customer's active card | |
[2:50pm]awsmsce:but shouldn't the URI always be the same? | |
[2:50pm]awsmsce:the ID doesn't change | |
[2:50pm]jacobolus:if you tokenize a new card, then that card's URI is going to differ from a customer's existing card...? |
View gist:6084955
desc <<-DESC | |
Deploy the system directory to production | |
DESC | |
task :fs, :roles => :web, :once => true do | |
servers = find_servers_for_task(current_task) | |
puts "SERVERSSSSSSS......>>>>>>>> #{servers}" | |
servers.each do |server| | |
port = 22 | |
Array(fetch(:sync_directories, [])).each do |syncdir| | |
destination, base = Pathname.new(syncdir).split |
View gist:5969665
#CONFIG TERMINAL | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
#sets up the prompt color (currently a green similar to linux terminal) | |
#enables color for iTerm | |
export TERM=xterm-color | |
export EC2_HOME=/Users/lsmolic/.ec2 | |
export EC2_PRIVATE_KEY=`ls $EC2_HOME/pk-*.pem` | |
export EC2_CERT=`ls $EC2_HOME/cert-*.pem` | |
#export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_21.jdk/Contents/Home |
View gist:5690893
class YourBody { | |
boolean is_moving = false; | |
String[] known_actions = { “Forward”, “Backward”, “Left”, “Right” }; | |
boolean validRequest( String this_action ){ | |
for ( int i = 0; i < known_actions.length; i++) | |
{ | |
if ( known_actions[i] == this_action ) | |
{ | |
return true; |
NewerOlder