Skip to content

Instantly share code, notes, and snippets.

View Abhinickz's full-sized avatar
💻
Full Stack Developer

Abhishek Bhasker Abhinickz

💻
Full Stack Developer
View GitHub Profile
echo "GET http://google.com" | vegeta attack -duration=5s -rate=2 -cert=/path/to/certificate.pem | tee results.bin | vegeta report
cat results.bin | vegeta plot > plot.html

Keybase proof

I hereby claim:

  • I am abhinickz on github.
  • I am abhinickz (https://keybase.io/abhinickz) on keybase.
  • I have a public key ASCH9AfNUviA7T8ISy84Y7W47Xw8Y2sWYHsRaZLmk0W4nAo

To claim this, I am signing this object:

CREATE TABLE public.test (
id SERIAL,
username varchar NULL,
name varchar NULL
);
INSERT INTO public.test (username, name)
VALUES
('Abhinickz','OWNER'),
('Abhasker','EMPLOYEE'),
@Abhinickz
Abhinickz / win10_binary_fission.md
Created January 24, 2023 02:08 — forked from dragon788/win10_binary_fission.md
Making the Windows 10 "chubby" install.wim compatible with a FAT32 USB so a UEFI bootable USB can be created from Linux/macOS/ChromeOS

MAGIC aka Making Anything Gruelingly "Impossible" Coherent

Whatever operating system you are using to create the USB, you will need to have a Windows 10 ISO, either from Microsoft or your system manufacturer and have a USB drive 8GB or larger (or one with at least 5GB of free space and using the FAT32 filesystem, but using a fresh and empty one is best).

TL;DR

#macOS/Linux
# First try the `bootiso` program, it has options for splitting the WIM for you!
# https://jsamr.github.io/bootiso/
# You need to already have 7zip aka `p7zip` on macOS and Linux, and `wimlib` macOS via `brew` or `wimtools` on Linux