LAMA - Paskaa https://www.youtube.com/watch?v=u9nYQPj2L1E
THE PAIN * Ambulance * KBD 1981 RIP CASSETTE https://www.youtube.com/watch?v=zRKsTOP68lE
Roger C Reale - Kill Me https://www.youtube.com/watch?v=TFiGOcVNnjQ
Niveau null Nazi
| use strict; | |
| use vars qw($VERSION %IRSSI); | |
| $VERSION = "2003120617"; | |
| %IRSSI = ( | |
| authors => "Stefan 'tommie' Tomanek", | |
| contact => "stefan\@pico.ruhr.de", | |
| name => "multipaste", | |
| description => "Helps pasting multiple lines to a channel", | |
| license => "GPLv2", |
| use strict; | |
| use vars qw($VERSION %IRSSI); | |
| $VERSION = "2003120617"; | |
| %IRSSI = ( | |
| authors => "Stefan 'tommie' Tomanek", | |
| contact => "stefan\@pico.ruhr.de", | |
| name => "multipaste", | |
| description => "Helps pasting multiple lines to a channel", | |
| license => "GPLv2", |
| .git/ | |
| autoload/ | |
| bundle/ | |
| colors/ | |
| my_snippets/ | |
| snipmate-snippets/ | |
| syntax/ | |
| .gitignore | |
| .gitmodules | |
| .netrwhist |
| call pathogen#infect() | |
| call pathogen#helptags() | |
| " General stuff | |
| set nocompatible | |
| syntax on | |
| filetype on | |
| filetype plugin on | |
| set ofu=syntaxcomplete#Complete |
| call pathogen#infect() | |
| call pathogen#helptags() | |
| " General stuff | |
| set nocompatible | |
| syntax on | |
| filetype on | |
| filetype plugin on | |
| set ofu=syntaxcomplete#Complete |
| " Press ? for help | |
| .. (up a dir) | |
| /Users/rocky/vim-settings/.vim/ | |
| ▸ bundle/ | |
| ▸ snippets/ | |
| ▸ spell/ |
| { | |
| // JSHint Default Configuration File (as on JSHint website) | |
| // Modified for describing Meteor.js convention | |
| // See http://jshint.com/docs/ for more details | |
| "maxerr" : 50, // {int} Maximum error before stopping | |
| // Enforcing | |
| "bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
| "camelcase" : true, // true: Identifiers must be in camelCase |
LAMA - Paskaa https://www.youtube.com/watch?v=u9nYQPj2L1E
THE PAIN * Ambulance * KBD 1981 RIP CASSETTE https://www.youtube.com/watch?v=zRKsTOP68lE
Roger C Reale - Kill Me https://www.youtube.com/watch?v=TFiGOcVNnjQ
Niveau null Nazi
| 1. close all applications | |
| 2. close all open workspaces | |
| 3. open x number of workspaces (from a .config file) | |
| 4. open browser with 3 tabs set (from a .config file) | |
| 5. move browser to 1st workspace & maximize window (not fullscreen) | |
| 6. open vim in project root (from a .config file or user input) | |
| 7. move vim to 2nd workspace & fullscreen | |
| 8. open iterm with 3 tabs | |
| 9. set 1st tab to current project root | |
| 10. set 2nd tab to current project root and run init cmd (from .config file) |
| // Define an HTTP request handler | |
| function requestHandler(request, response) { | |
| try { | |
| if ("setting" in request.query) { | |
| // 'setting' is a URL-encoded parameter, ie. '/setting=4' | |
| local settingValue = request.query.setting; | |
| // Use the 'response' object to acknowledge reception of the request | |
| // to the request's source. '200' is HTTP status code for 'OK' | |
| response.send(200, "Setting received and applied"); |