Skip to content

Instantly share code, notes, and snippets.

View lukas-h's full-sized avatar
🎯
Focusing

Lukas Himsel lukas-h

🎯
Focusing
  • Nuremberg, Germany
  • 17:57 (UTC +02:00)
View GitHub Profile
.chatlist{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom:38px;
background-color: black;
border: 1px solid blue;
overflow-x: hidden;
overflow-y: visible;
"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
@lukas-h
lukas-h / license-badges.md
Last active May 10, 2024 01:14
Lizenz-Buttons für dein Projekt

Markdown Lizenz-Buttons

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.

Notes

Keybase proof

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:

@lukas-h
lukas-h / ascii.c
Last active May 9, 2020 08:30
Some old snippets
/* ~ 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);}
@lukas-h
lukas-h / backup.sh
Created May 1, 2019 15:15
Backup your linux system harddrive
#!/bin/sh
# Written by Lukas Himsel <lukas.himsel@web.de>
#
# -> 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
#
@lukas-h
lukas-h / snippet.c
Created May 1, 2019 15:15
Snippet for allegro 4 game engine to create a basic 2d game
/*
* snippet.c
*
* Copyright (C) 2015, 2016 Lukas Himsel <lukas.himsel@web.de>
*
* 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
@lukas-h
lukas-h / getip.c
Last active July 13, 2020 08:49
Resolve IP as hostname (unix console tool)
/*
* `getip.c'
*
* Copyright (C) 2015, 2016 Lukas Himsel <lukas.himsel@web.de>
*
* 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,
@lukas-h
lukas-h / firebase.json
Created December 5, 2019 01:57
my firebase hosting config file
{
"hosting": {
"public": "_site",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"headers": [{
"source": "**",
@lukas-h
lukas-h / csv_to_map.dart
Last active February 17, 2021 20:55
CSV to List<Map<String, String>> instead of the normal List<List<String>> scheme of the original csv package
class CsvToMapConverter {
CsvToListConverter converter;
CsvToMapConverter(
{String fieldDelimiter = defaultFieldDelimiter,
String textDelimiter = defaultTextDelimiter,
String textEndDelimiter,
String eol = defaultEol,
CsvSettingsDetector csvSettingsDetector,
bool shouldParseNumbers,
bool allowInvalid}) {