Skip to content

Instantly share code, notes, and snippets.

@josephx86
josephx86 / extract_har.py
Created March 30, 2023 05:58 — forked from Lewiscowles1986/extract_har.py
Python 3 script to extract images from HTTP Archive (HAR) files
import json
import base64
import os
# make sure the output directory exists before running!
folder = os.path.join(os.getcwd(), "imgs")
with open("src.har", "r") as f:
har = json.loads(f.read())
@josephx86
josephx86 / qemu-networking.md
Created March 24, 2021 13:06 — forked from extremecoders-re/qemu-networking.md
Setting up Qemu with a tap interface

Setting up Qemu with a tap interface

There are two parts to networking within QEMU:

  • The virtual network device that is provided to the guest (e.g. a PCI network card).
  • The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).

Example: User mode network

@josephx86
josephx86 / mount_qcow2.md
Created August 12, 2020 08:19 — forked from shamil/mount_qcow2.md
How to mount a qcow2 disk image

How to mount a qcow2 disk image

This is a quick guide to mounting a qcow2 disk images on your host server. This is useful to reset passwords, edit files, or recover something without the virtual machine running.

Step 1 - Enable NBD on the Host

modprobe nbd max_part=8
@josephx86
josephx86 / xdebug_installation.md
Last active September 1, 2018 01:34 — forked from joseluisq/xdebug_installation.md
Install PHP Xdebug on Fedora / CentOS x64

PHP Xdebug installation on Fedora/CentOS x64

First, install xdebug package on system:

$ sudo yum install php-pecl-xdebug.x86_64

Or with DNF:

#/g/sicp Gentoomen Programming, Computer Science, Wizardry, and General Technology Book Library - File Listing
(λ . Gentoomen Library
(λ . Algorithms
(λ .Algorithm Design - John Kleinberg - Éva Tardos.pdf)
(λ .Algorithms and Data Structures in C++(diamond-torrents.info).chm)
(λ .Algorithms in C.pdf)
(λ .Algorithms_in_C_-_Sedgewick.pdf)
(λ .Algorithms_in_Pascal_-_Sedgewick.pdf)