Skip to content

Instantly share code, notes, and snippets.

View dewey's full-sized avatar
👋
Click here to edit status

Philipp Defner dewey

👋
Click here to edit status
View GitHub Profile
@dewey
dewey / rc
Created May 13, 2013 14:03
lftp settings: Add to ~/.lftp/rc
set ssl:verify-certificate no
set pget:default-n 10
set mirror:use-pget-n 10
set mirror:parallel-transfer-count 3
set bmk:save-passwords yes
set xfer:clobber on
execute pathogen#infect()
filetype plugin indent on
syntax on
set hlsearch
set showmatch
set expandtab
set shiftwidth=4
set copyindent
set tabstop=4
set incsearch
@dewey
dewey / gist:7633623
Last active December 29, 2015 07:09
Restoring Textual.app channel order

Why

After accidentally hitting command + R in Textual.app your channel list will get sorted alphabetically. Unfortunately there's currently no way to revert that.

To restore the old settings:

  1. Quit Textual.app
  2. cp /path/to/timemachine/.../com.codeux.irc.textual.plist ~/Library/Containers/com.codeux.irc.textual/Data/Library/Preferences/com.codeux.irc.textual.plist
  3. A Reboot or Relogin is necessary due to Mavericks caching the preference file.

Reassign Shortcut

To prevent this from happening overwrite Textual's shortcut with some obscure shortcut you'll never hit:

cd ~/Documents/Developement/Eclipse/Trash
cp -R code ~
git branch -D abgabe
git checkout --orphan abgabe
git rm -rf .
rm -rf documentation .DS_Store code
git rm -r --cached documentation speisekarten .settings README.md
mv ~/code .
git add code/
git commit -m "Commit: $(date)"
@dewey
dewey / git-deploy.md
Created January 10, 2014 22:39
Deploy websites using git

The local repository

cd ~/sites
mkdir example.com
cd example.com
git init
> Initialized empty Git repository in /Users/dewey/sites/example.com/.git/

The remote repository

@dewey
dewey / config
Last active January 3, 2016 22:09
~/.newsbeuter/config
# Refreshing
auto-reload yes
reload-threads 3
reload-time 20
feed-sort-order unreadarticlecount-asc
# Open links in this browser
browser open
# Write error log
@dewey
dewey / gist:4c1c8cf7d289e5c3437b6bc6b92e8698
Created April 9, 2016 21:22
Kernel flags for Docker on Gentoo
* CONFIG_CGROUP_HUGETLB: is not set when it should be.
* CONFIG_NET_CLS_CGROUP: is not set when it should be.
* CONFIG_RT_GROUP_SCHED: is not set when it should be.
* CONFIG_CGROUP_NET_PRIO: is not set when it should be.
* CONFIG_DEVPTS_MULTIPLE_INSTANCES: is not set when it should be.
* CONFIG_CGROUP_DEVICE: is not set when it should be.
* CONFIG_CGROUP_FREEZER: is not set when it should be.
* CONFIG_CGROUP_SCHED: is not set when it should be.
* CONFIG_NF_NAT_IPV4: is not set when it should be.
@dewey
dewey / mail.md
Last active August 14, 2018 03:52
Gitlab Vulnerability Spam

Update: Seems to be real https://news.ycombinator.com/item?id=11587416

Original Message:

I received this message on Wednesday, April 27, 2016 7:35 PM. Couldn't find anything about it on Gitlab's Blog or Twitter so I asked for clarification here: https://twitter.com/tehwey/status/725612585886842880

Anyone else got one of these, maybe to an address that's exclusively used on Gitlab? There also seems to be a huge spam issue going on in their issue tracker right now:

https://gitlab.com/gitlab-org/gitlab-ce/issues?page=5&scope=all&sort=id_desc&state=opened

@dewey
dewey / cloudSettings
Created August 24, 2018 14:30
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-08-24T14:30:14.047Z","extensionVersion":"v3.0.0"}
@dewey
dewey / lastfm.php
Created June 22, 2013 16:30
Last.fm "now playing" script for Textual. Installation: Replace 'apfeltalkdewey' with your Last.fm username. Copy this script to ~/Library/Application Scripts/com.codeux.irc.textual/lastfm.php Usage: /lastfm
#!/usr/bin/php
<?php
$doc = new DOMDocument();
$doc->load("http://ws.audioscrobbler.com/2.0/user/apfeltalkdewey/recenttracks.xml?limit=1");
$arrFeeds = array();
foreach ($doc->getElementsByTagName('track') as $node) {
$itemRSS = array (
'artist' => $node->getElementsByTagName('artist')->item(0)->nodeValue,
'name' => $node->getElementsByTagName('name')->item(0)->nodeValue
);