Skip to content

Instantly share code, notes, and snippets.

View lazuee's full-sized avatar
:shipit:
Lazuee

John Marlo Lapiz lazuee

:shipit:
Lazuee
View GitHub Profile
@lazuee
lazuee / winget-install-[jdk-jre].ps1
Created March 5, 2025 13:49
Winget: Install EclipseAdoptium JDK/JRE
$targetVersion = "23"
$ids = winget search EclipseAdoptium.Temurin | Where-Object { $_ -match "$targetVersion." } | ForEach-Object { [regex]::Match($_,'((EclipseAdoptium\.Temurin\.[\d]{1,2})\.(?=JDK|JRE)\S+)').Value }
$ids | ForEach-Object { winget install -e --id $_ }
@lazuee
lazuee / winget-install-vcredist-aio.ps1
Created February 15, 2025 17:30
Winget: Install Visual C++ Redistributable Runtimes AIO
$arch = ((systeminfo | findstr /C:"System Type") -replace 'System Type:\s*', '' -split '-')[0].Trim().ToLower()
$ids = winget search Microsoft.VCRedist | Where-Object { $_ -match $arch } | ForEach-Object { [regex]::Match($_,'(Microsoft\.VCRedist\S+)').Value }
$ids | ForEach-Object { winget install -e --id $_ }
@lazuee
lazuee / config.ts
Created January 24, 2025 12:38
Load configuration file
import { loadConfigFile } from "./load";
const { config } = await loadConfigFile("custom.config"); // custom.config.(?:json|[cm]?[tj]s)
console.log(config);
@lazuee
lazuee / remove-invalid-deployments.sh
Created January 13, 2025 17:28
Remove deployment for non-existent commits
#!/bin/bash
OWNER="lazuee"
REPO="react-router"
BRANCH="main"
deployment_shas=$(gh api repos/$OWNER/$REPO/deployments --jq '.[].sha')
existing_shas=$(gh api repos/$OWNER/$REPO/commits?sha=$BRANCH --jq '.[].sha')
for deployment_sha in $deployment_shas; do
@lazuee
lazuee / discord-quest.js
Created December 25, 2024 17:26
Complete the Discord quest by entering this code in the browser console.
(() => {
delete window.$;
let wpRequire;
window.webpackChunkdiscord_app.push([[Math.random()], {}, (req) => (wpRequire = req)]);
const findStore = (prop) => ["Z", "ZP"].map((x) => Object.values(wpRequire.c).find((y) => y?.exports?.[x]?.[prop])?.exports?.[x]).find(Boolean);
const findAPI = () => Object.values(wpRequire.c).find((x) => x?.exports?.tn?.get)?.exports?.tn;
const ApplicationStreamingStore = findStore("getStreamerActiveStreamMetadata");
const VoiceStateStore = findStore("getCurrentClientVoiceChannelId");
const RunningGameStore = findStore("getRunningGames");
@lazuee
lazuee / adobe-killer.ps1
Created October 28, 2024 14:58
Stop adobe running in the background and Block adobe in Host File
Function Priority {
$ErrorActionPreference = 'SilentlyContinue'
foreach ($root in 'HKCU', 'HKLM', 'HKU', 'HKCR') {
New-PSDrive -PSProvider Registry -Name $root -Root "HKEY_$root" | Out-Null
}
Set-ExecutionPolicy RemoteSigned -Force -Scope CurrentUser
$ErrorActionPreference = 'Continue'
}
Priority
@lazuee
lazuee / reimport.mjs
Created September 26, 2024 18:39
ESM import cache busting
import * as fs from "node:fs";
import * as path from "node:path";
let build = await reimport(path.resolve("build/index.js"));
export async function reimport(path) {
const stat = fs.statSync(path);
// convert build path to URL for Windows compatibility with dynamic `import`
const BUILD_URL = url.pathToFileURL(path).href;
@lazuee
lazuee / readme.md
Created August 28, 2024 16:19
Git commands - Cheatsheets

Hard reset to specific commit

git reset --hard <commit-id> && git push --force
@lazuee
lazuee / ngrok-rdp.yml
Created August 7, 2024 07:56
Windows 10 Free RDP - Ngrok
#.github/workflows/main.yml
name: Windows - Ngrok
on: workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
@lazuee
lazuee / Downloader.as
Created August 1, 2024 11:11
Actionscript 3 - Downloader
package {
import flash.events.*;
import flash.net.*;
import flash.utils.*;
import flash.filesystem.*;
import flash.display.MovieClip;
public class Downloader {