Skip to content

Instantly share code, notes, and snippets.

@djibe
djibe / windows11-24H2-tpm-secureboot.md
Last active November 4, 2025 08:56
Install Windows 11 24H2 without TPM and Secure Boot requirements

Install Windows 11 24H2 without TPM and Secure Boot requirements

  1. Create a Windows 11 ISO with Microsoft's Media Creation Tool
  2. Install Setup Patchium and run it (or try latest Rufus version directly and patch from there)
  3. Home tab: Select ISO, wait during processing
  4. Go to Install > Uncheck Remove upgrade and Check Disable Windows 11 compatibility restrictions, click Apply
  5. Optional: To install without a Microsoft account, go to Install OOBE tab. Click Integrate lumOOBE. This will break sysinstall.
  6. Click on Create ISO button
  7. Use Rufus or Ventoy (prefered) to run installation from a USB drive
// ==UserScript==
// @name Details Fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Sergii.Kropotov
// @match *://webview.ent.ukrgas.com.ua/*
// @grant none
// ==/UserScript==
@Ant1gon
Ant1gon / FilmixUpgrade.user.js
Last active October 3, 2023 05:32
Filmix Upgrade
// ==UserScript==
// @name Filmix Upgrade
// @name:uk Filmix Upgrade
// @namespace http://tampermonkey.net/
// @version 0.154
// @description small update for Filmix. Remove Ad blocks, remove "disable adblock" message, hide info, scale video frame size.
// @description:uk невелике оновлення для Filmix
// @author Ant1gon
// @match *://filmix.ac/*/*
// @grant none
@tanaikech
tanaikech / submit.md
Created July 11, 2018 04:41
Benchmark: Conditional Branch using Google Apps Script

Benchmark: Conditional Branch using Google Apps Script

July 11, 2018

Kanshi Tanaike

Introduction

@kleo
kleo / format.sh
Last active August 24, 2023 16:27
Format usb flash drive and mount as sdcard for the WiFi Pineapple Nano
#!/bin/bash
#2018 - Zylla - ([email protected])
#Format usb flash drive as sdcard for the WiFi Pineapple Nano
#Source https://forums.hak5.org/topic/39096-mana-attack-for-the-pineapple/?do=findComment&comment=303054
#You can also manually partition your usb flash drive on your computer
[[ -f /tmp/usb_format.progress ]] && {
exit 0
}
@thehelvetian
thehelvetian / embedded-file-viewer.md
Created November 1, 2017 03:45 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@sashachabin
sashachabin / #КР № 1 (ФО-350005, Васильев А., Чабин А.)
Last active August 3, 2021 12:57
УрФУ. Доклад REST API (Telegram bot, сайт УрФУ)
ФО-350005
Васильев А.М.
Чабин А.С.
Презентация:
bit.ly/urfu_botapi
Доклад по созданию бота в Telegram на базе API УрФУ.
--------------------------------------
class Block {
constructor(index, previousHash, timestamp, data, hash) {
this.index = index;
this.previousHash = previousHash.toString();
this.timestamp = timestamp;
this.data = data;
this.hash = hash.toString();
}
}
@gregjhogan
gregjhogan / random-string-generator.ps1
Last active February 5, 2025 17:14
Generate random string in powershell
#lowercase letters/numbers only
-join ((48..57) + (97..122) | Get-Random -Count 32 | % {[char]$_})
# all characters
-join ((33..126) | Get-Random -Count 32 | % {[char]$_})
@brson
brson / comodo.pem
Created July 14, 2016 20:11
comodo cert authority
-----BEGIN CERTIFICATE-----
MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB
hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G
A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV
BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5
MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT
EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR
Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh
dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR
6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X