Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@xeon826
xeon826 / containerize.sh
Created October 30, 2023 19:04
Script for containerizing existing Stockwell machines
#/bin/bash
echo 'asdf'
!-------------------------------------------------------------------------------
! Xft settings
!-------------------------------------------------------------------------------
Xft.dpi: 96
Xft.antialias: false
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight
asdfasdf
@xeon826
xeon826 / debug.md
Created September 25, 2019 17:17
Debugging info for Atom Beautify
@xeon826
xeon826 / mysql.php
Created August 7, 2018 02:49 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);