Skip to content

Instantly share code, notes, and snippets.

View ecoopnet's full-sized avatar

M.Inomata ecoopnet

View GitHub Profile
import Foundation
extension CGPoint {
// CGPoint -> Point<Double> に変換
func toPoint() -> Point<Double> {
return Point<Double>(x: Double(x), y: Double(y))
}
}
extension CGSize {
@ecoopnet
ecoopnet / GeneratorSequence.py
Last active September 7, 2018 09:45
Deep Learning Tools (mainly for keras)
from keras.utils import Sequence
import threading
class GeneratorSequence(Sequence):
'''
Convert generator to keras.utils.Sequence
Usage:
length = 100000 # ,length of dataset. If generator is countable, it can be `length = len(generator)`.
train_generator = train_dataset.generate( ... ) # create uncountable generator.
validate_generator = validate_dataset.generate( ... ) # create uncountable generator.
@ecoopnet
ecoopnet / mpeg2gif
Last active December 23, 2021 10:02
#!/bin/sh
# Convert mp4 video to animation GIF.
# Requirement: ffmpeg
if [ -z "$1" ]; then
(
echo "Usage: $(basename $0) video-file.mp4 [extra-options]
Convert mp4 video to animation GIF.
i.e: if ~/Downloads/video-file.mp4 was passed, ~/Downloads/video-file.gif was generated.
@ecoopnet
ecoopnet / generate-drawables-from-xxhdpi.sh
Last active May 16, 2017 13:08
Android の drawable-xxhdpi から drawable-hdpi, drawable-xhdpiに自動で画像作成します。
#!/bin/sh
# Android の drawable-xxhdpi から drawable-hdpi, drawable-xhdpiに自動で画像作成するスクリプトです。
# Android プロジェクト直下で動きます。
# app/src/main/res/drawable-xxhdpi フォルダを検索し、 drawable-xhdpi, drawable-hdpi に変換します。
# また、このスクリプトを動作させるにはImageMagickが必要です。
(
resDir=app/src/main/res
@ecoopnet
ecoopnet / logarithms-value-interpolation.swift
Last active May 1, 2017 11:09
interval秒の間、時間をかけてfrom から toに移動するサンプル。①0から遷移 ②0に遷移 ③それ以外の遷移で遷移パターンを変えています。
//: Playground - noun: a place where people can play
import Foundation
///
class ValueCalculator{
let INCREASE_ZERO_INTERVAL:TimeInterval = 12.0
let DECREASE_ZERO_INTERVAL:TimeInterval = 13.0
let DEFAULT_INTERVAL:TimeInterval = 3.0
let interval:TimeInterval
/**
* Google ドキュメントのフォームから投稿があったら確認メールを自動返信する(日本語版)
* English version will be available later.
*
* @author Masunaga Ray ( http://www.msng.info/ )
* @instruction http://www.msng.info/archives/2012/04/google-docs-auto-reply.php
*/
function sendConfirmation() {
try {
var ss = SpreadsheetApp.getActiveSpreadsheet();