Having trouble installing the latest stable version of tmux?
I know, official package for your OS/distro is outdated and you just want the newest version of tmux.
Well, this script should save you some time with that.
- gcc
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
| package | |
| { | |
| import net.flashpunk.Entity; | |
| import net.flashpunk.Sfx; | |
| import net.flashpunk.tweens.misc.ColorTween; | |
| import net.flashpunk.tweens.misc.VarTween; | |
| import net.flashpunk.graphics.Image; | |
| import flash.filters.GlowFilter; | |
| import flash.display.BitmapData; | |
| import flash.geom.Rectangle; |
| package { | |
| import flash.display.Bitmap; | |
| import flash.display.BitmapData; | |
| import flash.display.Sprite; | |
| import flash.display.StageAlign; | |
| import flash.display.StageQuality; | |
| import flash.display.StageScaleMode; | |
| import flash.geom.Point; | |
| import flash.geom.Rectangle; | |
| import flash.events.Event; |
Having trouble installing the latest stable version of tmux?
I know, official package for your OS/distro is outdated and you just want the newest version of tmux.
Well, this script should save you some time with that.
| /** ********************************************************* | |
| * API - Model - User | |
| ********************************************************* */ | |
| module.exports = function (sequelize, DataTypes) { | |
| return sequelize.define('User', { | |
| username: DataTypes.STRING, | |
| password: DataTypes.STRING, | |
| firstName: DataTypes.STRING, | |
| lastName: DataTypes.STRING, |
| /** | |
| * IE 5.5+, Firefox, Opera, Chrome, Safari XHR object | |
| * | |
| * @param string url | |
| * @param object callback | |
| * @param mixed data | |
| * @param null x | |
| */ | |
| function ajax(url, callback, data, x) { | |
| try { |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: gogs | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Git repository manager Gogs | |
| # Description: Starts and stops the self-hosted git repository manager Gogs | |
| ### END INIT INFO |
| // ************** Instructions for connecting to the LiveCoding chatrooms from a 3rd party application. **************** | |
| Step 1a (Ubuntu/ any OS with aptitude (aka apt-get)) : | |
| sudo apt-add-repository ppa:rsrchboy/profanity && sudo apt-get update | |
| apt-get install profanity | |
| -- | |
| Step 1b (OSX w/ homebrew): | |
| $ brew install profanity | |
| -------- |