Skip to content

Instantly share code, notes, and snippets.

View neoascetic's full-sized avatar
🏖️
Sabbatical

Pavel neoascetic

🏖️
Sabbatical
View GitHub Profile
@neoascetic
neoascetic / test.html
Created February 21, 2022 17:09
raw.githack.com test
raw.githack.com is working!
@neoascetic
neoascetic / patrons.py
Created January 29, 2023 07:41
Get patron emails from Patreon
import json
import requests
API_TOKEN = 'XXX'
CAMPAIGN_ID = 'XXX'
def get_page(url, headers):
result = requests.get(url, headers=headers)
@neoascetic
neoascetic / teapot.svg
Last active February 1, 2024 19:51
Utah teapot as SVG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoascetic
neoascetic / multiline.bash
Created February 28, 2024 10:15
Neat way to define multiline variables in bash
#!/bin/bash
multiline() {
read -r -d '' "$@"
}
multiline text << 'END'
Hello, world!
Multiline docstrings seems to work today...
@neoascetic
neoascetic / Noise.cs
Created April 1, 2024 15:58
Simple Unity script to preview various Perlin noise settings
using UnityEngine;
using Unity.Mathematics;
public class Noise : MonoBehaviour {
public int width;
public int height;
public float scaleX;
public float scaleY;
public float offsetX;