As configured in my dotfiles.
start new:
tmux
start new with session name:
| // JS Module Pattern: | |
| // http://j.mp/module-pattern | |
| // Redefine: $, window, document, undefined. | |
| var APP = (function($, window, document, undefined) { | |
| // Automatically calls all functions in APP.init | |
| $(document).ready(function() { | |
| APP.go(); | |
| }); |
| # Latex files | |
| *.aux | |
| *.glo | |
| *.idx | |
| *.log | |
| *.toc | |
| *.ist | |
| *.acn | |
| *.acr |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # | |
| # -------------------------------------------------------------------- | |
| # This is a free shell script under GNU GPL version 3.0 or above | |
| # Copyright (C) 2005 ReFlectiv project. | |
| # Feedback/comment/suggestions : http://www.reflectiv.net/ | |
| # ------------------------------------------------------------------------- | |
| # | |
| # This script automatically set up a new *Debian* server (IMPORTANT : Debian!), by doing these actions : | |
| # |
| var fn = function(arg1, arg2) { | |
| var str = '<p>aap ' + this.noot + ' ' + arg1 + ' ' + arg2 + '</p>'; | |
| document.body.innerHTML += str; | |
| }; | |
| var context = { | |
| 'noot': 'noot' | |
| }; | |
| var args = ['mies', 'wim']; | |
| // Calls a function with a given 'this' value and arguments provided individually. |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| var selector = 'img' // Replace this with the selector for the element you want to make transformable | |
| jQuery.getScript('//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js', function() { | |
| jQuery.getScript('//cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js', function() { | |
| (function() { | |
| var $, applyTransform, getTransform, makeTransformable; | |
| $ = jQuery; |
Have tested these instructions successfully under Ubuntu 16.04LTS and 14.04LTS.
Devices > CD/DVD 1 > Connect Image..../Applications/Parallels Desktop/Contents/Resources/Tools/prl-tools-lin.iso.This regular expression is designed to work with character-delimited strings, and provides a means to specify the index of delimiter occurrence at which content is extracted.
CHARACTER_PATTERN - Delimiter character pattern to search for within target string.INDEX - Zero-based index specifying the nth occurrence of CHARACTER_PATTERN at which content is to be extracted, up to nth + 1 occurrence.