View ViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// RxAutomatonDemo | |
// | |
// Created by Yasuhiro Inami on 2016-08-15. | |
// Copyright © 2016 Yasuhiro Inami. All rights reserved. | |
// | |
import UIKit | |
import RxSwift |
View bloc.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A { | |
Subject<int> _stateSubject; | |
Stream<int> _state; | |
Stream<int> get state { | |
return _state; | |
} | |
final Stream<DocumentSnapshot> _visitorCount = | |
Firestore.instance.document('ServerData/serverStatus').snapshots(); | |
A() { |
View rakefile.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rake' | |
NODE_PATH="./node_modules" | |
task :cleanReactCache do | |
sh "rm -rf $TMPDIR/react-*" | |
end | |
task :cleanWatchman do | |
sh "watchman watch-del-all" | |
end |
View bridgeSpy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import MessageQueue, { TO_JS } from 'react-native/Libraries/BatchedBridge/MessageQueue.js'; | |
const handleCallsToJS = (info) => { | |
// ... | |
}; | |
const handleCallsToNative = (info) => { | |
// ... | |
}; | |
const spyFunction = (info) => { |
View codepush trace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Detecting android app version: | |
Using the target binary version value "1.3.10" ... | |
Running "react-native bundle" command: | |
node node_modules/react-native/local-cli/cli.js bundle --assets-dest /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush --bundle-output /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush/index.android.bundle --dev false --entry-file index.android.js --platform android | |
bundle: start | |
bundle: finish | |
bundle: Writing bundle output to: /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush/index.android.bundle |
View codepush trace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Detecting android app version: | |
Using the target binary version value "1.3.10" ... | |
Running "react-native bundle" command: | |
node node_modules/react-native/local-cli/cli.js bundle --assets-dest /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush --bundle-output /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush/index.android.bundle --dev false --entry-file index.android.js --platform android | |
bundle: start | |
bundle: finish | |
bundle: Writing bundle output to: /var/folders/rq/_gpzs05x4pzg4d_ckvhr1mpr0000gn/T/CodePush/index.android.bundle |
View gist:a196b47faf82d2a370cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable color support of ls and also add handy aliases | |
alias pyweb='python -m SimpleHTTPServer' | |
## a quick way to get out of current directory ## | |
alias cd..='cd ..' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../..' | |
alias .....='cd ../../../..' |
View gist:31b09a73e3f42227b391
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate hyper; | |
use hyper::Client; | |
use hyper::header::HeaderFormat; | |
fn main() { | |
let mut client = Client::new(); | |
let mut res = client.head("http://example.org/") | |
.send().unwrap(); | |
println!("StatusCode: {}", res.status); |
View default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{stdenv, fetchgit}: | |
stdenv.mkDerivation { | |
name = "dlt-viewer-2.12.0"; | |
builder = ./builder.sh; | |
src = fetchgit { | |
url = "http://git.projects.genivi.org/dlt-viewer.git"; | |
rev = "v2.12.0"; | |
sha256 = "1hh8v0kcnipwrfz4d45d6pm5bzbm9wgbrdgg0ir2l7wyshbkff6i"; | |
}; |
View iorefs.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.IORef | |
import Data.Maybe (fromJust,isJust) | |
import Control.Monad | |
type Env = IORef [(String, IORef String)] | |
nullEnv :: IO Env | |
nullEnv = newIORef [] | |
sessionEnv :: IO Env |
NewerOlder