- https://web.archive.org/web/20190403180459/https://www.thenextcrowd.com/blog/19/the-word-is-finally-out
- https://web.archive.org/web/20190403000317/https://www.thenextcrowd.com/persbericht-nl
- https://web.archive.org/web/20190403175338/https://www.thenextcrowd.com/blog/20/werken-bij-website-voor-wall-in-usa-is-1-april-grap
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<dfxml xmlns='http://www.forensicswiki.org/wiki/Category:Digital_Forensics_XML' | |
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' | |
xmlns:dc='http://purl.org/dc/elements/1.1/' | |
xmlns:hfs='http://www.forensicswiki.org/wiki/HFS' version='1.0'> | |
<metadata> | |
<dc:type>CD</dc:type> | |
</metadata> |
Maintenance and Service Guide HP ProDesk 400 G3 Small Form Factor:
https://hp.it-shop.bg/uploaded/6/5/ProDesk-400-G3-SFF-MSG.pdf
- SSD for OS. E.g. this one: WD Blue 3D NAND 250GB 2,5 inch + SATA kabel.
- HD (7200 rpm) for data. Seagate Barracuda ST2000DM006 2 TB
This file contains hidden or 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 | |
""" | |
Generate cleaned-up selection list from tab-delimited WebCurator dump | |
Johan van der Knijff | |
""" | |
import sys | |
import csv | |
import argparse |
https://github.com/markh794/mhvtl
Install script for Ubuntu 16.04:
This file contains hidden or 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 | |
import os | |
import threading | |
import _thread as thread | |
import time | |
import tkinter as tk | |
import tkinter.scrolledtext as ScrolledText | |
class myGUI(tk.Frame): |
This file contains hidden or 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 | |
# | |
# Set up session | |
mate-terminal --working-directory=/media/bcadmin/Elements/testDDS | |
mate-terminal --working-directory=/home/bcadmin/forensicImagingResources | |
caja /home/bcadmin/forensicImagingResources | |
caja /media/bcadmin/Elements/testDDS | |
vscode /home/bcadmin/forensicImagingResources/doc/tape-dds.md /home/bcadmin/forensicImagingResources/scripts/readtape.sh & | |
firefox & |
This file contains hidden or 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 | |
dirSurfDrive="/home/johan/ownCloud/blogkbresearch" | |
dirDeploy="/var/www/blog.kbresearch.nl" | |
# Scrape local instance of kbresearch blog to static site | |
# 24/8 removed --adjust-extension \ | |
wget --mirror \ | |
--page-requisites \ |
This file contains hidden or 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
0 info it worked if it ends with ok | |
1 verbose cli [ '/usr/local/bin/node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '@daisy/ace', | |
1 verbose cli '-g' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 3ad0708fc6b56d27 | |
5 silly install loadCurrentTree |
This file contains hidden or 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 python | |
import random | |
import struct | |
import base64 | |
# Create list of random floating point values | |
listFloatIn = [] | |
for i in range(20): |