Skip to content

Instantly share code, notes, and snippets.

View naokits's full-sized avatar

nao naokits

  • Individual Application Developer
View GitHub Profile
@naokits
naokits / first-time-setup-ja.txt
Created September 2, 2020 12:36
First Time Setup - Social Mining(日本語訳)
NEMHubで翻訳募集が出ていたので、ソーシャルマイニングの翻訳をしました。
翻訳対象
First Time Setup - Social Mining
https://social-mining.gitbook.io/social-mining/getting-started-1/first-time-setup
--- ここから
初回設定
@naokits
naokits / file0.txt
Last active June 22, 2016 11:49
IBM Swift Sandboxでサードパーティのパッケージを使用する簡単な方法 ref: http://qiita.com/naokits/items/ff34d0ab0c7962828eef
├── .swift-version
├── Package.swift
└── Sources
└── main.swift
@naokits
naokits / file0.swift
Created February 11, 2016 20:43
NCMBObjectはサブクラス化して使おう! ref: http://qiita.com/naokits/items/db6dfd0eddcf5a38f1dc
func addLocation() {
// ...サブクラス化した場合と同じなので省略
let location = NCMBObject(className: "Location")
location.setObject(geoPoint, forKey: "geoPoint")
location.setObject("新宿駅", forKey: "name")
// ...サブクラス化した場合と同じなので省略
}
@naokits
naokits / file0.swift
Last active January 12, 2016 17:18
SSIDを取得するにはアップルの許可が必要になった!? ref: http://qiita.com/naokits/items/aa16e1553880c7ddbfbf
@available(iOS, introduced=4.1, deprecated=9.0, message="For captive network applications, this has been completely replaced by <NetworkExtension/NEHotspotHelper.h>. For other applications, there is no direct replacement. Please file a bug describing your use of this API to that we can consider your requirements as this situation evolves.")
public func CNCopySupportedInterfaces() -> CFArray?
@naokits
naokits / iOSのApp Extension を利用したキーボードの高さ調整.md
Created January 9, 2016 23:33
2016/1/10 iOSのApp Extensionを利用したキーボードの高さ調整

iOSのApp Extension を利用したキーボード(カスタムキーボード)で高さを調整する

//前もって高さを設定
pHeight=400

//以下の関数をオーバーライド
override func viewDidAppear(animated: Bool) {
    super.viewDidAppear(animated)
@naokits
naokits / excel_column_exchange.swift
Created November 29, 2014 12:56
エクセルのカラムを、数字 -> アルファベット、 アルファベット -> 数字 に変換するユーティリティ
#!/usr/bin/env xcrun swift
//
// エクセルのカラムを、数字 -> アルファベット、 アルファベット -> 数字 に変換するユーティリティ
//
// Created by Naoki Tsutsui on 2014/11/29.
// Copyright (c) 2014 Naoki Tsutsui All rights reserved.
//
import Foundation
@naokits
naokits / 0_reuse_code.js
Last active August 29, 2015 14:09
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@naokits
naokits / rails_app_template.log.txt
Created November 6, 2014 08:38
Railsアプリテンプレートの実行結果
application_templates% ./redrose_bootstrap.sh
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/javascripts/application.js
create app/assets/stylesheets/application.css
@naokits
naokits / ipa_generator.sh
Last active March 17, 2016 11:23
Xcodeプロジェクトをビルドし、IPAファイルを生成して、DeployGateにアップロードするだけのスクリプト。
#!/bin/sh
#SDK
SDK="iphoneos"
CONFIGURATION="AdHocDev"
# Xcode Workspace path
WORKSPACE_FILE_PATH=$(cd $(dirname $0); pwd)/"hoge.xcworkspace"
SCHEME="hoge-dev"
# Target Name
TARGET_NAME="hoge"