Skip to content

Instantly share code, notes, and snippets.

@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active January 7, 2025 07:46
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
@RangHo
RangHo / git-commit-template
Last active January 7, 2025 07:46
Commit message template that conforms to the Conventional Commits standard. (See also: https://github.com/RangHo/dotfiles/tree/main/git)
# <type>(<scope>)!: <description> (72 characters maximum)
# |<--- preferably using up to 50 characters --->|<------------------->|
# Optional <body>
# |<------------- try limiting to 72 characters per line ------------->|
# Optional <footer>
# ----- END COMMIT MESSAGE -----
#
@maham
maham / microblocks.cfg
Created November 20, 2019 17:51
Forge multipart CBE microblock whitelist for the blocks of a few mods
#Configuration file for adding microblock materials for aesthetic blocks added by mods
#Each line needs to be of the form <name>:<meta>
#<name> is the registry key of the block/item enclosed in quotes. NEI can help you find these
#<meta> may be ommitted, in which case it defaults to 0, otherwise it can be a number, a comma separated list of numbers, or a dash separated range
#Ex. "dirt" "minecraft:planks":3 "iron_ore":1,2,3,5 "ThermalFoundation:Storage":0-15
# Embers Rekindeled
"embers:block_copper"
#"embers:block_lead" # Can't be cut by the saw
#"embers:block_silver" # Can't be cut by the saw

I've recently joined Amazon Dublin from India and got opportunities to interview with Meta London, Zalando Berlin & some other companies. I extensively researched about companies hiring internationally which support visa & relocation for Tech roles. So sharing list of companies:

Do consider to STAR, if it helped you.

London

@TolgaBagci
TolgaBagci / Cisco IOS Images for GNS3.md
Last active January 7, 2025 07:43
Cisco IOS Images for GNS3

Cisco IOS Images for GNS3

Working the CCNA exams with GNS3 software is a great way. But, you need Cisco IOS images for GNS3.

You can use many Cisco IOS images on GNS3, but most of them may be problematic.

I would recommend reading the related article to download Cisco IOS images running in GNS3.

Cisco IOS Images for GNS3

@callowidealist
callowidealist / Companies-Sponsoring-Visas-Globally.md
Last active January 7, 2025 07:41
Companies Sponsoring Visas Globally

The list is a combined version of Arijit's List and Shubheksha's List, and will be updated accordingly from time to time.

| Name | Location(s) | Roles sponsored | Careers page | Relocation bonus? | |-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|------

@andreaseriksson
andreaseriksson / convert_to_verified_routes.ex
Last active January 7, 2025 07:39
This is a mix task for converting old Phoenix routes to new verified routes
defmodule Mix.Tasks.ConvertToVerifiedRoutes do
@shortdoc "Fix routes"
use Mix.Task
@regex ~r/(Routes\.)(.*)_(path|url)\(.*?\)/
@web_module MyAppWeb
def run(_) do
Path.wildcard("lib/**/*.*ex")
@brandonmwest
brandonmwest / example.cs
Last active January 7, 2025 07:39
Generating base64-encoded Authorization headers in a variety of languages
httpClient.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue(
"Basic",
Convert.ToBase64String(
System.Text.ASCIIEncoding.ASCII.GetBytes(
string.Format("{0}:{1}", username, password))));
@tykurtz
tykurtz / grokking_to_leetcode.md
Last active January 7, 2025 07:38
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@aprovecharLab
aprovecharLab / spectrograms.ipynb
Created February 26, 2019 17:20
Fun with Continuous Wavelet Transform Spectrograms
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.