Skip to content

Instantly share code, notes, and snippets.

View tuxfamily's full-sized avatar

Cédric M. tuxfamily

  • France
View GitHub Profile
@tuxfamily
tuxfamily / compile.sh
Last active October 7, 2018 13:38
lcdproc driver for hd44780 on Raspberry Pi 3 b+
# Compile lcdproc directly on the pi
sudo apt-get install build-essential automake make
git clone https://github.com/lcdproc/lcdproc
cd lcdproc
sh ./autogen.sh
./configure --enable-drivers=hd44780 --enable-extra-charmaps --disable-libusb --disable-libusb-1-0 --disable-libftdi --disable-libX11 --disable-libhid --disable-libpng --disable-freetype --disable-ethlcd
make
sudo make install
# OR
cp ./server/drivers/hd44780.so /usr/lib/arm-linux-gnueabihf/lcdproc/
@tuxfamily
tuxfamily / passThruProxy.cs
Last active June 26, 2018 11:52 — forked from anth-3/passThruProxy.cs
Defines a simple pass-through proxy interface for C#.NET (IIS) Server applications and web sites.
<%@ WebHandler Language="C#" Class="PassThruProxy" Debug="true" %>
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Web;
/**
* <summary><c>PassThruProxy</c> is a simple pass-through proxy interface for C#.NET (IIS Servers).</summary>