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 bash | |
| # Script to replace git history with original repo history using rebase | |
| set -e # Exit on error | |
| readonly MAIN_BRANCH='main' | |
| # Using commit hash instead of tag v2.2.5 to avoid clobbering local tags with remote tags | |
| readonly LEGACY_COMMIT='b92ac00feff206cbb7d3e9e4b48c494d6fedb3bf' # corresponds to v2.2.5 tag |
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
| $ curl --silent --dump-header - --output /dev/null https://docs.tigerbeetle.com | |
| HTTP/2 200 | |
| server: GitHub.com | |
| content-type: text/html; charset=utf-8 | |
| last-modified: Mon, 07 Apr 2025 16:29:51 GMT | |
| access-control-allow-origin: * | |
| strict-transport-security: max-age=31556952 | |
| etag: "67f3fd7f-6564" | |
| expires: Thu, 10 Apr 2025 17:22:37 GMT | |
| cache-control: max-age=600 |
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
| keepalive_timeout 120;$ | |
| $ | |
| proxy_set_header Host $http_host;$ | |
| proxy_set_header X-Real-IP $remote_addr;$ | |
| proxy_set_header X-Forwarded-Server $host;$ | |
| proxy_set_header X-Forwarded-Host $http_host;$ | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;$ | |
| proxy_redirect off;$ | |
| $ | |
| # This sets the IP used by Nginx to the client IP from the X-Forwarded-For$ |
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
| https://854f-64-135-133-111.ngrok-free.app/tools/hn-popularity/ |
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
| https://67d453cd028ce3401e7d76ee--refactoring-english.netlify.app/tools/hn-popularity/ |
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
| https://67d44c4347c59c21ec6966bc--refactoring-english.netlify.app/tools/hn-popularity/ |
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
| https://67d44a63d8a0792872a04e6c--refactoring-english.netlify.app/tools/hn-popularity/ |
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
| https://67d44732f343402391db14d3--refactoring-english.netlify.app/ |
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
| https://67d444f9d8a9881bed8a5549--refactoring-english.netlify.app/ |
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
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| "strings" | |
| "time" |
NewerOlder