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
| So today's conversations (2ae8fb83, 44545b7a, 55a9ec25, 94454946, 8d2287e2, 16885ec5, 5b0bc8ba, 9c070602) are all absent from trajectorySummaries. These IDs don't exist in the store at all — meaning Antigravity simply never indexed them. | |
| This is a bug: those conversations were created but the summary/index entry was never written. The sidebar has no data to show them under any workspace. | |
| The unfixable part: The .pb files are encrypted — we can't read the workspace out of them. And we can't easily forge valid protobuf entries into trajectorySummaries without knowing the full schema + the encrypted conversation title/data. | |
| Practical options: | |
| Nothing to do for past conversations — those 7+ sessions are invisible in per-workspace view permanently unless Antigravity adds a "re-index" feature |
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
| === START CALAMARES 3.3.5 | |
| 2025-03-18 - 21:48:46 [6]: void CalamaresApplication::init() | |
| 2025-03-18 - 21:48:46 [6]: Calamares version: 3.3.5 | |
| 2025-03-18 - 21:48:46 [6]: .. Using Qt version: 5.15.13 | |
| 2025-03-18 - 21:48:46 [6]: .. Build type: None | |
| 2025-03-18 - 21:48:46 [6]: .. Using PyBind11 | |
| 2025-03-18 - 21:48:46 [6]: .. Using settings: "/etc/calamares/settings.conf" | |
| 2025-03-18 - 21:48:46 [6]: .. Using log file: "/home/lubuntu/.cache/calamares/session.log" | |
| 2025-03-18 - 21:48:46 [6]: .. Languages: ("ar", "as", "ast", "az", "az_AZ", "be", "bg", "bn", "ca", "ca@valencia", "cs_CZ", "da", "de", "el", "en", "en_GB", "eo", "es", "es_AR", "es_MX", "et", "eu", "fa", "fi_FI", "fr", "fur", "gl", "he", "hi", "hr", "hu", "id", "is", "it_IT", "ja", "ka", "ko", "lt", "ml", "mr", "nb", "nl", "oc", "pl", "pt_BR", "pt_PT", "ro", "ru", "si", "sk", "sl", "sq", "sr", "sr@latin", "sv", "tg", "th", "tr_TR", "uk", "vi", "zh_CN", "zh_TW") | |
| 2025-03-18 - 21:48:46 [6]: bool Calamares::initQmlModulesDir() |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Scroll Positions and Distances</title> | |
| <style> | |
| body { | |
| height: 3000px; /* Adding white space */ | |
| } |
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
| #[derive(Debug, Deserialize, Serialize, ORM)] | |
| #[orm(table = "cakes")] | |
| struct Cake { | |
| #[orm(primary_key)] | |
| id2: Option<i32>, | |
| name: String, | |
| flavor: Option<String>, | |
| #[orm(skip)] | |
| test: Option<String>, | |
| } |
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
| // ==UserScript== | |
| // @name zenmod unblur | |
| // @version 1 | |
| // @grant GM_addStyle | |
| // @include https://chel.zenmod.shop/* | |
| // @include http://*.zenmod.shop/* | |
| // @run-at document-start | |
| // @author EugeneBos | |
| // ==/UserScript== |
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
| { | |
| "global": { | |
| "check_for_updates_on_startup": true, | |
| "show_in_menu_bar": true, | |
| "show_profile_name_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { |
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
| SharpKeys install and | |
| swap left ctrl and alt | |
| capslock - home | |
| NumLock - turn off | |
| Ins - turn off | |
| .ahk file put in startup folder and install https://www.autohotkey.com/ | |
| C:\Users\gp\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. |
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
| swapping alt & ctrl with gnome tweaks: | |
| https://askubuntu.com/questions/93624/how-do-i-swap-left-ctrl-with-left-alt-on-my-keyboardkeyboardkeyboardkeyboardkeyboard | |
| sudo gedit /usr/share/X11/xkb/symbols/pc | |
| compare it with (ignore capslock change) | |
| https://gist.github.com/postrational/dd305349bb69f6e25ef0f21809a927eb | |
| #setxkbmap -layout us |
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
| #!/bin/bash | |
| loop=0 | |
| while [ $loop -lt 5000 ]; do | |
| echo 'launched' | |
| /usr/local/bin/php /home/e/eugenebos/makedreamprofits.ru/public_html/mailwizz/apps/console/console.php send-campaigns & | |
| sleep 10 | |
| loop=$(($loop+1)) | |
| done |
NewerOlder