Skip to content

Instantly share code, notes, and snippets.

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";
<?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>
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
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
//
// main.c
// NumberPyramid
//
// Created by jamie on 12/10/18.
// Copyright (c) 2012年 jamie. All rights reserved.
//
#include <stdio.h>
$ 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
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]
@jamessa
jamessa / gist:5145169
Created March 12, 2013 17:46
// // main.c // 975485 // // Created by jamie on 3/12/13. // Copyright (c) 2013 jamie. All rights reserved. //
#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;
# 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
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]