Skip to content

Instantly share code, notes, and snippets.

View ozw-sei's full-sized avatar

Seijiro Ozawa ozw-sei

View GitHub Profile
@shinyaohira
shinyaohira / View Controller Programming Guide for iOS.md
Last active July 19, 2023 13:23
iOS View Controllerプログラミングガイド

storyboard上で、initial view controllerから他のview controllerに対してrelationshipを確立します。同様に、それらのview controllerから他のview controllerにrelationshipを確立します。最終的に、storyboard上のほとんど、あるいは全てのview controllerを一つのグラフに接続します。接続されたview controllerが、iOSによっていつインスタンス化されるかは、relationshipのタイプによって決まります。

@shinyaohira
shinyaohira / AFNetworking.md
Last active June 29, 2020 18:32
AFNetworking

ネットワークを扱うフレームワークを新規に作る必要はない。 このフレームワークは非常に多くのアプリで検証されており、必要な機能のほとんどを含んでいる。

ターゲットOSとAFNetworkingの対応

@d3m3vilurr
d3m3vilurr / feedly_api.md
Last active March 22, 2025 21:12
Unofficial Feedly API Document

IDs

  • user_id - user/:uid
  • feed_id - feed/:feed_uri
  • category_id - :user_id/category/:category (special category: global.all, global.uncategorized)
  • tag_id - :user_id/tag/:tag (special tag: global.saved)

APIs

http://cloud.feedly.com/:version/:api

@j5ik2o
j5ik2o / gist:5660744
Last active November 18, 2021 11:04
Scala 2.10 & SBT & JRebel & IntelliJ IDEAの環境構築方法

できること

  • JRebelを利用すると、アプリケーションの再起動なしで実行中のアプリケーションに加えた変更を即座に反映することができます(ホットリローディング)。まるでPHPのようにサクサク書けるッ!
  • Scala開発者にはライセンスが$0で提供されます。Javaで利用する場合は購入してね☆彡

前提

以下がインストールされているものとする。

@krrrr38
krrrr38 / NaverImageExtractor.scala
Created May 15, 2013 02:41
Naverまとめの特定ページから元の画像を全て取得する
package com.krrrr38.net.naver
import scala.collection.JavaConversions._
import org.jsoup.Jsoup
import scalax.io.JavaConverters._
import scalax.file.Path
object NaverImageExtractor {
@voluntas
voluntas / vagrant.rst
Last active September 21, 2020 22:11
Vagrant コトハジメ
@mollifier
mollifier / zshrc_useful.sh
Last active November 24, 2024 10:20
少し凝った zshrc
# 少し凝った zshrc
# License : MIT
# http://mollifier.mit-license.org/
########################################
# 環境変数
export LANG=ja_JP.UTF-8
# 色を使用出来るようにする
@mollifier
mollifier / .zshrc
Last active August 16, 2020 09:51
シンプルな zshrc
# シンプルな zshrc
# License : MIT
# http://mollifier.mit-license.org/
# 環境変数
export LANG=ja_JP.UTF-8
# 補完機能を有効にする
autoload -Uz compinit
compinit
@daneko
daneko / build.sbt
Last active October 13, 2016 11:10
play2.x系Json周りメモ AngularJs + coffee + Play のためのメモ
// play-jsonをフツーのプロジェクトでも使いたいサンプル
name := "hello"
version := "1.0"
scalaVersion := "2.10.3"
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
@shishi
shishi / helm-for-document.el
Created December 18, 2012 11:02
Emacs 実践入門の anything-for-document が便利だったので helm 用に作りなおした!
;; helm-for-document
(require 'helm-elisp)
(setq helm-for-document-sources-info
(list
helm-c-source-info-emacs
helm-c-source-info-elisp
helm-c-source-info-gnus
helm-c-source-info-pages
helm-c-source-info-org
helm-c-source-info-cl))