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
| diff --git a/wammer.xcodeproj/project.pbxproj b/wammer.xcodeproj/project.pbxproj | |
| index ba75ffe..a1baf0a 100644 | |
| --- a/wammer.xcodeproj/project.pbxproj | |
| +++ b/wammer.xcodeproj/project.pbxproj | |
| @@ -4870,6 +4870,7 @@ | |
| ALWAYS_SEARCH_USER_PATHS = YES; | |
| ARCHS = "$(ARCHS_STANDARD_32_BIT)"; | |
| CLANG_ENABLE_OBJC_ARC = YES; | |
| + CLANG_WARN_EMPTY_BODY = YES; | |
| CODE_SIGN_IDENTITY = "iPhone Developer"; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>keywords</key> | |
| <array> | |
| <dict> | |
| <key>modelId</key> | |
| <integer>3</integer> | |
| <key>name</key> |
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
| cp /Applications/Line.app/Contents/Resources/skin/mac/images/tray/tray_icon_offline.ico /Applications/Line.app/Contents/Resources/skin/mac/images/tray/tray_icon_online.ico |
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
| jamie at Mark-II-Double in ~/Developer/Stream (develop●) | |
| $ git ls-remote --heads | awk '/^(.*)(\s+)(.*[a-z])$/ {print ":" $2}' | |
| :refs/heads/big-feature/UI-tuning-for-asset-thumbnails | |
| :refs/heads/big-feature/account-switch-bug-fix | |
| :refs/heads/big-feature/attachment-upload-features | |
| :refs/heads/big-feature/auto-import-photo-switch | |
| :refs/heads/big-feature/background-download-fix | |
| :refs/heads/big-feature/bug-fix | |
| :refs/heads/big-feature/bug-fixes |
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> |
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
| 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
| #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
| # 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
| 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] |