Skip to content

Instantly share code, notes, and snippets.

View takuoka's full-sized avatar
Let's Rock

Takuya Okamoto takuoka

Let's Rock
View GitHub Profile
@takuoka
takuoka / file0.txt
Created June 13, 2013 14:34
URLから特定のパラメータの値をとりだす ref: http://qiita.com/items/b4b0f361863c6d578ea6
slicePalamValue = function(url, key){
return url.split(key+"=")[1].split("&")[0];
}
var url = http://aaaaaaaaa.com/code=ABCDEFG
console.log(slicePalamValue(url,"code")); //ABCDEFG
@takuoka
takuoka / file0.swift
Last active December 16, 2015 09:34
[iOS8~]セルの高さ可変UITableView(コードベース) ref: http://qiita.com/taku_oka/items/c3f9281c4a0c56218c2e
tableView.estimatedRowHeight = 464//だいたいの高さの見積もり?
tableView.rowHeight = UITableViewAutomaticDimension
@takuoka
takuoka / file0.txt
Created January 5, 2013 07:20
Mongooseで、日付順で投稿を取り出す。(node.js) ref: http://qiita.com/items/9ecee35dad1c61bdf1ac
Post.find({}).sort('-created').execFind( function(err, items){
console.log( err );
res.render('index.jade', { title: title, posts: items });
});
import UIKit
import CollectionViewWaterfallLayout
class WaterfallCollectionViewController: UIViewController, UICollectionViewDataSource, CollectionViewWaterfallLayoutDelegate {
var collectionView: UICollectionView!
init () {
@takuoka
takuoka / file0.txt
Last active August 29, 2015 14:26
Elixirのデータ構造的なやつまとめ ref: http://qiita.com/taku_oka/items/083aa97f17a7e552d74b
iex> [a: a] = [a: 1]
[a: 1]
iex> a
1
iex> [a: a] = [a: 1, b: 2]
** (MatchError) no match of right hand side value: [a: 1, b: 2]
iex> [b: b, a: a] = [a: 1, b: 2]
** (MatchError) no match of right hand side value: [a: 1, b: 2]
@takuoka
takuoka / file0.txt
Last active August 29, 2015 14:24
[CocoaPods]実機起動時の「Symbol not found」エラーでクソ詰まった ref: http://qiita.com/taku_oka/items/9162e02d51bd73bbcdad
dyld: Symbol not found: __TWPCSo7NSError13BrightFutures9ErrorTypeS0_
Referenced from: /private/var/mobile/Containers/Bundle/Application/E5242F00-6D45-4101-964C-6D42B2CDDA87/APlayerViewController.app/APlayerViewController
Expected in: /private/var/mobile/Containers/Bundle/Application/E5242F00-6D45-4101-964C-6D42B2CDDA87/APlayerViewController.app/Frameworks/BrightFutures.framework/BrightFutures
in /private/var/mobile/Containers/Bundle/Application/E5242F00-6D45-4101-964C-6D42B2CDDA87/APlayerViewController.app/APlayerViewController
(lldb)