Skip to content

Instantly share code, notes, and snippets.

View kubawich's full-sized avatar
🏠
Working from home

Kuba Wichliński kubawich

🏠
Working from home
View GitHub Profile
@kubawich
kubawich / compact.cpp
Created April 15, 2018 20:23 — forked from Wunkolo/compact.cpp
Ascii Raymarcher(old)
#include <math.h>
#include <algorithm>
#include <string>
#include <pmmintrin.h>
using namespace std;typedef float R;
#define _W 79
#define _H 39
#define EP 0.01f
#define OP operator
#define C const
@kubawich
kubawich / xampp_proxy_server_config
Last active October 8, 2017 17:29 — forked from ralphcrisostomo/xampp_proxy_server_config
XAMPP Proxy Server Config
1. Open /Applications/XAMPP/etc/httpd.conf
2. Enable the following Modules by removing the # at the front of the line.
- LoadModule rewrite_module modules/mod_rewrite.so
- LoadModule proxy_module modules/mod_proxy.so
- LoadModule proxy_http_module modules/mod_proxy_http.so
3. Copy and Paste below to the bottom of httpd.conf
<IfModule mod_proxy.c>
ProxyRequests On