Skip to content

Instantly share code, notes, and snippets.

View maxwowpow's full-sized avatar
🛴
Practice doesn’t make perfect. Perfect practice makes perfect.

Max Grass maxwowpow

🛴
Practice doesn’t make perfect. Perfect practice makes perfect.
View GitHub Profile
@maxwowpow
maxwowpow / a_enable_wireless.sh
Last active September 24, 2023 13:22 — forked from morfikov/a_enable_wireless.sh
Sample files to enable wireless on Debian initramfs
#!/bin/sh
# this goes into /etc/initramfs-tools/scripts/init-premount/a_enable_wireless
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
prereqs)
@maxwowpow
maxwowpow / SimpleHTTPServer.cs
Created June 9, 2020 22:25 — forked from aksakalli/SimpleHTTPServer.cs
SimpleHTTPServer in C#
// MIT License - Copyright (c) 2016 Can Güney Aksakalli
// https://aksakalli.github.io/2014/02/24/simple-http-server-with-csparp.html
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
@maxwowpow
maxwowpow / dabblet.css
Created February 21, 2013 08:30 — forked from Daniel-Hug/dabblet.css
A "deeper" indented text effect with the :before and :after pseudo-elements.
/**
* A "deeper" indented text effect with the :before and :after pseudo-elements.
*/
html, body {
height: 100%;
}
body {
margin: 0;