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 February 24, 2022 23:07
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 May 7, 2024 09:24
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

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