I hereby claim:
- I am lukas-h on github.
- I am lukashimsel (https://keybase.io/lukashimsel) on keybase.
- I have a public key ASA7-j-YbmvdT-oDmPrm8rYO5bnouJTZP8OcKroiFjFrhgo
To claim this, I am signing this object:
/* | |
* `getip.c' | |
* | |
* Copyright (C) 2015, 2016 Lukas Himsel <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* This program is distributed in the hope that it will be useful, |
/* | |
* snippet.c | |
* | |
* Copyright (C) 2015, 2016 Lukas Himsel <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
#!/bin/sh | |
# Written by Lukas Himsel <[email protected]> | |
# | |
# -> backup your complete linux system <- | |
# | |
# Variables: | |
# BACKUP_DEVICE is the *mounted* harddrive for the backup | |
# BACKUP_DATE is the actual date and it's used to create a folder | |
# with the actual date | |
# |
/* ~ write all ascii characters into a file~ | |
Is this program useful? NO!!! It's an obfuscated program that does nothing!!!*/ | |
#include <stdio.h> | |
main(){FILE*f=fopen("ASCIITABLE.txt","w");char i=0x0;while | |
(f!=NULL){putc(i,f);if(i==0x7E){break;}else{i++;}}fclose(f);} |
I hereby claim:
To claim this, I am signing this object:
Sammlung von Lizenz-Schildern (Badges) für die README-Datei deines Projekts. Diese Liste enthält die meist verbreiteten Open Source und Open Data Lizenzen. Kopieren und fügen Sie den Code unter den Badges einfach in Ihre Markdown-Dateien ein.
"I understand just train":"station ",sorry, my englisch is under all pig ":" Entschuldige, mein Englisch ist unter aller Sau",I think I spider ":" Ich glaub ich spinne",the devil will i do ":" Den Teufel werd ich tun",my lovely mister singing club ":" Mein lieber Herr Gesangsverein",come on...jump over your shadow ":" Komm schon...spring über Deinen Schatten",you walk me animally on the cookie ":" Du gehst mir tierisch auf den Keks",there my hairs stand up to the mountain ":" Da stehen mir die Haare zu Berge",tell me nothing from the horse ":" Erzähl mir keinen vom Pferd",don´t ask after sunshine ":" Frag nicht nach Sonnenschein",it´s not good cherry":"eating with you ",now it goes around the sausage ":" Jetzt geht´s um die Wurst",there are you on the woodway ":" Da bist Du auf dem Holzweg",holla the woodfairy ":" Holla die Waldfee",I hold it in head not out ":" Ich halt´s im Kopf nicht aus",now butter by the fishes ":" Jetzt mal Butter bei die Fische",I see black for you ":" Ich seh Schwarz für Dich",your ar |
.chatlist{ | |
position: fixed; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom:38px; | |
background-color: black; | |
border: 1px solid blue; | |
overflow-x: hidden; | |
overflow-y: visible; |
import 'dart:html'; | |
import 'dart:math'; | |
class View{ | |
var button, text, listener; | |
View(Function f){ | |
button = querySelector("#button"); | |
text = querySelector("#text"); | |
listener = button.onClick.listen(f); | |
} |
new DateTime.now() | |
new DateTime(2018, 4, 22) | |
DateTime.parse("2018-04-22 21:13:15") | |
DateTime.parse("+20180422") |