Skip to content

Instantly share code, notes, and snippets.

View MadeBaruna's full-sized avatar

Made Baruna MadeBaruna

  • Indonesia
View GitHub Profile
@MadeBaruna
MadeBaruna / read.ps1
Last active November 2, 2023 03:52
$code = @"
using System;
using System.Runtime.InteropServices;
using System.Text;
public class ClipboardGetter
{
#region Win32 Native PInvoke
[DllImport("User32.dll", SetLastError = true)]
@MadeBaruna
MadeBaruna / README.md
Last active May 6, 2024 17:24
Get Genshin Impact wish history link
@MadeBaruna
MadeBaruna / importer.ps1
Last active April 24, 2024 12:35
Paimon.moe Local Importer (Windows)
Add-Type -AssemblyName System.Web
Write-Host "Paimon.moe Wish Importer" -ForegroundColor Cyan
Write-Host "1. Open Genshin Impact in this PC"
Write-Host "2. Then open the wish history and wait it to load"
Write-Host "3. When you are ready press [ENTER] to continue! (or any key to cancel)"
Write-Host "Waiting..."
$keyInput = [Console]::ReadKey($true).Key
if ($keyInput -ne "13") {
@MadeBaruna
MadeBaruna / config.json
Created August 15, 2018 09:40
AccounKit API Backend Example
{
"APP_ID": "{{YOUR_APP_ID}}",
"APP_SECRET": "{{YOUR_APP_SECRET}}",
"JWT_SECRET": "{{YOUR_JWT_SECRET}}"
}