Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
// ==UserScript== | |
// @name why github? | |
// @namespace http://brunomessias.com | |
// @include http://github.com/* | |
// @include https://github.com/* | |
// @include https://gist.github.com/* | |
// @version 1.0 | |
// @description Removes the dark menubar from GitHub. | |
// @author devmessias | |
// @grant none |
var stateReveal = JSON.parse(window.localStorage.getItem("state")); | |
if (stateReveal != null){ | |
Reveal.navigateTo(stateReveal.indexh, stateReveal.indexv) | |
} | |
window.onbeforeunload = function(e){ | |
window.localStorage.setItem("state", JSON.stringify(Reveal.getState())) | |
}; |
function fish_prompt --description 'Write out the prompt' | |
set laststatus $status | |
function _git_branch_name | |
echo (git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||') | |
end | |
function _is_git_dirty | |
echo (git status -s --ignore-submodules=dirty ^/dev/null) | |
end | |
if [ (_git_branch_name) ] | |
set -l git_branch (set_color -o blue)(_git_branch_name) |
from queue import Queue | |
import queue | |
from threading import Thread | |
import numpy as np | |
import time | |
import vtk | |
import threading | |
queue_of_functions = Queue() |