Skip to content

Instantly share code, notes, and snippets.

@gokulkrishh
gokulkrishh / media-query.css
Last active March 12, 2026 00:57
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@sinceohsix
sinceohsix / Installing LiveContainer+Sidestore.md
Last active March 12, 2026 00:56
Installing LiveContainer+SideStore from start to finish.

✴️ How to sideload with SideStore and LiveContainer

Last Edited: Dec 21, 2025 @ 6:34PM PST · Supports iOS versions 15.0 - 26.3 Beta

Make sure you are always using up-to-date guides to ensure full compatibility. The official SideStore documentation can be found here in case anything changes. For additional information and credits, scroll to the bottom of this page.


👋 Hello again, r/sideloaded!

This is version 2.0 of my iOS sideloading guide. By the end of this guide, you will be able to:

  • Sideload apps using SideStore
@badbye
badbye / free_doc88.js
Created February 8, 2022 04:39
免费下载道客巴巴的文档. download file from doc88.com without paying
$('#continueButton').click()
var keeps = $("#pageContainer").parentsUntil('body').toArray().concat($("#pageContainer").children().toArray())
var divs = $("div:not(#pageContainer)").toArray()
divs.filter(x => keeps.indexOf(x) < 0).forEach(x => x.remove())
window.print()
name description
vibecoder-review
Practical OWASP-focused security review for fast-moving codebases built with AI assistance - catches common patterns where speed trumps security (exposed secrets, auth bypasses, missing access controls, injection vulnerabilities)

Vibecoder Security Review

Overview

Target audience: Fast-moving codebases built by developers using AI assistance, rapid prototyping tools, and modern frameworks. These projects prioritize speed and iteration, often skipping security fundamentals.

@Issykul
Issykul / Office 2016 ISO Links at Microsoft.md
Created July 31, 2022 20:43
Office 2016 ISO Links at Microsoft
@Artur-at-work
Artur-at-work / CLAUDE.md
Created February 19, 2026 14:34
Claude Code setup from Boris Cherny

Workflow Orchestration

1. Plan Node Default

  • Enter plan mode for ANY non-trivial task (3+ steps or architectural decisions)
  • If something goes sideways, STOP and re-plan immediately - don't keep pushing
  • Use plan mode for verification steps, not just building
  • Write detailed specs upfront to reduce ambiguity

2. Subagent Strategy

  • Use subagents liberally to keep main context window clean
@mplekh
mplekh / tapegpt.py
Last active March 12, 2026 00:43
Karpathy's microgpt modified to use Wengert Tape architecture (Flat Array of Values instead of Graph of Objects)
import math
import random
random.seed(42)
# -----------------------------------------------------------------------------
# Tape-based Autograd Engine
# -----------------------------------------------------------------------------
class Tape:
@famzah
famzah / cookiebot-fix-LCP.css
Created November 22, 2025 08:13
Fix LCP Performance Issues with Cookiebot
/* ======================================
Cookiebot: global tweaks
====================================== */
/* Hide “powered by” bits + logos wrapper + header */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText,
div#CybotCookiebotDialogHeaderLogosWrapper,
div#CybotCookiebotDialogHeader {
display: none !important;
@kibotu
kibotu / INSTALL.md
Last active March 12, 2026 00:40
How to Run Qwen3.5 Locally With Claude Code (No API Bills, Full Agentic Coding)

Run Qwen 3.5 Locally with Claude Code — Zero API Bills, Full Agentic Coding

Your Mac has a GPU. Your Mac has RAM. Why are you paying someone else to think?

This guide gets you a fully local agentic coding setup: Claude Code talking to Qwen 3.5-35B-A3B via llama.cpp, all running on your Apple Silicon Mac. No API keys. No cloud. No surprise invoices. Just you, your M-series chip, and 35 billion parameters doing your bidding on localhost.

Based on this article.