Skip to content

Instantly share code, notes, and snippets.

View hironytic's full-sized avatar

Hironori Ichimiya hironytic

  • Tokushima, Japan
  • 19:12 (UTC +09:00)
  • X @hironytic
View GitHub Profile
@hironytic
hironytic / iosdc2018_hiron_scenario.json
Created September 2, 2018 14:06
iOSDC Japan 2018のLT「全部iOSにしゃべらせちゃえ!」に使ったシナリオ。
{
"language": "ja-JP",
"rate": 0.5,
"pitch": 1.0,
"volume": 0.8,
"postDelay": 0.5,
"presets" : [
{
"text" : "準備できましたぁ"
},
@hironytic
hironytic / presentations.md
Last active January 19, 2025 10:14
ひろんの登壇資料
@hironytic
hironytic / iosdc2018_hiron_links.md
Last active September 9, 2018 06:27
iOSDC Japan 2018のLT「全部iOSにしゃべらせちゃえ!」のリンク集
@hironytic
hironytic / dict.swift
Created August 23, 2017 05:53
dict.swift
var d = [String: String?]()
var s: String? = nil
d["key"] = s // nil入る
print(d)
d["key"] = nil // 削除
print(d)
@hironytic
hironytic / 00_subscribeOn_observeOn.js
Last active December 13, 2015 15:14
subscribeOn() v.s. observeOn()
import Rx from "rx-lite-extras";
const observable1 = Rx.Observable.create(observer => {
console.log("[A] call onNext(1)");
observer.onNext(1);
console.log("[A] called onNext(1)");
console.log("[B] call onNext(2)");
observer.onNext(2);
console.log("[B] called onNext(2)");
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
@interface ObjCExp1Tests : XCTestCase
@end
@implementation ObjCExp1Tests
- (void)setUp {