Discover gists
| # install python 3.9 in AWS EC2 | |
| cd /opt | |
| wget https://www.python.org/ftp/python/3.9.16/Python-3.9.16.tgz | |
| tar -xvf Python-3.9.16.tgz | |
| cd Python-3.9.16 | |
| ./configure --enable-optimizations | |
| make altinstall | |
| python3.9 -V | |
| python3.9 -m pip install --upgrade pip | |
| python3.9 -m pip install --upgrade setuptools |
| (() => { | |
| let gadgets = []; | |
| if (typeof _satellite !== 'undefined') { | |
| gadgets.push('Adobe Dynamic Tag Management'); | |
| } | |
| if (typeof BOOMR !== 'undefined') { | |
| gadgets.push('Akamai Boomerang'); | |
| } |
Started: 2026-05-06
Commit: 455bebc2c7 (master)
Scope: 178k LoC C, lib/ + src/
Code links: https://github.com/curl/curl/tree/455bebc2c76223a1be26042f6d2393715c0df0cd (all line refs below pin to this commit)
curl is one of the most fuzzed and audited C codebases in existence (OSS-Fuzz, Coverity, CodeQL, multiple paid audits). Finding anything in the hot paths (HTTP/1, TLS, URL parsing core) is unlikely. Focus instead on:
| /* | |
| * This example demonstrates creating a concert ticket using the creator templates. | |
| * | |
| * Run as: go run pdf_concert_ticket.go | |
| */ | |
| package main | |
| import ( | |
| "bytes" |
Um parágrafo da descrição do projeto vai aqui
Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste.
Consulte Implantação para saber como implantar o projeto.
A discipline for checks that can't be fooled by the same mistake that produced the work.
Abstract. When the author of a piece of work — an LLM, or a human moving fast — can be confidently and silently wrong, the usual defenses fail quietly: a test written from the same mistaken assumption as the code passes while the code is broken. MFIC is the class of check that escapes this trap, defined by four properties that must all hold at once. It is Mechanical (cases swept by machine, not hand-picked, so nothing is silently omitted), Falsifiable (each case genuinely bites when the work is wrong, on inputs you couldn't pre-arrange to pass), Independent (its verdict comes from the contract or the data — a source the producer doesn't control — which is segregation of duties restated for software), and a real Control (it holds the authority to block the bad outcome, not merely log it). This is the COSO / Sarbanes-Oxley model of internal co