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
<?php session_start(); ?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Linkliste</title> | |
<style type="text/css"> | |
h3 { margin-bottom: 0px; } | |
#mainDiv { margin: auto; width: 800px;} | |
</style> |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<!----> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>{Title}{block:SearchPage} | {SearchQuery}{/block:SearchPage}{block:PostSummary} | {PostSummary}{/block:PostSummary}</title> | |
<link rel="shortcut icon" href="{Favicon}"> | |
<link rel="alternate" type="application/rss+xml" href="{RSS}"> | |
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description} | |
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
l33t@nas:~$ rvm -v | |
rvm 1.18.10 (stable) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.io/] | |
l33t@nas:~$ ruby -v | |
ruby 1.9.3p392 (2013-02-22 revision 39386) [x86_64-linux] | |
l33t@nas:~$ gem -v | |
1.8.25 | |
l33t@nas:~$ t -v | |
1.7.1 |
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 | |
import tweepy | |
#use your one keys ;) | |
CONSUMER_KEY = '' | |
CONSUMER_SECRET = '' | |
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET) |
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
/******************************************************************************* | |
* | |
* | |
* Beschreibung: Diese Programm kann zufällige zahlen Generieren. | |
* | |
* Benötigte Libraries: | |
* - stdlib.h | |
* - stdio.h | |
* - time.h | |
* |
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
/******************************************************************************* | |
* | |
* | |
* Beschreibung: Diese Programm kann zufällige zahlen Generieren. | |
* | |
* Benötigte Libraries: | |
* - stdlib.h | |
* - stdio.h | |
* - time.h | |
* |
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
/******************************************************************************* | |
* | |
* | |
* Beschreibung: Diese Programm kann zufällige zahlen Generieren. | |
* | |
* Benötigte Libraries: | |
* - stdlib.h | |
* - stdio.h | |
* | |
* Do What the Fuck You Want to Public License |
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 | |
import getpass | |
class Gatto: | |
def sayHey(self): | |
return "Hi my name is Gatto and i LOVE python!" | |
def myPositionInTheCompany(self): | |
return "CEO" | |
def doWork(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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <windows.h> | |
#define MAX 80000000 | |
//Sieb des Eratosthenes zur bestimmung von primzahlen | |
int Sieb_des_Eratosthenes() | |
{ | |
long long unsigned int i, j, x; | |
x = 0; |
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
#Die folgende Variable speichert den Pfad zum Repository um das es geht. | |
# Hier meinprojekt.git mit dem Namen Deines Repos ersetzen und ggfs. | |
# den Pfad zum Repo | |
GIT_REPO=$HOME/l33tsource.git | |
# Die folgende Variable speichert den Pfad zum tmp Ordner in dem dann der Jekyll | |
# Befehl ausgeführt wird um die deine Seite in den Webroot zu befördern. | |
# Hier wieder "meinprojekt" mit dem Namen des Repos ersetzen ohne ".git" am Schluss. | |
TMP_GIT_CLONE=$HOME/l33tsoure |
OlderNewer