Skip to content

Instantly share code, notes, and snippets.

@RyanLua
RyanLua / fritzing.md
Last active July 4, 2025 13:44
Free download of Fritzing using the official download links

Fritzing Free Download

Important

You need to be logged into Fritzing for these download links to work.

Works by redirecting to the official release download. Visiting the links in the browser directly won't work and needs to be a redirect from a website such as Fritzing or GitHub.

Steps

  1. Sign up or log into https://fritzing.org

Приходилось ли вам устанавливать современные версии Windows? Если да, то, думаю, вам знаком установщик, каждый этап которого прогружается несколько секунд, и который яростно навязывает вам использование аккаунта Microsoft, с каждым обновлением делая использование локального аккаунта всё труднее и труднее.

Но существует альтернативный способ установить Windows — более быстрый, не требующий подключения к интернету и не навязывающий никаких сервисов — ручная установка с использованием CMD.

Если описать кратко, процесс состоит из следующих частей:

  1. Загрузка с установочного носителя
  2. Ручная разметка диска
  3. Применение WIM-образа (WIM — формат файлов, используемый Microsoft для хранения упакованных системных файлов Windows)
  4. Установка загрузчика
  5. Шаманство с реестром
@mateuszkwiatkowski
mateuszkwiatkowski / vscode-remote-ssh-freebsd.md
Last active July 4, 2025 13:42
Configure FreeBSD to work with VScode's remote ssh extension

This procedure was tested on FreeBSD-CURRENT build from d8819d88af52.

  1. Enable linuxulator and install linux userland:
    # sysrc linux_enable="YES"
    # service linux start
    # pkg install linux_base-c7
    
@iam-veeramalla
iam-veeramalla / headless-service-demo.md
Created June 9, 2025 15:12
Kubernetes Headless Service Demo

Headless Kubernetes Service

Service

apiVersion: v1
kind: Service
metadata:
  name: my-db-headless-service
spec:
@sohei1l
sohei1l / claude-revert-checkpoint.md
Last active July 4, 2025 13:41
CLAUDE.md rule for Git based Undo/Checkpoint in Claude Code

⚠️ MANDATORY SESSION RULES - MUST FOLLOW IMMEDIATELY

IMPORTANT: At the VERY START of any coding task, you MUST:

  1. Create a new branch using the format: claude-session-YYYYMMDD-[topic]
  2. Push the branch to origin
  3. Start committing changes immediately

Session Workflow

Starting a Session

@burkeholland
burkeholland / 4.1.chatmode.md
Last active July 4, 2025 13:41
4.1 Beast Mode v2
description tools
4.1 Beast Mode
changes
codebase
editFiles
extensions
fetch
findTestFiles
githubRepo
new
openSimpleBrowser
problems
readCellOutput
runCommands
runNotebooks
runTasks
runTests
search
searchResults
terminalLastCommand
terminalSelection
testFailure
updateUserPreferences
usages
vscodeAPI

IMPORTANT: There is currently a bug in VS Code Insiders where if you do not have the tools specified in the frontmatter, the mode will have access to no tools and will do nothing. For now, I am including the built-in tools in the front matter. I will update this when the issue is resolved as including tools EXCLUDES tools you don't specify but might need like MCP servers.


You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.

@Ryansoeasy
Ryansoeasy / .markdown
Created July 4, 2025 13:39
百分率計算機
@timvisee
timvisee / falsehoods-programming-time-list.md
Last active July 4, 2025 13:40
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).
@munificent
munificent / generate.c
Last active July 4, 2025 13:39
A random dungeon generator that fits on a business card
#include <time.h> // Robert Nystrom
#include <stdio.h> // @munificentbob
#include <stdlib.h> // for Ginny
#define r return // 2008-2019
#define l(a, b, c, d) for (i y=a;y\
<b; y++) for (int x = c; x < d; x++)
typedef int i;const i H=40;const i W
=80;i m[40][80];i g(i x){r rand()%x;
}void cave(i s){i w=g(10)+5;i h=g(6)
+3;i t=g(W-w-2)+1;i u=g(H-h-2)+1;l(u
@toy-crane
toy-crane / toss-frontend-rules.mdc
Last active July 4, 2025 13:39
토스 프론트엔드 가이드라인 기반으로 만든 Cursor rule
# Frontend Design Guideline
This document summarizes key frontend design principles and rules, showcasing
recommended patterns. Follow these guidelines when writing frontend code.
# Readability
Improving the clarity and ease of understanding code.