Skip to content

Instantly share code, notes, and snippets.

@hudsonbrendon
hudsonbrendon / omniroute-claude-code.md
Created August 21, 2026 20:09
Claude Code de graça com o OmniRoute — passo a passo

Claude Code de graça com o OmniRoute — passo a passo

O OmniRoute (diegosouzapw/OmniRoute, MIT) é um gateway que junta a cota gratuita que os provedores de IA te dão todo mês num endpoint só — e aponta o Claude Code pra lá. São 340+ provedores; somando as cotas free dá algo perto de 1,6 bilhão de tokens por mês.

Roda 100% na tua máquina. Nada de chave tua sai daqui.


@Druixd
Druixd / PropPlacementScatterer.cs
Last active September 10, 2026 19:35
a unity c# level design editor tool to scatter props around the scene
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
using Random = UnityEngine.Random;
public struct RandomPtAngleInstData
{
public Vector2 pointInDisc;
@ikbelkirasan
ikbelkirasan / writing-a-state-of-the-art-section.md
Created November 1, 2018 19:28
Writing the "Related Work" Section of a Paper/thesis

Writing the "Related Work" Section of a Paper/thesis

By: Chamin Morikawa (https://www.linkedin.com/pulse/writing-related-work-section-paperthesis-chamin-morikawa/)

For most students, writing about what they did on their own is not hard. But writing about others' work - which is what you have to do in the "State of the Art" or "Related Work" section - is quite hard for them. Here are a few guidelines to make this task a bit easier.

The Basics

Let's lay down our assumptions before continuing. I assume that you want to write a "Related Work" section for a research paper or a thesis that describes your approach to solve some problem. Let's also assume that there are other publications that attempt to solve the same problem, but the solutions in them are not perfect. Finally, let's assume that your approach has some difference when compared to those by others, and some improvement (faster, more accurate, easier to afford, etc.).

@a3geek
a3geek / PoissonDiskSampling.cs
Last active September 10, 2026 19:34
Fast Poisson Disk Sampling for Unity.
using System.Collections.Generic;
using UnityEngine;
namespace Gists
{
// The algorithm is from the "Fast Poisson Disk Sampling in Arbitrary Dimensions" paper by Robert Bridson.
// https://www.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf
public static class FastPoissonDiskSampling
{
@He-Is-HaZaRdOuS
He-Is-HaZaRdOuS / lineageos_microg.md
Last active September 10, 2026 19:32
Installing LineageOS + microG with Working SMS/Geolocation and Passing SafetyNet Without Google Accounts

Installing LineageOS + microG with Working SMS/Geolocation and Passing PlayIntegrity Without Google Accounts

This guide documents the process of installing LineageOS with microG and passing PlayIntegrity without logging into any Google accounts. It also ensures SMS and GPS functionality while maintaining privacy.


Prerequisites

  • A device compatible with LineageOS.
  • Familiarity with unlocking bootloaders, flashing custom ROMs, and using terminal commands.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SafeScan Oman — Prototype</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<style>
@rmi1974
rmi1974 / defrag_ext4_filesystem.md
Last active September 10, 2026 19:31
How to optimize / defrag ext4 filesystem #ext4 #commandlinefu

How to optimize / defrag ext4 filesystem

Make sure the target filesystem is sane

Open up the terminal and run:

sudo fsck.ext4 -y -f -v /dev/<disk/partition>
@folex
folex / тестирование.md
Created March 14, 2017 09:26 — forked from Paliri/тестирование.md
ссылки для QA

#Последовательность обучения

#Книги:

@ahbanavi
ahbanavi / update_dat_files.sh
Created July 5, 2024 10:51
update v2ray geofiles on openwrt passwall
#!/bin/ash
ASSETS_DIR="/usr/share/v2ray"
GEOIP_FILE_NAME="geoip.dat"
GEOSITE_FILE_NAME="geosite.dat"
RELEASE_BASE_URL="https://raw.githubusercontent.com/Chocolate4U/Iran-v2ray-rules/release/"
update_file() {
url="$RELEASE_BASE_URL$1"
current_file="$ASSETS_DIR/$1"
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">