Skip to content

Instantly share code, notes, and snippets.

View techygrrrl's full-sized avatar
🔴

techygrrrl techygrrrl

🔴
View GitHub Profile
@mary-ext
mary-ext / bluesky-osa.md
Last active August 26, 2026 07:39
Bluesky's age assurance sucks, here's how to work around it.

Bluesky's age assurance sucks, here's how to work around it.

Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.

This sucks, but thankfully there are ways to work around it.

Before diving in: I encourage you to read this entire document, including the

@exegeteio
exegeteio / format.rb
Created May 4, 2023 22:41
SRT Formatter for Matty Twoshoes on twitch.
#!/usr/bin/env ruby
require "csv"
# Going to store each line into an array.
output = []
# Loop over input from STDIN
ARGF.each do |line|
# Removes newlines and such.
line.chomp!
@acorn1010
acorn1010 / createGlobalStore.ts
Last active June 9, 2026 00:54
Easier Zustand store
import {SetStateAction, useCallback} from 'react';
import {create} from "zustand";
export type EqualityFn<T> = (left: T | null | undefined, right: T | null | undefined) => boolean;
export type StoreType<State> = {
use<K extends keyof State>(
key: K,
defaultValue?: State[K],
equalityFn?: EqualityFn<State[K]>,
//
// ContentView.swift
// teste
//
// Created by Renan Lins on 6/4/22.
//
import SwiftUI
class ViewModel: ObservableObject {
@bradtraversy
bradtraversy / django_cheat_sheet.md
Last active July 16, 2026 20:03
Django command cheat sheet

Django 2.x Cheat Sheet

Creating a virtual environment

We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder

python -m venv ./venv