- Create a new repo (gp-pages-simple)
- Go to settings
- Choose a theme
- Edit your
index.md
file - Commit to master branch
- Go to username.github.io/gp-pages-simple
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
local pd <const> = playdate | |
local gfx <const> = Graphics | |
local box = playout.box.new | |
local text = playout.text.new | |
local window = { | |
padding = 8, | |
border = 2, | |
borderRadius = 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
Paginate = {} | |
function Paginate.read(filename) | |
local lines = {} | |
local file = File.open(filename, File.kFileRead) | |
local line = file:readline() | |
while line do | |
table.insert(lines, line) | |
line = file:readline() | |
end |
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
extends BeehaveNode | |
class_name BeehaveDebug, "../icons/tree.svg" | |
export(NodePath) var _beehave_tree | |
var beehave_tree : BeehaveRoot setget set_beehave_tree | |
export(Theme) var theme | |
export(Color) var tick_color := Color.whitesmoke | |
export(Color) var success_color := Color.forestgreen |
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
extends "res://Tools/UsableObject.gd" | |
var using = false | |
onready var ray = $Raycast | |
onready var hook = $Hook | |
onready var rope = $Rope | |
onready var laser = $Laser | |
onready var indicator = $Indicator | |
onready var initial_transform = transform | |
var hook_body = null |
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 click | |
import shlex | |
from click.testing import CliRunner | |
help_text = "" | |
@click.group(invoke_without_command=True) | |
@click.pass_context | |
def cli(context): |
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 networkx | |
import itertools | |
import random | |
import matplotlib.pyplot as plt | |
G = networkx.Graph() | |
points = list(itertools.permutations(list(range(30)), 2)) | |
points = random.sample(points, 64) |
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 click | |
import webbrowser | |
import os | |
import random | |
import tempfile | |
from time import sleep | |
random.seed() | |
tmp = tempfile.NamedTemporaryFile() |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"console_title_template": "{{.UserName}}@{{.HostName}} {{.Shell}} in {{.PWD}}", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ | |
"properties": { |
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/sh | |
echo "foo" | |
# Pipe commands between patterns into container | |
sed -n "/^### SCRIPT START ###/,/^### SCRIPT END ###/p" "$0" | docker exec -i -e MESSAGE="bar" <id> /bin/bash - | |
echo "baz" | |
# Exit original script | |
exit |