% Title % Name % Date
List
Lesson 1 SUMMARY | |
1. The cursor is moved using either the arrow keys or the hjkl keys. | |
h (left) j (down) k (up) l (right) | |
2. To start Vim from the shell prompt type: vim FILENAME <ENTER> | |
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes. | |
OR type: <ESC> :wq <ENTER> to save the changes. |
Running sibernetic inside a docker container (12/24/15) | |
At this moment portability is highly suspect since it's only been tested on a single computer. | |
So far only CPU enabled, but since test computer had a GPU the setup takes that into account. | |
Hardware Used: | |
Intel(R) Core(TM) i5-4690K CPU @ 3.50GHz | |
Nvidia geforce 960 gtx | |
16 GiB RAM | |
1) Pull the openworm docker image |
local alert = require("hs.alert") | |
local timer = require("hs.timer") | |
local eventtap = require("hs.eventtap") | |
local events = eventtap.event.types | |
local module = {} | |
-- Save this in your Hammerspoon configuration directiorn (~/.hammerspoon/) | |
-- You either override timeFrame and action here or after including this file from another, e.g. |
friedman.test.with.post.hoc <- function(data, alpha = 0.05) | |
{ | |
print("Check if you missing the packages 'graph' and 'Rgraphviz'. Try to install them using bioconductor") | |
#source("http://bioconductor.org/biocLite.R") | |
#biocLite(c("graph","Rgraphviz")) | |
# Loading needed packages | |
if(!require(ggplot2)) | |
{ |
'Update or create a stack given a name and template + params' | |
from __future__ import division, print_function, unicode_literals | |
from datetime import datetime | |
import logging | |
import json | |
import sys | |
import boto3 | |
import botocore |
https://github.com/rg3/youtube-dl/
apt-get install libav-tools ffmpeg # Linux (either one of either should do) brew install ffmpeg # OSX choco install ffmpeg # Windows
# References | |
# OhMyZsh: https://github.com/robbyrussell/oh-my-zsh | |
# Powerlevel9k: https://github.com/bhilburn/powerlevel9k | |
# Powerline fonts: https://github.com/powerline/fonts | |
# Awesome Terminal Fonts: https://github.com/gabrielelana/awesome-terminal-fonts | |
# ZSH Syntax Highlighting: https://github.com/zsh-users/zsh-syntax-highlighting | |
# | |
# For more plugins search this repo: https://github.com/unixorn/awesome-zsh-plugins | |
# 256 color mode |
# memory footprint support libraries/code | |
!ln -sf /opt/bin/nvidia-smi /usr/bin/nvidia-smi | |
!pip install gputil | |
!pip install psutil | |
!pip install humanize | |
import psutil | |
import humanize | |
import os | |
import GPUtil as GPU |
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |