About this report. This is a consolidation written by Claude (Opus 4.7 xhigh) at the user's request, distilling sessions from multiple coding agents (Claude, Codex, others) over ~1 month of intermittent investigation. The user has not line-by-line verified every claim — retroactive verification of incremental work spread across many sessions is itself impractical — but the reproductions, source-code references, and minimal repro scripts shipped alongside this document all run today. Treat this as a useful field reference for
miseon Windows, not a definitive specification.The user's broader goal, of which this report is one piece: a single, unified shell + tool-manager setup across Mac, Linux, and Windows. Mac and Linux unify naturally. Windows is the awkward one. Going all-in on WSL would be the easy unification path, but it is not practical here — WSL consumes system resources that the user prefers to dedicate to other programs, and modern Wi
This userscript fixes a very "unintended" behavior on x.com where pressing the Back or Forward buttons on a mouse over sponsored posts can open advertiser links in a new tab without an actual, intentional click.
Some sponsored posts on x.com (for example, ads showing From didit.me) attach click and mouseup handlers that do not properly check which mouse button triggered the event.
As a result, pressing the mouse Back button (button 3) while the pointer is over an ad image or video is treated as a valid click, causing x.com to call window.open() and open the advertiser link in a new tab.
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
| sudo vim /etc/locale.gen | |
| # uncoment en_US and pt_BR (both ISO e UTF) | |
| sudo locale-gen | |
| sudo vim /etc/locale.conf | |
| # LANG=en_US.UTF-8 | |
| # LC_COLLATE=en_US.UTF8 | |
| sudo pacman --noconfirm -Syyyyu | |
| sudo pacman -S zsh git vim tk terminator elementary-icon-theme chrome-gnome-shell albert fasd yaourt lynx python-pip muparser vlc docker meld gdm linux-headers |
This file has been truncated, but you can view the full file.
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
| [ | |
| {"Number":1,"Gender":"male","GivenName":"Leonardo","MiddleInitial":"P","Surname":"Souza","StreetAddress":"Rua Coromandel 1718","City":"Contagem","State":"MG","StateFull":"Minas Gerais","ZipCode":"32186-320","EmailAddress":"LeonardoPintoSouza@gustr.com","Username":"Otioure93","TelephoneNumber":"(31) 9326-4184","TelephoneCountryCode":55,"MothersMaiden":"Martins","Birthday":"2/19/1993","Age":23,"CCType":"Visa","CCNumber":4929974400186397,"CVV2":796,"CCExpires":"11/2021","NationalID":"173.730.067-28","Occupation":"Sales worker driver","Vehicle":"1998 Ford Ranger","Company":"Peaches","Latitude":-19.899046,"Longitude":-44.016137,"GUID":"96d9fbd0-91c9-4a18-a7eb-a21a5adc69eb"}, | |
| {"Number":2,"Gender":"male","GivenName":"Cauã","MiddleInitial":"P","Surname":"Castro","StreetAddress":"Bloco Vinte e Nove 1316","City":"Belém","State":"PA","StateFull":"Pará","ZipCode":"66090-780","EmailAddress":"CauaPintoCastro@superrito.com","Username":"Sataked82","TelephoneNumber":"(91) 4977-7042","TelephoneCountryCode":55,"MothersMaiden" |
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
| # Prepare pacman | |
| sudo mkdir -p /root/.gnupg | |
| sudo pacman-key --init && sudo pacman-key --populate archlinux manjaro && sudo pacman-key --refresh-keys | |
| # Remove packages | |
| sudo pacman -R empathy accerciser gnome-chess gnome-sudoku gnome-tetravex polari five-or-more four-in-a-row steam-native ipython hitori gnome-klotski steam quadrapassel gnome-nibbles aisleriot lightsoff gnome-mahjongg gnome-mines iagno gnome-robots tali swell-foop | |
| # Upgrade all | |
| sudo pacman -Syyu |
This file has been truncated, but you can view the full file.
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
| __SSTOKENSTRING = "@generated SignedSource<<dbe928e1275c495c1922c1bf063ffb70>>"; | |
| ! function(e) { | |
| function t(e) { | |
| function t() { | |
| var t = Array.prototype.map.call(arguments, function(e) { | |
| if (null == e) return null === e ? "null" : "undefined"; | |
| if ("string" == typeof e) return '"' + e + '"'; | |
| try { | |
| return JSON.stringify(e) |
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 InVision-AndroidSkins | |
| // @description InVision-AndroidSkins | |
| // @include https://projects.invisionapp.com/* | |
| // @version 1.0 | |
| // ==/UserScript== | |
| function applySkin(options) { | |
| var skinCss = "#preview .mobileSkin.htcOne-portrait { background: url('" + options.backgroundImageUrl + "') no-repeat; height: " + options.skinHeight + "; } " |
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
| $.getScript("http://momentjs.com/downloads/moment.min.js", function() { | |
| $.getScript("https://raw.github.com/eligrey/FileSaver.js/master/FileSaver.js", function() { | |
| var SUBTITLE_DELAY = parseInt(prompt("Subtitle delay", "10800"), 10); | |
| var zero = moment(); | |
| zero.hour(0).minute(0).second(0).milliseconds(0); | |
| var legendas = []; | |
| $('[class="transcriptLink"]').each(function() { | |
| var elapsedMs = parseInt(this.href.split("#")[1], 10); | |
| legendas.push({ |
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
| function Modal(target, options) { | |
| this.target = target ; | |
| this.options = options; | |
| } | |
| Modal.prototype.show = function() { | |
| } | |
| $.fn.modal = function(options) { | |
| ... // instanciar e armazenar o plugin --> new Modal($(this), options) |
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
| DUMP_IGNORE = {os = 1, io = 1, table = 1, _VERSION = 1, math = 1, love = 1, string = 1, package = 1, _G = 1, DUMP_IGNORE = 1, ndump = 1, xpcall = 1, unpack = 1, type = 1, require = 1, setmetatable = 1, next = 1, pairs = 1, ipairs = 1, dofile = 1, collectgarbage = 1, load = 1, loadfile = 1, loadstring = 1, module = 1, pcall = 1, gcinfo = 1, getmetatable = 1, error = 1, debug = 1, coroutine = 1, assert = 1, tonumber = 1, tostring = 1, setfenv = 1, arg = 1, argv = 1, dumpAll = 1, dumpUserData = 1, getfenv = 1, newproxy = 1, select = 1} | |
| function ndump(object, map, visited, prefix, ignoredMap) | |
| map = map or {} | |
| ignoredMap = ignoredMap or {} | |
| visited = visited or {} | |
| if object ~= nil and visited[object] == nil then | |
| visited[object] = true | |
| for k, v in pairs(object) do | |
| local useMap = not prefix and DUMP_IGNORE[tostring(k)] ~= nil and ignoredMap or map |