git status git log --oneline --decorate -5
git branch backup/$(date +%Y%m%d-%H%M)-before-rebase
git fetch origin git rebase origin/main
| // ==UserScript== | |
| // @name Block Tweet Responders | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Blocks all users who replied to a tweet starting from the 5th reply | |
| // @author me | |
| // @match https://x.com/* | |
| // @grant none | |
| // ==/UserScript== |
| I wasn't first to get the key. Nor was I second, third, or even fourth. I'm probably not even the | |
| 10th to get it (ok, looks like I was the 8th.) But I'm happy that I was able to prove to myself | |
| that I too could do it. | |
| First, I have to admit I was a skeptic. Like the handful of other dissenters, I had initially | |
| believed that it would be highly improbable under normal conditions to obtain the private key | |
| through exploiting Heartbleed. So this was my motivation for participating in Cloudflare's | |
| challenge. I had extracted a lot of other things with Heartbleed, but I hadn't actually set out to | |
| extract private keys. So I wanted to see first-hand if it was possible or not. |
| { | |
| "success": true, | |
| "credits_left": 100, | |
| "rate_limit_left": 100, | |
| "daily_rate_limit_left": 100, | |
| "minute_rate_limit_left": 499, | |
| "next_minute_rate_limit_reset": "2025-08-10T02:18:30.000Z", | |
| "person": { | |
| "publicIdentifier": "kmcloudarchsre", | |
| "linkedInIdentifier": "ACoAAEq9nhUBY5ESVSgACedysR_YLndYv-XJtRI", |
| # Step 1: Remove Snap version of OpenJDK (if installed) | |
| sudo snap remove openjdk | |
| # Step 2: Clean up unused Snap revisions | |
| sudo snap set system refresh.retain=2 | |
| sudo snap remove --purge $(snap list --all | awk '/disabled/{print $1, $2}' | while read snapname version; do echo "$snapname --revision=$version"; done) | |
| # Step 3: Refresh Snap system | |
| sudo snap refresh |
| <template> | |
| <div id="app"> | |
| <h1>{{ message }}</h1> | |
| <p> | |
| Learn more with the | |
| <a href="https://vuejs.org/" target="_blank" rel="noopener"> | |
| Vue Docs & Resources | |
| </a> | |
| . |
| <template> | |
| <div id="app"> | |
| <h1>{{ message }}</h1> | |
| <p> | |
| Learn more with the | |
| <a href="https://vuejs.org/" target="_blank" rel="noopener"> | |
| Vue Docs & Resources | |
| </a> | |
| . |
| <input id="image-selector-input" style="visibility:hidden;" type="file"> | |
| <div class="container"> | |
| <canvas></canvas> | |
| </div> | |
| <script type="x-shader/x-fragment" id="vertShader"> | |
| precision highp float; |