View musterlösungen-index
Wahrheitstafeln | |
1P1, 1A1 | |
Aussagenlogik | |
1P2, 1A2, 2P3, 2A3, 2P2, 2A2 | |
Quantoren | |
1P3, 1A3 | |
Mengenoperationen |
View cli_tokenizer.js
function tokenize (input) { | |
function Token(type, isOpenUntil) { | |
this.type = type; | |
this.value = ""; | |
this.isOpenUntil = isOpenUntil || false; | |
} | |
var i = 0, | |
len = input.length, | |
tokens = [], |
View myGIGA.user.js
// ==UserScript== | |
// @name myGIGA | |
// @version 1.0.3 | |
// @include http://www.giga.de/ | |
// ==/UserScript== | |
var main = function () { | |
var myGIGA = { | |
Teaser: function (title, url, image) { | |
this.title = title; |
View gist:3194587
<?php | |
error_reporting(E_ALL + E_STRICT); | |
require_once __DIR__.'/../vendor/autoload.php'; | |
use Silex\Application; | |
use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\Routing\RequestContext; |
View CryptBlowfishPasswordEncoder.php
<?php | |
namespace schokocappucino\Nameless\User\PasswordEncoder; | |
class CryptBlowfishPasswordEncoder implements PasswordEncoderInterface { | |
protected $cost = 10; | |
public function __construct($cost) { | |
if ($cost < 4 || $cost > 31) | |
throw new Exception('Invalid bcrypt cost parameter specified: '.$cost); |
View gist:5f6e23cf0c02652f7d92
#include <ESP8266WiFi.h> | |
const char* ssid = "..."; | |
const char* password = "..."; | |
const IPAddress ip(10, 0, 0, 14); | |
const IPAddress gateway(10, 0, 0, 1); | |
const IPAddress subnet(255, 255, 0, 0); | |
const char* host = "10.0.1.1"; | |
const int port = 8889; |
View say
say -v 'pipe organ' Dum dum dee dum dum dum dum dee Dum dum dee dum dum dum dum dee dum dee dum dum dum de dum dum dum dee dum dee dum dum dee dummmmmmmmmmmmmmmmm | |
say -v Cellos Dum dum dum dum dum dum dum he he he ho ho ho fa lah lah lah lah lah lah fa lah full hoo hoo hoo | |
View parser.php
<?php | |
class GitoliteConfigParser { | |
public function parse($config) { | |
$lines = explode("\n", $config); | |
// remove comments and spaces | |
$lines = array_filter(array_map(function ($line) { | |
$line = preg_replace('/#(.*)$/', '', $line); | |
return preg_replace('/^\s+/', '', $line); |
View .bashrc
PS1="\[\033[1;31m\]\u\[\033[0m\] in \[\033[1;32m\]\w\[\033[0m\] on \[\033[1;35m\]\h\[\033[0m\]\n$ " | |
export PS1 |
OlderNewer