See the new site: https://postgresisenough.dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S bash -c "docker run -p 8080:8080 -it --rm \$(docker build --progress plain -f \$0 . 2>&1 | tee /dev/stderr | grep -oP 'sha256:[0-9a-f]*')" | |
| # syntax = docker/dockerfile:1.4.0 | |
| FROM node:20 | |
| WORKDIR /root | |
| RUN npm install sqlite3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myBet = Math.floor(Math.random() * 3) + 1; | |
| var acceptChangeInitialBet = Math.floor(Math.random() * 2) + 1; | |
| function game(initialBet, changeInitialBet) { | |
| var portsAndPrizes = []; | |
| var carPort = Math.floor(Math.random() * 3) + 1; | |
| var newBet; | |
| var discardedDoor; | |
| var finalGoatDoor; | |
| var finalBet; |
- Use HolyLight(trap) on Cupoid [Terra Tower]
- Use HolyLight(trap) on Sun-of-a-Gun [Boss, Fort Dragonia]
- Use HolyLight(trap) on Miguel [Boss, Dead Sea
- Use HolyLight(trap) on Luxator [Boss, Terra Tower]
- Use HolyLight(trap) on TimeDevourer (Fused Dragon)(6) [Boss, Terra Tower]
- Use Ultranova(trap) on MegaStarky [Boss, Sky Dragon Isle]
- Use Ultranova(trap) on Sky Dragon [Boss, Sky Dragon Isle]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Progress bar for rsync | |
| ======================== | |
| Shows file progress and total progress as a progress bar. | |
| Usage | |
| --------- | |
| Run rsync with -P and pipe into this program. Example:: |
How a Popcorn Time fork patch could incentivize people to run thousands of new Tor relays
This is a follow-up to this discussion: Can NAT traversal be Tor's killer feature?
If torrents are P2P's killer application, and NAT traversal/"static IP" are Tor's (via hidden services), putting them together could prove to be the best incentivization scheme for growing the Tor network other than cold crypto cash.
Everybody knows you're not supposed to use torrents with tor, right?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright 2012 Eduardo Rolim | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, |