Skip to content

Instantly share code, notes, and snippets.

View pathologicalhandwaving's full-sized avatar
💭
I wish you could give pics speech bubbles

UnMary pathologicalhandwaving

💭
I wish you could give pics speech bubbles
View GitHub Profile
Draziw.Button.Mines
ag.video_solutions.wedotv
ahf.dummynation
ai.socialapps.speakmaster
air.com.beachbumgammon
air.com.freshplanet.games.SongPop2
air.com.gamesys.mobile.slots.jpj
air.com.goodgamestudios.empirefourkingdoms
air.com.kitchenscramble.goo
air.com.lalaplay.rummy45
@mitchallen
mitchallen / brownian.js
Last active February 23, 2025 21:05
Example code generating a brownian motion SVG
/**
* Author: Mitch Allen (https://mitchallen.com)
* https://scriptable.com/
*/
var fs = require('fs');
function generate(limit) {
let width = 1024
@apiarian
apiarian / Top Chicken.js
Last active February 23, 2025 21:01
a Scriptable (iOS) widget for chicken.photos
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: pink; icon-glyph: kiwi-bird;
const home = await (new Request("https://chicken.photos")).loadString()
const chickenLine = home.split("\n").filter(x=>x.match(/<a href="\/\d+">/))[0]
const m = chickenLine.match(/a href="([^"]+)"><img .*src="([^"]+)"/)
const chickenUrl = "https://chicken.photos" + m[1]
@kenny-kvibe
kenny-kvibe / figlet_install_fonts.sh
Last active April 3, 2025 06:09
Install "figlet" & download figlet fonts
#!/bin/bash
########
#
# Install "figlet" package
# & Download figlet fonts
# (running as root)
#
# + Github Repositories:
#--> https://github.com/xero/figlet-fonts
#--> https://github.com/phracker/figlet-fonts
@Myndex
Myndex / GitHubFlavoredMarkdown.md
Last active April 25, 2025 17:39 — forked from joshuapekera/markdown
GitHub Flavored Markdown Cheat Sheet
@stared
stared / software_for_scientists.md
Last active January 24, 2025 23:59
Software for scientists: community-edited list of general-purpose software for scientists.

Software for scientists

Some things takes much less time and stress once you know the right tool. Below, there is a community edited list of software for scientists.

Text editors

in General purpose text/code editors. It may be better to have a good editor for everything, than different ones for different languages, scripts, notes.

@zhuowei
zhuowei / gaussian_elimination.py
Created October 25, 2013 04:28
Gaussian Elimination Algorithm
"""
Implementation of the Gaussian Elimination Algorithm for finding the row-reduced echelon form of a given matrix.
No pivoting is done.
Requires Python 3 due to the different behaviour of the division operation in earlier versions of Python.
Released under the Public Domain (if you want it - you probably don't)
"""
def like_a_gauss(mat):
"""
Changes mat into Reduced Row-Echelon Form.
@dlo
dlo / Gist.py
Last active December 21, 2017 17:55
Gist.py is a straightforward way to create a Gist on your iOS device using Pythonista and (optionally) Drafts for iOS.
import clipboard
import console
import requests
import json
import keychain
import webbrowser
from datetime import datetime
argument_index = 1
@guyhillyer
guyhillyer / Mandelista.py
Created December 8, 2012 16:06
Mandelista, a Mandelbrot set explorer for Pythonista
# Mandelista: a Mandelbrot set explorer for Pythonista.
# Dragging selects a region which is highlighted;
# tapping inside the highlighted region zooms to the region;
# tapping outside the region cancels the selection.
# By Guy K Hillyer, a Python neophyte.
from scene import *
# The class Region represents the area of the graph that is being
# examined. It has two coordinate systems: the range of real numbers
@macdrifter
macdrifter / CsvToArray.py
Created December 8, 2012 12:01 — forked from tony-landis/CsvToArray.py
Convert CSV string to fixed width text table
"""
Convert CSV string to fixed width text table. Supports multi-line rows, column width limits, and creates a header row automatically
@author Tony Landis
@link http://www.tonylandis.com
@license GPL
"""
from math import ceil
class CsvToTxt():