Skip to content

Instantly share code, notes, and snippets.

View MrOplus's full-sized avatar
🪲
Is this a bug? nah!

DivByZero MrOplus

🪲
Is this a bug? nah!
View GitHub Profile
@MrOplus
MrOplus / README.md
Created July 31, 2022 12:56 — forked from Anubisss/README.md
How to compile statically linked OpenVPN client for ARMv5

How to compile statically linked OpenVPN client for ARMv5

You need to install ARMv5 gcc cross compiler: apt-get install gcc-arm-linux-gnueabi

You have to define a directory (via --prefix) where all of your binaries will be installed (copied). In the guide I use the following: /home/user/vpn_compile

OpenSSL

  1. Download the source: wget https://www.openssl.org/source/openssl-1.0.2j.tar.gz
@MrOplus
MrOplus / xampp_php7_xdebug.md
Created July 21, 2017 11:04 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP
@MrOplus
MrOplus / TextToImage.cs
Last active March 5, 2017 11:41 — forked from naveedmurtuza/TextToImage.cs
Converting text to image (png) C#
/// <summary>
/// Converting text to image (png).
/// </summary>
/// <param name="text">text to convert</param>
/// <param name="font">Font to use</param>
/// <param name="textColor">text color</param>
/// <param name="maxWidth">max width of the image</param>
/// <param name="path">path to save the image</param>
public static void DrawText(String text, Font font, Color textColor,int maxWidth,String path)
{