Skip to content

Instantly share code, notes, and snippets.

View Rednexie's full-sized avatar
:electron:
I may be slow to respond.

Rednexie Rednexie

:electron:
I may be slow to respond.
View GitHub Profile
@StevenACoffman
StevenACoffman / Homoglyphs.md
Last active September 18, 2024 17:28
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
@chriscandy
chriscandy / install-arch-linux-using-efi-and-grub.md
Last active August 26, 2024 20:04
Install Arch Linux using EFI and GRUB

Installing Arch linux with EFI

  1. Change keyboard layout:

    • loadkeys no
  2. Verify boot mode:

    • ls /sys/firmware/efi/efivars (If the directory exist your computer supports EFI)
  3. Ping some site on the Internet to verify connection:

  • ping archlinux.org
@Ravenstine
Ravenstine / vbscript_wine.md
Last active August 22, 2024 16:25
Installing VBScript in Wine (Linux)

How to Run VBScripts in Wine

It's very easy but not straight-forward or documented anywhere.

First, install Wine 1.6.2. This version probably isn't required, but it's the version that currently ships with Debian Jessie and it works with VBScript.

Install Winetricks and use it to add the following libraries:

  • wsh57
@tedmiston
tedmiston / nodejs-tcp-example.js
Last active September 20, 2024 07:39
Node.js TCP client and server example
/*
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp
server, but for some reason omit a client connecting to it. I added an
example at the bottom.
Save the following server in example.js:
*/
var net = require('net');