Designed by: Mauricio Bucardo
Original image: https://dribbble.com/shots/5619509-Animated-Tab-Bar
You can use this menu in your projects. It also works with 100% width and reacts to changing the size of the window :)
// Open a supplied HTML file and record whatever's going on to an MP4. | |
// | |
// Usage: node recorder.cjs <path_to_html_file> | |
// Dependencies: npm install puppeteer fluent-ffmpeg | |
// (and yes, you need ffmpeg installed) | |
// | |
// It expects a <canvas> element to be on the page as it waits for | |
// that to load in first, but you can edit the code below if you | |
// don't want that. | |
// |
import logging | |
import os | |
import time | |
from contextlib import contextmanager | |
from collections import defaultdict | |
import numpy as np | |
import torch | |
import matplotlib.pyplot as plt |
Designed by: Mauricio Bucardo
Original image: https://dribbble.com/shots/5619509-Animated-Tab-Bar
You can use this menu in your projects. It also works with 100% width and reacts to changing the size of the window :)
body .gist .highlight { | |
background: #2c2828; | |
} | |
body .gist .blob-num, | |
body .gist .blob-code-inner, | |
body .gist .pl-e, | |
body .gist .pl-eoa, | |
body .gist .pl-eoai, | |
body .gist .pl-eoai .pl-pde, | |
body .gist .pl-ko, |
See: Google Documentation on Start the emulator from the command line for more info
Log uploaded on Tuesday, February 11, 2025, 4:04:38 PM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Faster Game Loading(Taranchuk.FasterGameLoading): FasterGameLoading(1.0.0), System.Drawing(av:4.0.0,fv:4.6.57) | |
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Performance Fish(bs.performance): PerformanceFish(0.6.2) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) |
import requests | |
import logging | |
from pathlib import Path | |
from typing import Dict, Optional | |
class HelpScoutClient: | |
def __init__(self, api_key: str): | |
"""Initialize HelpScout client with API key.""" | |
self.base_url = "https://docsapi.helpscout.net/v1" |
def crackle_pop(): | |
""" | |
prints out the numbers 1 to 100 (inclusive). | |
If the number is divisible by 3, print _Crackle_ instead of the number. | |
If it's divisible by 5, print _Pop_. | |
If it's divisible by both 3 and 5, print _CracklePop_. | |
""" | |
INCLUDING_ONE_HUNDRED = 101 | |
for n in range(1,INCLUDING_ONE_HUNDRED): | |
print(format_crackle_pop(n)) |
Log uploaded on Tuesday, February 11, 2025, 4:03:59 PM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Faster Game Loading(Taranchuk.FasterGameLoading): FasterGameLoading(1.0.0), System.Drawing(av:4.0.0,fv:4.6.57) | |
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Performance Fish(bs.performance): PerformanceFish(0.6.2) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) |