Skip to content

Instantly share code, notes, and snippets.

Materiais e conteúdos de estudo para a certificação AWS Solutions Architect - Associate (SAA-C03)

Com o intuito de dar um help para quem está se preparando para a certificação AWS Solutions Architect - Associate (SAA-C03), resolvi reunir uma singela lista de materiais de estudo. Alguns desses materiais foram utilizados nos meus estudos, e outros são indicações de colegas.

Ah! Antes de selecionar seus materiais e definir sua forma de estudo, dá uma lida no Guia do Exame para entender melhor como ele funciona, qual o conteúdo exigido, entre outros tópicos.

Materiais gratuitos

Cursos

@drogbadvc
drogbadvc / 1492-search-profile-claim-checker.js
Created September 4, 2026 16:46
1492 Search Profile Claim Checker v1.0 — detect if a Google Knowledge Panel entity has a claimed Search profile
javascript:(()=>{window.__kpccCleanup?.();document.getElementById(%27kp-claim-checker%27)?.remove();const PRODUCT_NAME=%271492 Search Profile Claim Checker%27,VERSION=%271.0%27,CLAIM_SIGNAL=%27CLAIMED_CREATORS%27,lang=(document.documentElement.lang||%27en%27).toLowerCase(),fr=lang.startsWith(%27fr%27),t=fr?{claimed:%27REVENDIQUÉ%27,notClaimed:%27NON REVENDIQUÉ%27,unknown:%27STATUT INCONNU%27,noEntity:%27AUCUNE ENTITÉ%27,copy:%27Copier le KGMID%27,copied:%27Copié !%27,open:"Ouvrir l%27entité",yes:%27OUI%27,no:%27NON%27,unknownValue:%27INCONNU%27,close:%27Fermer%27,noEntityTitle:%27Aucune entité détectée%27,noEntityText:"Aucun Knowledge Panel associé à une entité Google n%27a été détecté sur cette page."}:{claimed:%27CLAIMED%27,notClaimed:%27NOT CLAIMED%27,unknown:%27STATUS UNKNOWN%27,noEntity:%27NO ENTITY%27,copy:%27Copy KGMID%27,copied:%27Copied!%27,open:%27Open entity%27,yes:%27YES%27,no:%27NO%27,unknownValue:%27UNKNOWN%27,close:%27Close%27,noEntityTitle:%27No entity detected%27,noEntityText:%27No Knowledge
@karpathy
karpathy / microgpt.py
Last active September 6, 2026 17:58
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@Obydux
Obydux / Fabric-Server-Optimization.md
Last active September 6, 2026 17:55
Fabric Server Optimization

Image Image

Fabric Server Optimization

This has been updated for 26.1 - 26.2, all of the optimization mods mentioned here are compatible with each other and don't affect vanilla behaviour by default.

Mods

@thoroc
thoroc / README.md
Last active September 6, 2026 17:52
How I scraped 2.1 million jobs (including 5,335 data science jobs)

How I scraped 2.1 million jobs (including 5,335 data science jobs)

original: https://www.reddit.com/r/datascience/comments/1iynyco/how_i_scraped_21_million_jobs_including_5335_data/

Background

During my PhD in Data Science at Stanford, I got sick and tired of ghost jobs & 3rd party offshore agencies on LinkedIn & Indeed. So I wrote a script that fetches jobs from 30k+ company websites' career pages and uses GPT4o-mini to extract relevant information (ex salary, remote, etc.) from job descriptions. You can use it here: (HiringCafe). Here is a filter for Data science jobs

# Agent-friendly architecture
Dune assumes many contributors arrive with a narrow prompt, a few nearby files, and no complete model of Sand. the locally obvious change the globally correct change. Unsafe shortcuts fail with an error that names the supporte
This page defines the contributor context model and the architecture choices that keep repeated local edits from
## Contract
A coding agent usually optimizes for what fits in its context:
- copy the nearest working pattern;
- edit the file already open;
@sebyx07
sebyx07 / wow-335a-linux.md
Created January 9, 2026 23:34
World of Warcraft 3.3.5a on Linux (Wine + DXVK)

World of Warcraft 3.3.5a on Linux (Wine + DXVK)

Complete guide to running World of Warcraft 3.3.5a (Wrath of the Lich King) on Linux for private servers.

Download

Warmane Client (~15 GB): Official Download

Alternative: Any 3.3.5a (12340) client works.

@wdormann
wdormann / readme.md
Last active September 6, 2026 17:51
Remote backups with Synology Hyper Backup and Tailscale

Overview

We hopefully all know the 3-2-1 backup rule:

  • Three copies of your data
  • On two different media
  • One copy off-site

It's this last part of the rule that usually trips people up. Nobody wants to pay for online storage until the end of time. While it's convenient, paying for this insurance storage that you may never actually use isn't the most cost effective thing to do. But there's an alternative, which I have implemented as a combination of Hyper Backup and Tailscale. The only requirement is that you have a friend with an internet connection. If you are a Synology NAS user, implementing this solution is quite easy. Other platforms can surely implement a similar strategy, but that'll be left as an exercise to the reader.

Depending on the amount of data you need to back up, and whether you want redundancy within your remote backups, you may see savings after just 1 year. When it comes to the DiskS

@wojteklu
wojteklu / clean_code.md
Last active September 6, 2026 17:45
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@ipaulsmith
ipaulsmith / audit-claude-code-skill.md
Created September 5, 2026 16:55
Read-only prompt for Claude Code: see what a third-party skill would run, install, read, send and change before you install it

Audit a Claude Code skill before you install it

A third-party skill is not a document. It is a set of instructions your agent will follow with your local permissions, plus whatever scripts, hooks and configs ship next to it, plus whatever it tells the agent to install. Treat it as untrusted until you have read what it can make the agent do.

This prompt runs a read-only audit inside Claude Code. It maps what the skill would execute, install, read, send over the network and change in your Claude config, follows the files SKILL.md references, treats the skill's own text as data rather than instructions, and returns a verdict with file:line evidence and the commit it reviewed. It installs and executes nothing.

Replace <SKILL_URL_OR_PATH> and paste the whole block into Claude Code.

Prompt