- [ ] Beef Jerkey
- [ ] Doppelkekse
- [ ] Gummibärchen
- [ ] Waffeln
- [ ] AirPort Express
- [ ] Kopfhörer
- [ ] Ladegerät
- [ ] Laptop
| Lorem ipsum dolor sit amet, consectetur adi|piscing elit. | |
| ; jump from here --------------------------^ | |
| Lorem ipsum dolor sit amet, consectetur| adipiscing elit. | |
| ; to here -----------------------------^ |
| [alias] | |
| lol= 'log' '--oneline' '--graph' '--decorate' | |
| lg1 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative | |
| lg2 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit | |
| log= 'log' '--decorate' '--pretty=full' | |
| me = $GIT_AUTHOR_NAME | |
| lg = log --pretty=format:'%Cred%h%Creset - %Cgreen(%cr)%Creset%C(yellow)%d%Creset %s %C(bold blue)<%an>%Creset' --abbrev-commit --graph | |
| lg-me = !git lg --author=\"$GIT_AUTHOR_NAME\" | |
| today-all = !git lg --all --since='12am' | |
| lg-day = "!f() { git lg-me --all --after=\"${1-(date \"+%Y-%m-%d\")} 00:00\" --before=\"${1-(date \"+%Y-%m-%d\")} 23:59\"; }; f" |
| $ drush -d @myalias solr-index | |
| Bootstrap to phase 0. [0 sec, 2.18 MB] [bootstrap] | |
| Drush bootstrap phase : _drush_bootstrap_drush() [0.01 sec, 2.31 MB] [bootstrap] | |
| Loaded alias @myalias from file /home/drupal/.drush/aliases.drushrc.php [0.01 sec, 2.32 MB] [notice] | |
| Cache HIT cid: 5.10.0-commandfiles-0-afca815239e5d26eaa4f64880a91114b [0.02 sec, 2.33 MB] [debug] | |
| Begin redispatch via invoke process [0.08 sec, 5.27 MB] [notice] | |
| Backend invoke: ssh -o PasswordAuthentication=no myhost 'drush --invoke --debug [command] | |
| --root=/var/www/current/drupal-cms/ --uri=www.myhost.com --verbose 2>&1' 2>&1 [0.16 sec, 5.28 MB] | |
| executing ssh -o PasswordAuthentication=no myhost 'drush --invoke --debug [notice] | |
| --root=/var/www/current/drupal-cms/ --uri=www.myhost.com --verbose 2>&1' 2>&1 [0.16 sec, 5.28 MB] |
| irb(main):002:0> expression = /(?:OUT[=]*)/ | |
| => /(?:OUT[=]*)/ | |
| irb(main):003:0> "OUT".match(expression) | |
| => #<MatchData "OUT"> | |
| irb(main):004:0> "OUT=".match(expression) | |
| => #<MatchData "OUT="> | |
| irb(main):005:0> "Quark".match(expression) | |
| => nil |
| "SYSLOGPROG": [ | |
| [ | |
| "Shorewall" | |
| ] | |
| ], | |
| "program": [ | |
| [ | |
| "Shorewall" | |
| ] | |
| ], |
| require 'socket' | |
| begin | |
| PAYLOAD=open("xmas.txt").read | |
| SONG=open('silent.txt').read | |
| rescue Exception => e | |
| puts "Burp: #{e}" | |
| exit(-1) | |
| end |
| (helm :sources (helm-build-sync-source "test" | |
| :candidates '("foo" "foo bar" "foo bar foo" "foo bar foo bar" "bar" "baz") | |
| :fuzzy-match t | |
| ) | |
| :buffer "*helm test*") |
| #!/usr/bin/env python | |
| # encoding:utf-8 | |
| import os | |
| import subprocess | |
| from time import sleep | |
| import curses | |
| PING = ["ping", "-q", "-c1", "8.8.8.8"] |
| #!/usr/bin/env ruby | |
| # - encoding: utf-8 - | |
| # | |
| # E.g. with: pinget.rb https://feeds.pinboard.in/rss/secret:YOURSECRET/u:YOURUSERNAME/toread/ | |
| require 'rss' | |
| require 'open-uri' | |
| require 'uri' | |
| WGET = ['wget', |