Skip to content

Instantly share code, notes, and snippets.

import { Link } from "react-router";
function Navbar() {
return (
<nav class="bg-neutral-primary w-full z-20 top-0 start-0 border-b border-default">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a
href="https://flowbite.com/"
class="flex items-center space-x-3 rtl:space-x-reverse"
>
@linoriep
linoriep / boltz2_ternary_complex_prediction.ipynb
Last active December 17, 2025 15:12
boltz2_ternary_complex_prediction.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PEZ
PEZ / keybindings.json
Last active December 17, 2025 15:08
Calva custom repl commands and keybinding for Snitch
...
// --- SNITCH CONVENIENCE, Thanks, Abhinav! ♥️🙏
// https://github.com/AbhinavOmprakash/snitch
{
// Instrument as snitched defn*
"key": "cmd+enter",
"when": "editorLangId == 'clojure' && calva:connected",
"command": "calva.runCustomREPLCommand",
"args": {
"snippet": "${top-level-form|replace|^\\(defn-?|(defn*}"

How to install game-porting-toolkit (aka proton for macOS)

You also might wanna just use Whisky which does this automatically

This guide works on macOS 13.4+ using Command Line Tools for XCode 15 Beta!

What is this?

In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.

@tiagopapile
tiagopapile / country-flags-fix.css
Last active December 17, 2025 15:03
Add country flag emojis support on Windows Discord
/**
* @name Country flags fix
* @author Tiago Papile
* @description Add country flag emojis support on Windows Discord
* @version 1.0.1
* @authorId 831215991693377537
*/
@font-face {
font-family: 'Twemoji Country Flags';
@matt-graham
matt-graham / jax-sci-comp-tutorial.ipynb
Last active December 17, 2025 15:02
Accompanying notebook for JAX scientific computing tutorial
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@darth-veitcher
darth-veitcher / rtl8188eus-on-raspi.md
Last active December 17, 2025 15:02
Installing a TP-Link TL-WN725N Wireless Adapter on a RaspberryPi

This was a proper pain... Turns out there's a whole host of issues with the rtl8188eus driver.

Steps to fix (on Debian / RaspberryPi OS).

1. Install build tools

sudo apt install -y \
  build-essential \
 git \
To start, you're going to want to reset your chrome device to factory settings. If your chrome device is not managed or does not forbid this feature, use the Powerwash tool by signing out of your profile and then pressing Ctrl + Alt + Shift + r.
If your chrome device has this feature forbidden, then enter the recovery boot by pressing esc + ↺+ ⏻ (refresh and power) and then pressing Ctrl + D to enter developer mode. If Developer Mode is blocked, continue with clearing your data. If you are presented with a screen that says "OS Verification is OFF" press enter and then clear your data.
Once your data has been cleared, continue signing into your user profile. Fill out the Enterprise Enrollment screen if applicable.
After logging into your profile, navigate to chrome://extensions and open the Task Manager. Wait for the enforcement extension to load in and then wait about 5 seconds. Press esc + ↺+ ⏻. If the recovery dialog shows, press ⏻ to turn off your chrome device and then press ⏻ again to turn it back
@schorschii
schorschii / HPUnlocker.py
Last active December 17, 2025 14:57
HP Unlocker: Remove admin passwords from HP UEFI/BIOS images. Need help? Contact me for professional BIOS repair services in Germany: https://georg-sieber.de/?page=blog-bios
#!/usr/bin/python3
# Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)]
import mmap, shutil, sys
if len(sys.argv) != 2:
print('Please provide a HP BIOS image .bin file as first parameter!')
sys.exit(1)
path = sys.argv[1]