Entries from 2016-07-01 to 1 month

Swift PlaygroundからAlamofireや他のライブラリをimportして使う

Playground上でAlamofireなど、その他ライブラリをimportして開発したいと思ったのでその時の作業ログ。Xocdeでの作業はどうしてもBuiid時間で待たされるので、Playground上からUIを確認しながら開発できると便利そう。 環境 Xcode Version 7.3.1 (7D1014) …

css transition サンプル

CSS

css transition のサンプルを作ってみる github.com @mixin border-animation($dimension, $easing ,$pipe ) { transition: $transition_duration $dimension $easing border-pipeline($transition_duration, $pipe); -web-kit-transition: $transition_dura…

Go unit test サンプル

Go

Goでunit testを実行する場合の簡単なサンプルを作成してみる。 github.com dog.go package model type Dog struct { Name string Age int8 } func NewDog(name string, age int8) *Dog { return &Dog{Name: name, Age:age} } dog_test.go package model imp…

Go Channels サンプル

Go

The Go Playground package main import "fmt" func main() { messages1 := make(chan string) messages2 := make(chan string) messages3 := make(chan string) go func() { messages1 <- "ping1" }() go func() { messages2 <- "ping2" }() go func() { me…

Goroutine サンプル

Go

Goroutineのサンプルを作ってみる。 まずは、簡単なところから、 github.com The Go Playground package main import "fmt" func f(from string) { for i := 0; i < 3; i++ { fmt.Println(from, ":", i) } } func main() { f("direct") go f("goroutine1") g…

material-design-lite-sandbox

material-designのサンプルを作成してみる。 しかし、最近なぜかフロント側の作業ばかりしているな。 github.com

BigQueryのQueryサンプル

google BigQueryのQueryサンプルを作成してみる。 統計用のQueryは使いがってが良さそう。 今作っている処理もまだまだ効率化ができそう。 Query Reference Query Reference | BigQuery | Google Cloud Platform Google BigQuery クエリーリファレンス Googl…

HATEBU CSS

CSS

このblogのcssを少しだけ修正、気が向いたらまた修正しよう。 fontはgithubと同じにする。 Gistにした。 gist.github.com

swift-realm-sandbox

realm.io github.com まずは、簡単にデータをinsertするサンプル。 func testInsert1() { let myDog = DogModel() myDog.name = "Muck" } func testInsert2() { _ = DogModel(value: ["name" : "Pluto", "age": 3]) } func testInsert3() { _ = DogModel(val…

animate.cssを試してみる

Animate.css github.com アニメーションの状態を制御したい場合は、 直接cssを追加するのがいい様子、fadeInの時間を変更してみる。 @-webkit-keyframes fadeInDuration3 { from { opacity: 0; } to { opacity: 0.9; }}@keyframes fadeInDuration3 { from { …

Scrollable-GraphViewを試してみる

swiftで滑らかなグラフが作成できるScrollable-GraphViewを試してみる。 Barチャートの作成は以下のようなコードで可能。 private func createDarkGraph(frame: CGRect) -> ScrollableGraphView { let graphView = ScrollableGraphView(frame: frame) graphV…

anime.jsを試してみる

anime.jsを試したみたかったので、サンプルを作成してみる。 個別の動きを把握したかったのでリスト形式のサンプルを作成してみた。今のままだとjQueryとたいしてかわらないのでもうすこし動きを加えたサンプルをついたしていこうとおもう。 調整次第で、面…