start new:
tmux
start new with session name:
tmux new -s myname
| set nocompatible | |
| syntax on | |
| filetype on | |
| filetype plugin on | |
| filetype indent on | |
| set sidescroll=1 | |
| set sidescrolloff=3 |
| // Main containers | |
| .container | |
| @include outer-container | |
| // Rows | |
| .row | |
| @include row() | |
| // A basic column without a defined width or height |
| var gulp = require('gulp'); | |
| var clean = require('gulp-clean'); | |
| var gutil = require('gulp-util'); | |
| var coffee = require('gulp-coffee'); | |
| var sass = require('gulp-ruby-sass'); | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| gulp.task('fonts', function() { | |
| return gulp.src(['bower_components/font-awesome/fonts/fontawesome-webfont.*']) |
| /** | |
| * For removing inline CSS from body fields in Drupal. | |
| * | |
| * -Install devel module. | |
| * -Navigate to devel/php. | |
| * -Paste the following code and execute. | |
| */ | |
| $results = db_select('field_data_body', 'f') | |
| ->fields('f', array('entity_id', 'body_value')) |
| #!/bin/bash | |
| # Add Vagrant's hostupdater commands to sudoers, for `vagrant up` without a password | |
| # force sudo on self. | |
| if [ $( id -u ) -ne 0 ]; then | |
| exec sudo -p "Login password for %p: " "$0" "$@" | |
| exit $? | |
| fi | |
| # Stage updated sudoers in a temporary file for syntax checking |
| # new drupal vagrant install | |
| # A function, when added to bash profile, clones the Vagrant Drupal-Dev-VM (https://github.com/geerlingguy/drupal-dev-vm), | |
| # augments config (based on d7 or d8), renames the VM to something other than drupaltest.dev and starts vagrant up. Uses | |
| # include <newd 7 my-drupal-site> and <newd 8 my-other-drupal-site>. | |
| function newd { | |
| if [ $2 == ]; then | |
| echo 'USAGE: newd8 <version> <sitename>' |
Run natively Unreal Tournament Game Of The Year (GOTY) on Debian system.
UT is not dead! The install process is a bit cumbersome but the game has been published more than 20 years ago! Please let me know how it went for you and if you have any tips, please share :)
And most important, have fun!
(Tested on Debian Bullseye 64bits)