Skip to content

Instantly share code, notes, and snippets.

@sundowndev
sundowndev / GoogleDorking.md
Last active December 18, 2025 03:09
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@ben-vargas
ben-vargas / config.json
Created December 11, 2025 23:00
Factory Droid CLI Config with CLIProxyAPI [ChatGPT Pro/Plus - Claude Pro/Max - Gemini AI Pro/Ultra]
{
"custom_models": [
{
"model_display_name": "Claude Opus 4.5 Thinking Low [Proxy]",
"model": "claude-opus-4-5-20251101(low)",
"base_url": "http://localhost:8317",
"api_key": "dummy-not-used",
"provider": "anthropic"
},
{
@neuneu9
neuneu9 / MecanimCheckPanel.cs
Created November 5, 2020 15:11
【Unity】Animatorのステートを自動取得してモーションを確認できるUIパネル(Editor only)
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
#if UNITY_EDITOR
using UnityEditor.Animations;
#endif
/// <summary>
/// Mecanimモーション確認用のUIパネル
/// </summary>
@mndambuki
mndambuki / officeActivator.bat
Created June 7, 2020 03:41
Activate Microsoft Office 2019
@echo off
title Activate Microsoft Office 2019 !
cls
echo ============================================================================
echo #Project: Activating Microsoft software products
echo ============================================================================
echo.
echo #Supported products:
echo - Microsoft Office Standard 2019
echo - Microsoft Office Professional Plus 2019
@randyprime
randyprime / entity_structure.odin
Last active December 18, 2025 03:05
ENTITY MEGASTRUCT
// the tl;dr -> https://storage.randy.gg/entity%20midwit.png
/*
ENTITY MEGASTRUCT
by randy.gg
This is an extremely simple and flexible entity structure for video games that doesn't make you want to
die when you're 20k lines deep in a project.
@RndmCodeGuy20
RndmCodeGuy20 / Live_Activities.md
Created August 11, 2025 14:35
iOS 18 Live Activity With Intents

🚀 Building Live Activities in iOS (Manual & Push Notification Updates)

Live Activities in iOS let you keep important, glanceable information right on the Lock Screen or Dynamic Island (on iPhone 14 Pro and newer) — perfect for things like order tracking, sports scores, or ride-sharing updates.

In this guide, we’ll build a pizza order tracking example using SwiftUI, ActivityKit, and WidgetKit, where we’ll update the Live Activity both manually and via push notifications.

We’ll cover:

  1. Project Setup
  2. Creating Attributes (Shared Data Model)