Skip to content

Instantly share code, notes, and snippets.

@innovodesign
innovodesign / Pi 1920X480 LCD.md
Last active April 8, 2024 15:33
8.8" 1920x480 letterbox LCD HSD088IPW1 with Raspberry Pi

Raspberry Pi 1920x480 LCD

The HSD088IPW1 with Wisecoco HDMI driver board from Aliexpress.com work seemlessly with a PC but refused to play nicely with my Raspberry Pi until making these changes, tested with Raspbian (March2021) on a Pi Zero W.

These lines modified in /boot/config.txt file

# These lines for 1920x480 display
max_framebuffer_height=1920
hdmi_ignore_edid=0xa5000080
hdmi_timings=480 1 48 32 80 1920 0 3 10 56 0 0 0 60 0 75840000 3
@ricferr
ricferr / gist:90583f608f0b0ae9c3cf6833be04ab85
Created May 24, 2018 09:13
How to create a systemd service for python script with virtualenv
[Unit]
Description=Some description
After=network.target
[Service]
Type=simple
User=user
WorkingDirectory=/home/user/somedir
Environment=PYTHONPATH=/home/user/somedir
ExecStart=/home/user/venv/bin/python script.py
@filcab
filcab / openvpn-setup.md
Created September 12, 2016 22:28
Small OpenVPN setup tutorial

Setting up an OpenVPN server

References:

  • [Applied Crypto Hardening][ACH]
  • [Linode: Set up a hardened OpenVPN Server][Linode]
  • [Weak Diffie-Hellman and the Logjam Attack][WeakDH]