Skip to content

Instantly share code, notes, and snippets.

@dasshield
dasshield / bootstrap.sql
Created August 15, 2024 09:38
users, orders, order_items bootstrap script
CREATE TABLE `users` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL,
PRIMARY KEY (`user_id`)
);
insert into `users` (user_id, email)
values (1, '***@yahoo.com'),
(2, '***@yahoo.com'),
(3, '***@yahoo.com'),
@BehnazMoradabadi
BehnazMoradabadi / conduit.md
Last active January 28, 2026 10:08
Install Conduit

Simple Guide: Setting Up Server and Docker

Step 1: Get Your Server from Hetzner

  1. Go to: https://accounts.hetzner.com/login
  2. Create account or login
  3. Click menu → Choose Console
  4. Click on Servers in left menu
  5. Click Add Server
  6. Choose:
@driesvints
driesvints / gist:70162727698210274c3982ad87b37ed5
Created January 27, 2026 12:45
Cloudflare PDF generation in Laravel.
// Controller method...
public function download()
{
return response()->streamDownload(function () use ($invoice) {
$token = config('services.cloudflare.api_token');
$accountId = config('services.cloudflare.account_id');
$cloudflareApi = 'https://api.cloudflare.com/client/v4';
echo Http::withToken($token)
->post($cloudflareApi.'/accounts/'.$accountId.'/browser-rendering/pdf', [
╭─── Claude Code v2.1.12 ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │ Tips for getting started │
│ Welcome back Jonny! │ Run /init to create a CLAUDE.md file with instructions for Claude │
│ │ │
│ │ ───────────────────────────────────────────────────────────────── │
│ ▐▛███▜▌ │ Recent activity
@intergalacticspacehighway
intergalacticspacehighway / SyncTextInputValidation.tsx
Last active January 28, 2026 09:43
Synchronous validation with React Native TextInput
import { TextInput } from 'react-native';
import Animated, {
useAnimatedRef,
useHandler,
dispatchCommand,
useEvent,
} from 'react-native-reanimated';
const AnimatedTextInput = Animated.createAnimatedComponent(TextInput);
@ksqsf
ksqsf / logseq.py
Last active January 28, 2026 09:20
Python interface to Logseq remote API
import requests
import json
# Doc site: https://plugins-doc.logseq.com/ .
# This list is auto-generated from https://github.com/logseq/plugins/tree/master/docs .
apis = [
'logseq.settings',
'logseq.updateSettings',
'logseq.once',
'logseq.toggleMainUI',
@zhouyl
zhouyl / proxy.pac
Last active January 28, 2026 09:18
Proxy.pac
function FindProxyForURL(url, host) {
var PROXY = "SOCKS5 10.1.2.79:8600; DIRECT;";
var DIRECT = "DIRECT";
var list = [
'*t.co*',
'*twitter.com*',
'*twimg.com*',
'*tinypic.com*',
'*twitpic.com*',
@kieranklaassen
kieranklaassen / SKILL.md
Last active January 28, 2026 09:37
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.


h scroll left
j scroll down
k scroll up
l scroll right
gg scroll to top of the page
G scroll to bottom of the page
f activate link hints mode to open in current tab
F activate link hints mode to open in new tab
r reload
@hotdogee
hotdogee / cloudskillsboost-skill-badge-labs-list.md
Last active January 28, 2026 08:41
Cloud Skills Boost Skill Badge Labs Full List

Cloud Skills Boost Skill Badge Labs Full List

  • 0/44 Skill Badges Completed, 44 Skill Badges to go!
  • 0/182 Labs Completed, 182 Labs to go! (19 Days)
  • The Arcade Trivia September 2024 Labs are considered in the sorting.
  • Skill Badges with the least amout of labs to complete are sorted first.
  • Updated: 2024/9/5

Skill Badge 1: Analyze BigQuery Data in Connected Sheets - 2 hours 45 minutes