Skip to content

Instantly share code, notes, and snippets.

@jstnlvns
jstnlvns / git: gitignore.md
Created November 16, 2018 19:42
a gitignore cheatsheet

Git sees every file in your working copy as one of three things:

  1. tracked - a file which has been previously staged or committed;
  2. untracked - a file which has not been staged or committed; or
  3. ignored - a file which Git has been explicitly told to ignore.

Ignored files are usually build artifacts and machine generated files that can be derived from your repository source or should otherwise not be committed. Some common examples are:

  • dependency caches, such as the contents of /node_modules or /packages
  • compiled code, such as .o, .pyc, and .class files
@takekazuomi
takekazuomi / csharp.gitignore
Created April 17, 2014 05:47
.gitignore for C#
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
@HoussemNasri
HoussemNasri / BalsamiqForever.py
Last active January 14, 2025 14:29
Extend your trial period for Balsamiq Wireframes on Windows and macOS Forever!
import json
import os
import time
import webbrowser
import sys
import re
def handleWindows(extra_seconds):
print("OS : Windows")
@rita3ko
rita3ko / cloudflare-dev-checklist.md
Last active January 14, 2025 14:29
cloudflare developer platform checklist

🧡 fork to keep track of and show off which cloudflare developer products you've used:

💻 compute

  • Workers
  • CI/CD
  • Observability
  • Static assets
  • Gradual deployment
  • Browser Rendering API
  • Rate limiting API