start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Example of Singleton design pattern | |
# Copyright (C) 2011 Radek Pazdera | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
#!/bin/bash | |
apt-get update && | |
apt-get check && | |
apt-get upgrade -f && | |
apt-get dist-upgrade -f && | |
dpkg --configure -a && | |
apt-get autoclean && | |
apt-get autoremove -f && | |
aptitude purge '~c' |
Preliminary Updates and Installations
(http://markus.com/install-theano-on-aws/)
sudo apt-get update
sudo apt-get -y dist-upgrade
-- | |
-- open currently active Chrome tab with Safari | |
-- forked from https://gist.github.com/3151932 and https://gist.github.com/3153606 | |
-- | |
property theURL : "" | |
tell application "Safari" | |
set theURL to URL of front document | |
end tell | |
if appIsRunning("Google Chrome") then |