Skip to content

Instantly share code, notes, and snippets.

View ConorOBrien-Foxx's full-sized avatar

Conor O'Brien ConorOBrien-Foxx

View GitHub Profile
#include <GDIPlus.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <Array.au3>
;~ inpaint("gothic_in.png", "gothic_out.png")
;~ inpaint("starry_in.png", "starry_out.png")
;~ inpaint("scream_in.png", "scream_out.png")
;~ inpaint("mona_in.png", "mona_out.png")
;~ inpaint("maze_in.png", "maze_out.png")
@vihanb
vihanb / smallcaps.user.js
Created March 9, 2016 03:01
Make everything small caps
// ==UserScript==
// @name Small Caps
// @namespace asdfjeiwofsndalcxzafsd
// @version 1
// @description Make everything small caps
// @author Downgoat
// @match *://*/*
// @grant GM_addStyle
// ==/UserScript==
@turbo
turbo / c.md
Last active September 17, 2020 23:30

The Comic

This is an irregularly updated comic about things. It might contain inside jokes. The strips all have alt text.

#2 Job Golfing

#1 Adventures of Uberman

Neoscript https://github.com/tuxcrafting/neoscript
Cheddar https://github.com/cheddar-lang/Cheddar
Stack Cats https://github.com/m-ender/stackcats
desc https://github.com/ConorOBrien-Foxx/tc17
recticular https://github.com/ConorOBrien-Foxx/reticular
eacal https://github.com/ConorOBrien-Foxx/eacal
vectil https://github.com/ConorOBrien-Foxx/vectil
yup https://github.com/ConorOBrien-Foxx/yup
ITML https://github.com/ConorOBrien-Foxx/ITML
GoLScript https://github.com/ConorOBrien-Foxx/GoLScript
@m-ender
m-ender / simple-challenges.md
Last active January 10, 2025 17:12
Simple challenges on CodeGolf.SE to take new programming languages for a spin.
@harrypujols
harrypujols / execute.js
Created May 9, 2017 19:48
Execute shell command in javascript
#!/usr/bin/env node
function execute(command) {
const exec = require('child_process').exec
exec(command, (err, stdout, stderr) => {
process.stdout.write(stdout)
})
}
['MultivariateHypergeometricDistribution',
'GaussianSymplecticMatrixDistribution',
'GaussianOrthogonalMatrixDistribution',
'CircularSymplecticMatrixDistribution',
'CircularQuaternionMatrixDistribution',
'CircularOrthogonalMatrixDistribution',
'WalleniusHypergeometricDistribution',
'NormalizedSquaredEuclideanDistance',
'LongestCommonSubsequencePositions',
'InverseContinuousWaveletTransform',
abandoned
able
absolute
adorable
adventurous
academic
acceptable
acclaimed
accomplished
accurate
@fnky
fnky / ANSI.md
Last active July 13, 2025 15:24
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27