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
| Ld /Users/jsa/Library/Developer/Xcode/DerivedData/Q3D-dvfvobcznjbvgqdgsoqhvbzmjfvg/Build/Products/Debug-iphonesimulator/Q3D.app/Q3D normal i386 | |
| cd /Users/jsa/Developer/Insta3D_iOS | |
| export IPHONEOS_DEPLOYMENT_TARGET=7.0 | |
| export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/jsa/.rbenv/shims:/usr/local/bin:/Users/jsa/.rbenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/heroku/bin:/Users/jsa/Developer/go/bin:/Users/jsa/Developer/go_appengine:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/heroku/bin:/Users/jsa/Developer/go/bin:/Users/jsa/Developer/go_appengine" | |
| /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk -L/Users/jsa/Library/Developer/Xcode/DerivedDa |
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
| application: guestbook-go | |
| version: 1 | |
| runtime: go | |
| api_version: go1 | |
| handlers: | |
| - url: /.* | |
| script: _go_app | |
| login: required |
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
| # Ubuntu upstart file at /etc/init/memcached.conf | |
| description "memcached" | |
| author "Sa Jing Xian <[email protected]>" | |
| env MEMCACHED=/usr/bin/memcached | |
| start on runlevel [2345] | |
| stop on runlevel [06] |
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
| 1/15/14 10:19:28.388 AM com.apple.authd[29]: Sandbox denied authorizing right 'system.keychain.create.loginkc' by client '/Applications/Money.app' [3331] | |
| 1/15/14 10:19:28.391 AM Money[3331]: [WARNING] DropboxSDK: error setting stored credentials (-60005) | |
| 1/15/14 10:19:28.418 AM sandboxd[115]: ([3331]) Money(3331) deny authorization-right-obtain system.keychain.create.loginkc | |
| 1/15/14 10:19:29.012 AM Money[3331]: [WARNING] DropboxSDK: error making request to salt.ticdsync - (404) Path '/com.jumsoft.money3.sync/Encryption/salt.ticdsync' not found |
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
| Money(3331) deny authorization-right-obtain system.keychain.create.loginkc | |
| Process: Money [3331] | |
| Path: /Applications/Money.app/Contents/MacOS/Money | |
| Load Address: 0x10f9cc000 | |
| Identifier: com.jumsoft.money3 | |
| Version: j40421 ( 4.5.2) | |
| Code Type: x86_64 (Native) | |
| Parent Process: launchd [181] |
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
| # simple Game of Life in Julia | |
| function evolve(N::Int,grid,grid1) | |
| for x = 1:N; for y = 1:N | |
| n = 0 | |
| for dx = -2:0; for dy = -2:0 | |
| x1 = (x + dx + N) % N + 1 # periodic boundaries | |
| y1 = (y + dy + N) % N + 1 | |
| if grid[x1,y1]; n += 1; end | |
| end end | |
| if grid[x,y]; n -= 1; end |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define max(a,b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a > _b ? _a : _b; }) | |
| int main(int argc, const char * argv[]) | |
| { | |
| FILE *fp = fopen("A-large-practice.in", "r"); | |
| int number_of_cases; |
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
| pod search calendar | |
| -> CKCalendar (0.1.0) | |
| A sleek, easily customized calendar control for iOS. | |
| - Homepage: www.cozykozy.com | |
| - Source: https://github.com/jaykz52/CKCalendar.git | |
| - Versions: 0.1.0, 0.0.1 [master repo] | |
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
| $ git flow feature start AddToCollection jsa-feature/HouseKeeping | |
| Switched to a new branch 'jsa-feature/AddToCollection' | |
| Summary of actions: | |
| - A new branch 'jsa-feature/AddToCollection' was created, based on 'jsa-feature/HouseKeeping' | |
| - You are now on branch 'jsa-feature/AddToCollection' | |
| Now, start committing on your feature. When done, use: | |
| git flow feature finish AddToCollection |
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
| // | |
| // main.c | |
| // NumberPyramid | |
| // | |
| // Created by jamie on 12/10/18. | |
| // Copyright (c) 2012年 jamie. All rights reserved. | |
| // | |
| #include <stdio.h> |