This file contains 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 httpx | |
HOST = "https://dsapi.expcloud.com/odata/replication" | |
IMAGE_SERVICE_KEY = "..." | |
GET_TOKEN = "https://dsauth.expcloud.com/oauth2/token" | |
CLIENT_ID = "..." | |
SECRET = "..." | |
SCOPE = "..." |
This file contains 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 numpy as np | |
from matplotlib import pyplot as plt | |
from tqdm import tqdm | |
data = [] | |
num_refreshed_data = [] | |
ITERATIONS = 5_000 | |
N = 10_000 | |
T = 100 |
This file contains 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
{pkgs, ...}: let | |
pname = "cursor"; | |
version = "0.39.6"; | |
src = pkgs.fetchurl { | |
url = "https://downloader.cursor.sh/linux/appImage/x64"; | |
hash = "sha256-huZTzIZFAYtGRMhXGC+1sd0l2s5913QkWM+QjCtsEl0="; | |
# use this to update the hash | |
# nix hash to-sri --type sha256 $(nix-prefetch-url https://downloader.cursor.sh/linux/appImage/x64) | |
}; |
This file contains 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
const clickableElements = await page.evaluate(async () => { | |
const resultElements: Elem[] = [] | |
const clickables = [ | |
'a', | |
'button', | |
'input', | |
'textarea', | |
'select', | |
'details', | |
'summary' |
This file contains 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 numpy as np | |
np.random.seed(256) | |
DTYPE=np.int64 | |
P = 101 | |
def is_singular(matrix: np.ndarray) -> bool: | |
return np.isclose(np.linalg.det(matrix), 0) | |
def add(x, y, m): return (x + y) % m | |
def sub(x, y, m): return (x - y) % m |
This file contains 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
from typing import Generator | |
import llama_cpp | |
import numpy as np | |
import regex | |
from lark import Lark, UnexpectedInput, UnexpectedToken | |
from llama_cpp import Llama | |
from pydantic import BaseModel, Field | |
import rstr | |
from itertools import islice |
This file contains 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
#! /usr/bin/env nix-shell | |
#! nix-shell --quiet -p uxplay -i bash | |
set -ueo pipefail | |
## Clear any existing "DROP ME" rules | |
## ref: https://stackoverflow.com/a/63855690/12393422 | |
while sudo iptables -L -n --line-number | grep "DROP ME" > /dev/null; do | |
sudo iptables -D INPUT $(sudo iptables -L -n --line-number | grep "DROP ME" | head -1 | awk '{print $1}'); | |
done |
This file contains 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 time | |
import asyncio | |
import operator | |
from functools import wraps | |
from itertools import repeat, count | |
from aioitertools import iter as aiter | |
from aioitertools import islice | |
from peewee import * | |
from peewee import Expression |
This file contains 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 time | |
import asyncio | |
import operator | |
from functools import wraps | |
from itertools import repeat, count | |
from aioitertools import iter as aiter | |
from aioitertools import islice | |
from peewee import * | |
from peewee import Expression |
This file contains 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 _collections_abc | |
from operator import itemgetter as _itemgetter, eq as _eq | |
from keyword import iskeyword as _iskeyword | |
import sys as _sys | |
from functools import wraps | |
MAX_DEPTH = 1024 | |
class SnakeString(_collections_abc.Sequence): | |
""" |
NewerOlder