Skip to content

Instantly share code, notes, and snippets.

@gawaooooo
gawaooooo / AppDelegate.swift
Last active August 29, 2015 14:17
iOSでおみくじを作る swift版
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window?.backgroundColor = UIColor.whiteColor()
self.window?.rootViewController = ViewController()
self.window?.makeKeyAndVisible()
return true
}
@gawaooooo
gawaooooo / AppDelegate.swift
Created March 29, 2015 15:10
iOSで姓名診断アプリを作る swift版
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
var myNavigaionController: UINavigationController?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
@gawaooooo
gawaooooo / 0_reuse_code.js
Last active January 22, 2016 16:30
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
@gawaooooo
gawaooooo / config.fish
Created January 14, 2019 09:47
config fish
# git alias
balias g git
# NVM
set -gx nvm_prefix /usr/local/opt/nvm
# GO
# set the workspace path
set -x GOPATH $HOME/go
# add the go bin path to be able to execute our programs
@gawaooooo
gawaooooo / .editorconfig
Created March 20, 2019 03:22
editorconfig
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
max_line_length = 120