Skip to content

Instantly share code, notes, and snippets.

View k-con's full-sized avatar

k-con k-con

  • k-con
  • Mönchengladbach
View GitHub Profile
@k-con
k-con / htaccess.df
Last active April 19, 2018 12:30 — forked from gthln/htaccess.df
.htaccess for Laravel at Domainfactory, replaces .htaccess in public
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
@k-con
k-con / main.cpp
Created December 13, 2017 14:23
HKI C++ I 2017 - Exercise 6: Example
#include <iostream>
using namespace std;
#include <fstream>
int main(){
char zeichen;
char puffer[100];
int zaehler;