- 1 Glas, 350 ml, Selleriesalat geraspelt
- 1 Dose Mais
- 4 Scheiben gekochter Schicken, würfeln
- 4 hartgekochte Eier
- 2 mittlere Äpfel würfeln, z.B. Boskopp
- 1 Glas MiracleWhip, 500 ml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "AppDelegate.h" | |
@implementation AppDelegate | |
@synthesize window = _window; | |
@synthesize button = m_button; | |
- (void)awakeFromNib { | |
NSDictionary* options = [NSDictionary dictionaryWithObject:@"buttonClicked" forKey:NSSelectorNameBindingOption]; | |
[m_button bind:@"target" toObject:self withKeyPath:@"self" options:options]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation AppDelegate | |
@synthesize window = _window; | |
@synthesize textField1 = m_textField1; | |
@synthesize textField2 = m_textField2; | |
@synthesize foo = m_foo; | |
- (id)init { | |
self = [super init]; | |
if (self) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Ruby script to download a number of files | |
# from individual URLs via HTTP/HTTPS/FTP | |
# specified in an external file. | |
# | |
# Author: Tobias Preuss | |
# Revision: 2013-04-18 16:26 +0100 UTC | |
# License: Creative Commons Attribution-ShareAlike 3.0 Unported |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's | |
# HTTP implementation. | |
# | |
# Author: Jon Maken | |
# License: 3-clause BSD | |
# Revision: 2012-03-25 21:18:59 -0600 | |
require 'net/http' | |
require 'net/https' if RUBY_VERSION < '1.9' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Source: http://www.alfredklomp.com/programming/shrinkpdf/ | |
gs -q -dNOPAUSE -dBATCH -dSAFER \ | |
-sDEVICE=pdfwrite \ | |
-dCompatibilityLevel=1.3 \ | |
-dPDFSETTINGS=/screen \ | |
-dEmbedAllFonts=true \ | |
-dSubsetFonts=true \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
delicious.com - Custom styles 2013 | |
Author: Tobias Preuss | |
Version: 2013-01-18 20:40 | |
License: Creative Commons Attribution (CC BY) | |
Userstyles: http://userstyles.org/styles/81715/delicious-com-custom-styles-2013 | |
Stylish browser add-on | |
for Firefox: https://addons.mozilla.org/en-US/firefox/addon/stylish/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function($) { | |
var bookmarklet = document.getElementById( | |
'DELI_save_link_slidedown'); | |
if (bookmarklet) { | |
$('#DELI_mist').show(); | |
$('#DELI_save_link_slidedown').slideDown('normal'); | |
return | |
}; | |
if (!window.jQuery) { | |
node = document.createElement('SCRIPT'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Source: http://emerg3nc3.wordpress.com/2012/07/28/full-256-color-support-for-vim-andor-xterm-on-ubuntu-12-04/ | |
" | |
" Color test: Save this file, then enter ':so %' | |
" Then enter the following commands: | |
" :VimColorTest "(for console/terminal Vim) | |
function! VimColorTest(outfile, fgend, bgend) | |
let result = [] | |
for fg in range(a:fgend) | |
for bg in range(a:bgend) | |
let kw = printf('%-7s', printf('c_%d_%d', fg, bg)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Copyright (C) 2006 by Johannes Zellner, <[email protected]> | |
# modified by [email protected] to fit my output needs | |
# modified by [email protected] to fit my output needs | |
# Source: http://emerg3nc3.wordpress.com/2012/07/28/full-256-color-support-for-vim-andor-xterm-on-ubuntu-12-04/ | |
import sys | |
import os | |
def echo(msg): |