This serves as a quick reference and showcase of GitHub Flavored Markdown. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Author: Mitch Allen (https://mitchallen.com) | |
* https://scriptable.com/ | |
*/ | |
var fs = require('fs'); | |
function generate(limit) { | |
let width = 1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
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.
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import clipboard | |
import console | |
import requests | |
import json | |
import keychain | |
import webbrowser | |
from datetime import datetime | |
argument_index = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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(): |
NewerOlder