Skip to content

Instantly share code, notes, and snippets.

@prabhakhar
prabhakhar / vscode.settings
Created April 11, 2022 16:40
VS Code Settings with Gruvbox
{
"workbench.startupEditor": "newUntitledFile",
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"editor.fontFamily": "'Operator Mono Lig', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"go.useLanguageServer": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"editor.minimap.enabled": false,
@prabhakhar
prabhakhar / tmux-cheatsheet.markdown
Created February 5, 2023 06:15 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname

Python Essentials

Python is an experiment in how much freedom programmers need - Guido

This document captures some of the core python language contructs that will help problem solving and writing concise code. We will cover looping, iterators, generators, comprehension, and some general patterns for programming simple problems. We will also ponder some of the most useful standard library classes and functions.

https://xkcd.com/353/

Things like modules, packages, async, threading, etc., are not covered.