Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View omimo's full-sized avatar

Omid Alemi omimo

View GitHub Profile
@omimo
omimo / arxiv2kindle.ipynb
Created September 20, 2019 18:11 — forked from bshillingford/arxiv2kindle.ipynb
arxiv2kindle: recompiles an arxiv paper for kindle-sized screens, and sends it to your wifi-enabled kindle
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
function [ ] = ipimat_to_imgs( filename, out_folder, prefix, w, h, thres )
%IPIMAT_TO_IMGS Summary of this function goes here
% Detailed explanation goes here
input = load(filename);
mkdir(out_folder);
for f=1:length(input.DepthFrame)
gistup
@omimo
omimo / index.html
Last active December 17, 2017 11:43
<html>
<head>
<title>
[Visualizing Movement Data with D3.js]
</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://omid.al/Mova-Viz/MovaViz-v0.1.1.js"></script>
<style>
* {
@omimo
omimo / resample_series.py
Created February 13, 2017 05:28
Resample and merge multiple time series with Pandas
# Resample time series
# Omid (Feb 2017)
import pandas as pd
import numpy as np
FILENAME_A = '2015_27_11-12_7_15---improv#1@acc+antonio+right.txt'
FILENAME_B = '2015_27_11-12_7_15---improv#1@acc+bevin+right.txt'
FILENAME_V = '2015_27_11-12_7_15---improv#1@acc+vanessa+right.txt'
@omimo
omimo / create_hellotensor.py
Last active September 26, 2023 08:37
A simple example for saving a tensorflow model and preparing it for using on Android
# Create a simple TF Graph
# By Omid Alemi - Jan 2017
# Works with TF <r1.0
import tensorflow as tf
I = tf.placeholder(tf.float32, shape=[None,3], name='I') # input
W = tf.Variable(tf.zeros_initializer(shape=[3,2]), dtype=tf.float32, name='W') # weights
b = tf.Variable(tf.zeros_initializer(shape=[2]), dtype=tf.float32, name='b') # biases
O = tf.nn.relu(tf.matmul(I, W) + b, name='O') # activation / output
@omimo
omimo / cmd.tex
Created January 25, 2017 21:38
Circled numbers in latex
%% Circle
% from http://tex.stackexchange.com/questions/7032/good-way-to-make-textcircled-numbers/91070
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=0.8pt] (char) {#1};}}
@omimo
omimo / index.html
Last active October 18, 2018 01:06
<html>
<head>
<title>
[Visualizing Movement Data with D3.js]
</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://omid.al/Mova-Viz/MovaViz-v0.1.2.js"></script>
<style>
* {
box-sizing: border-box
@omimo
omimo / index.html
Last active March 30, 2017 10:37
Basic Effort Actions - Entangled & Colored
<html>
<head>
<title>
[Visualizing Movement Data with D3.js]
</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="mviz.js"></script>
<style>
* {
box-sizing: border-box
@omimo
omimo / index.html
Last active March 2, 2020 05:35
Basic Effort Actions - Entangled
<html>
<head>
<title>
[Visualizing Movement Data with D3.js]
</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="mviz.js"></script>
<style>
* {
box-sizing: border-box