This file contains 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
/nix/store/6swv2fhsfcdbrzf4xnyrm5nzk55yp7p6-powershell-7.4.1 | |
├── bin | |
│ └── pwsh | |
└── share | |
└── powershell | |
├── JetBrains.Annotations.dll | |
├── Json.More.dll | |
├── JsonPointer.Net.dll | |
├── JsonSchema.Net.dll | |
├── LICENSE.txt |
This file contains 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
steamservice.so: file format elf32-i386 | |
steamservice.so | |
architecture: i386, flags 0x00000150: | |
HAS_SYMS, DYNAMIC, D_PAGED | |
start address 0x0002b000 | |
Program Header: | |
LOAD off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**12 | |
filesz 0x000289c4 memsz 0x000289c4 flags r-- |
This file contains 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
{ lib, fetchFromGitHub, rustPlatform }: | |
rustPlatform.buildRustPackage rec { | |
pname = "lnshot"; | |
version = "v0.1.3"; | |
src = fetchFromGitHub { | |
owner = "ticky"; | |
repo = pname; | |
rev = version; |
This file contains 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
{ config, pkgs, ... }: | |
{ | |
# This value determines the Home Manager release that your configuration is | |
# compatible with. This helps avoid breakage when a new Home Manager release | |
# introduces backwards incompatible changes. | |
# | |
# You should not change this value, even if you update Home Manager. If you do | |
# want to update the value, then make sure to first check the Home Manager | |
# release notes. |
This file contains 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
{ config, pkgs, ... }: | |
{ | |
# This value determines the Home Manager release that your configuration is | |
# compatible with. This helps avoid breakage when a new Home Manager release | |
# introduces backwards incompatible changes. | |
# | |
# You should not change this value, even if you update Home Manager. If you do | |
# want to update the value, then make sure to first check the Home Manager | |
# release notes. |
This file contains 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
$UsedPath = Get-ChildItem -Path . -Name "UsedInstallers" | |
if (!$UsedPath) { | |
$UsedPath = New-Item -ItemType Directory -Name "UsedInstallers" | |
} | |
Write-Host $UsedPath | |
Get-ChildItem -Filter 'python-*.exe' | ForEach { | |
#$Command = ".\$_ /passive InstallAllUsers=1 CompileAll=1 Include_doc=0 Include_debug=1 Include_symbols=1" | |
#$Command = ".\$_ /?" | |
#Write-Host $Command | |
#Invoke-Expression "$Command" |
This file contains 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
#!/usr/bin/env python3 | |
# very lazy script to generate the Title Info Entry for title.db | |
import argparse | |
import random | |
parser = argparse.ArgumentParser(description='Generate Title Info Entry.') | |
parser.add_argument('-o', help='output filename', type=argparse.FileType('wb'), required=True) | |
parser.add_argument('-v', help='title version', type=int, required=True) |
This file contains 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
#!/usr/bin/env python3 | |
# This file is a part of panopticon-2. | |
# | |
# Copyright (c) 2019 Ian Burgwin | |
# This file is licensed under The MIT License (MIT). | |
# You can find the full license text in LICENSE.md in the root of this project. | |
import argparse | |
import base64 |
This file contains 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
#!/bin/bash | |
cd `dirname "$0"` | |
echo Booting Hekate with HBL... | |
echo ------------------------------ | |
sudo python3 ./bin/fusee-launcher.py -w bin/payload.bin | |
echo ------------------------------ | |
sleep 3 | |
exit |
This file contains 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
#!/usr/bin/env python3 | |
from datetime import datetime | |
from os import stat | |
from sys import argv, exit | |
from shutil import copy2 | |
from Foundation import NSUserNotification | |
from Foundation import NSUserNotificationCenter | |
from Foundation import NSUserNotificationDefaultSoundName |
NewerOlder