yarn create redwood-app javascript-jam-redwood
cd javascript-jam-redwood
yarn rw devOpen localhost:8910
| cd $HOME/Downloads && mkdir preview7 && cd preview7 && wget -c https://download.visualstudio.microsoft.com/download/pr/75df8900-3c7c-4c83-a142-ac464aba5424/2b9621b80f3e6777d436f6aabaaced27/dotnet-host-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/14afe93a-0608-455f-835d-21bad58b79c5/0bdf5dea07ed8b2724a4a9b4f2e291c5/dotnet-hostfxr-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/e091a028-ba39-4fa7-b67e-ea94cc17c796/486715c7f03753721d3e36eb2802b78a/dotnet-runtime-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/24905020-03ea-4cfc-9362-c48067865fb1/9bf81548b0121de0e92565d99b2680c0/aspnetcore-runtime-3.0.0-preview7.19365.7-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/0262539c-3137-4a86-9df4-f82896d16317/d8756586ecd9f55097d89f45de523059/dotnet-targeting-pack-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.micr |
| (function (i, l) { | |
| var v = function (d) { | |
| var b = 1364972901; | |
| var g = d.split("g") | |
| .filter(Boolean) | |
| .map(function (d) { | |
| return String.fromCharCode(parseInt(d, 16) ^ b) | |
| }) | |
| .join(""); | |
| return c(g) |
| // ==UserScript== | |
| // @name B4A | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Simply gets the characters count towards a message | |
| // @author 0x90 | |
| // @match https://*.board4all.biz/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=board4all.biz | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.6.0.slim.min.js |
| #! python3 | |
| import pyautogui, keyboard, sys | |
| print('Press Ctrl-C to quit.') | |
| try: | |
| while True: | |
| x, y = pyautogui.position() | |
| # if active window contains "youtube" | |
| if keyboard.is_pressed('shift'): | |
| # keep mouse at the same position |
Here are some useful CLR commands for analyzing and debugging .NET applications. They can be used in various debugging tools like WinDbg, SOS Debugging Extension, and others.
These commands can be used to analyze the heap and memory of the managed process.
!dumpheap [-stat] [-type ]Aquí hay algunos comandos CLR útiles para analizar y depurar aplicaciones .NET. Se pueden usar en varias herramientas de depuración como WinDbg, SOS Debugging Extension y otros.
En el contexto de la ingeniería inversa, es importante tener un profundo conocimiento tanto del software que se está analizando como de las técnicas que se utilizan para analizarlo. Solo conociendo ambos se puede esperar superar con éxito los desafíos presentados por la ingeniería inversa.
Estos comandos se pueden utilizar para analizar el heap y la memoria del proceso administrado.
| [ | |
| { | |
| "ID": 1, | |
| "STATE_CODE": "AK", | |
| "STATE_NAME": "Alaska", | |
| "CITY": "Adak", | |
| "COUNTY": "Aleutians West", | |
| "LATITUDE": 55.999722, | |
| "LONGITUDE": -161.207778 | |
| }, |
| #!/usr/bin/env bash | |
| # ============================================================================= | |
| # Robust fastfetch config installer with backups and safety checks | |
| # Author: You (or me 😉) | |
| # Config source: https://github.com/harilvfs/fastfetch (old-days branch) | |
| # ============================================================================= | |
| set -euo pipefail # Strict mode: exit on error, undefined var, or pipe failure | |
| CONFIG_URL="https://raw.githubusercontent.com/harilvfs/fastfetch/refs/heads/old-days/fastfetch/config.jsonc" |