Skip to content

Instantly share code, notes, and snippets.

View ryosism's full-sized avatar
🙂
🦜

ryosism ryosism

🙂
🦜
View GitHub Profile
@ryosism
ryosism / visualize_opticalFlow.py
Created March 6, 2018 07:12
オプティカルフロー形式のファイル(.flo)を.pngに変換するスクリプト
# Python 2/3 compatibility
from __future__ import print_function
# modded by ryosism
# sys.argv[1] : input .flo file
# sys.argv[2] : output .png file
import cv2 as cv
import numpy as np
import sys
@ryosism
ryosism / result.log
Created December 12, 2017 15:42
poloSimulator.pyの結果(第1回と2回)
imac2017:poloniex Sobue$ python getclose.py
------------------------------------------------------------
2017/12/9/ 20:53:0
トレンド変化なし
BTC/USDT = 14749.99999969 (-0.6065%) 利益 : 0 購入状態 : 0
------------------------------------------------------------
2017/12/9/ 20:54:0
トレンド変化なし
BTC/USDT = 14749.99999969 利益 : 0 購入状態 : 0
------------------------------------------------------------
@ryosism
ryosism / poloSimulator.py
Created December 12, 2017 14:58
仮想通貨取引所poloniexを使ったトレードシミュレーター(12月10日作成)
from time import sleep
from datetime import datetime, date, timezone, timedelta
import time
import poloniex
import pandas as pd
polo = poloniex.Poloniex()
above15minute = 0
above10minute = 0
@ryosism
ryosism / stdin.swift
Last active June 25, 2018 09:05
swiftの標準入力(競技用)
import Cocoa
// 標準入力で入力した行全体を取得、スペース区切りにして配列で返す
// String型の入力
func stdinStr(array:String?)->[String]{
let str: String = array!
let array = str.components(separatedBy:" ")//ここの" "を変更すると区切るワードを変えられる
return array
}
@ryosism
ryosism / q1.js
Created September 27, 2016 15:45
【Level.1】CTOからの挑戦状2016 2nd~GistURL回答~
// 手続き
function selectOptimumCombination(amount, myCoupons) {
var selectedCoupons = [0, 0, 0];
if(amount>1000){
while(myCoupons[0]>0){
if(amount<500) break;
amount=amount-500;
myCoupons[0]--;