A practical guide to writing CVs that actually get interviews. Based on Jake’s Resume Template.
One page. No exceptions for interns/new grads. If you can’t fit everything, you’re not being selective enough.
A practical guide to writing CVs that actually get interviews. Based on Jake’s Resume Template.
One page. No exceptions for interns/new grads. If you can’t fit everything, you’re not being selective enough.
| #include <SPI.h> | |
| #include <WiFiNINA.h> | |
| #include <ArduinoJson.h> | |
| // Replace with your network credentials | |
| const char* ssid = ""; | |
| const char* password = ""; | |
| const char* server = ""; | |
| const int port = 8000; // FastAPI is on 8000 |
| # Git Cleanup Script. | |
| # Cleans up branches that no longer exist on the remote in all git repositories under the current directory. | |
| # Can force delete branches if they are fully merged, useful for squashed merges. | |
| Param( | |
| [switch]$force, | |
| [switch]$verbose | |
| ) | |
| function Get-DefaultBranch { |
| import os | |
| import unicodedata | |
| import logging | |
| from functools import reduce | |
| # Configure logging | |
| logging.basicConfig(filename='unicode_replacement.log', level=logging.INFO, | |
| format='%(asctime)s - %(message)s') | |
| def log_replacement(file, line_number, original, replacement): |