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
syntax on | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' " file list | |
Plug 'majutsushi/tagbar' " show tags in a bar (functions etc) for easy browsing | |
Plug 'vim-airline/vim-airline' " make statusline awesome | |
Plug 'vim-airline/vim-airline-themes' " themes for statusline | |
Plug 'jonathanfilip/vim-lucius' " nice white colortheme | |
Plug 'davidhalter/jedi-vim' " jedi for python |
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
"""Simple example on how to log scalars and images to tensorboard without tensor ops. | |
License: BSD License 2.0 | |
""" | |
__author__ = "Michael Gygli" | |
import tensorflow as tf | |
from StringIO import StringIO | |
import matplotlib.pyplot as plt | |
import numpy as np |
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
<div class="progress" style="border: 1px solid #999"> | |
<div id="progress-bar" style="border-right: ; background-color: #96f; height: 10px; width: 0%"></div> | |
</div> | |
<div id="countdown"></div> | |
<script type="text/javascript"> | |
function getDaysRemaining(endtime){ | |
var t = Date.parse(endtime) - Date.parse(new Date()); | |
var days = Math.floor( t/(1000*60*60*24) ); | |
return days; |