A reasoning framework for AI-assisted development where clarity comes first.
AI coding assistants act before thinking. They:
| <html><head></head><body><div style="width: 1000px; height: 1000px; background-color: lightblue; overflow: scroll;"><div style="grid-template-columns: 50px [start] repeat(100, 50px) [end]; grid-template-rows: 24px [start] repeat(100, 24px) [end]; width: 5000px; height: 2400px; display: grid; position: relative;"><div style="display: grid; grid-template-columns: subgrid; grid-template-rows: subgrid; grid-area: start / start / end / end; position: relative;"><div style="background-color: white;">E0</div><div style="background-color: whitesmoke;">E1</div><div style="background-color: white;">E2</div><div style="background-color: whitesmoke;">E3</div><div style="background-color: white;">E4</div><div style="background-color: whitesmoke;">E5</div><div style="background-color: white;">E6</div><div style="background-color: whitesmoke;">E7</div><div style="background-color: white;">E8</div><div style="background-color: whitesmoke;">E9</div><div style="background-color: white;">E10</div><div style="background-color: w |
| // Plain ol' JavaScript module for fetching feature flags from the server | |
| // | |
| // import { isEnabled } from './flipper.js' | |
| // | |
| // if (await isEnabled("new_feature")) { | |
| // // render new feature | |
| // } else { | |
| // // render old feature | |
| // } | |
| // |
Based on https://busylog.net/telnet-imap-commands-note/
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| #!/usr/bin/env bash | |
| help() { | |
| echo NAME | |
| echo " compatdata.sh - create \"by-game\" symlink folder for every compatdata folder on this machine" | |
| echo | |
| echo SYNOPSIS | |
| echo " compatdata.sh [-h] [-p]" | |
| echo | |
| echo OPTIONS |
One of biggest barriers when trying to get started with Kubernetes is that there's so much content out there that it's kinda overwhelming - and that's totally normal! The intent of this document is to try and provide directed resources in a roadmap like fashion to understand and learn about the horizontals of Kubernetes - post which you can dive deep into any vertical while keeping the bigger picture in mind - that this document hopes to provide.
This is a set of resources for different topics that I found particularly helpful when getting started, and hopefully you do too! I've tried to list them out in order of consumption. If A comes before B under a subtopic, then it's probably that A has topics needed for B, or that A attempts to explain topics of B in a slightly simpler (not nescessarily better) manner than B.
Feel free to skip over if you're already familiar with containers and have some idea about what they are and why they exist.
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others. It implements ECMAScript and WebAssembly, and runs on Windows 7 or later, macOS 10.12+, and Linux systems that use x64, IA-32, ARM, or MIPS processors. V8 can run standalone, or can be embedded into any C++ application.
SpiderMonkey is Mozilla’s JavaScript and WebAssembly Engine, used in Firefox, Servo and various other projects. It is written in C++, Rust and JavaScript. You can embed it into C++ and Rust projects, and it can be run as a stand-alone shell. It can also be [compiled](https://bytecodealliance.org/articles/making-javascript-run-fast-on
Una herramienta PowerShell para descargar modelos de Ollama usando aria2 con soporte de reanudación de descargas y verificación de integridad.