- Scott Chacon on the Interwebs(リンク切れ)
- Scott Chacon on the Interwebs
- GitHub Flow - The best way to use Git and GitHub
31 Aug 2011
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
説明するのめんどい http://vividcode.hatenablog.com/entry/twitter-oauth-vulnerability
とりあえず即座に攻撃できるような状態ではなくなっています。
-- Initial ttt.cabal generated by cabal init. For further documentation, | |
-- see http://haskell.org/cabal/users-guide/ | |
name: ttt | |
version: 0.1.0.0 | |
-- synopsis: | |
-- description: | |
license: GPL-3 | |
-- license-file: LICENSE | |
author: lmdexpr |
osascript -e 'tell application "iOS Simulator" to quit' | |
osascript -e 'tell application "Simulator" to quit' | |
xcrun simctl erase all |
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ
以下転載:
import Foundation | |
let aName = Notification.Name(rawValue: "a") | |
struct Struct { let id: Int } | |
extension Struct: Equatable { | |
public static func ==(lhs: Struct, rhs: Struct) -> Bool { | |
return lhs.id == rhs.id | |
} | |
} |
If anybody stumbles across this from Google, I found that the simplest thing to do was:
Have devs install rbenv
on their machines, and add ~/.rbenv/shims
to the PATH in the XCode build script like:
export PATH=~/.rbenv/shims:$PATH
# Exec rest of your script
# ...