- Scale
- Blender
- Ultrasound cleaning device
- Spoon (wooden|plastic|glas)
- Mason jar for storage
#!/bin/sh | |
set -eu | |
srcfile1="$1" | |
srcfile2="out.pdf" | |
out="${srcfile1%\.*}-signed.${srcfile1##*\.}" | |
gs -dBATCH -dNOPAUSE -dQUIET -sDEVICE=pdfwrite \ | |
-dLastPage=1 -sOutputFile="$out" "$srcfile1" "$srcfile2" |
from socket import * | |
import time | |
import os,sys | |
cport=40002 | |
red=bytes('\xFF\x00\x00') | |
blue=bytes('\x00\xFF\x00') | |
green=bytes('\x00\x00\xFF') | |
black=bytes('\x00\x00\x00') |
set(PRJ_NAME CLion_STM_LED) | |
set(MCU_FAMILY STM32F1xx) | |
set(MCU_LINE STM32F103xB) | |
set(MCU_LINKER_SCRIPT STM32F103RBTx_FLASH.ld) | |
cmake_minimum_required(VERSION 3.6) | |
project(${PRJ_NAME} C ASM) | |
add_definitions(-D${MCU_LINE}) |
var fs = require('fs'); | |
require('shelljs/global'); | |
const EXAMPLES_DIR = './node_modules/three/examples/js' | |
const DEST_DIR = './src/js/lib/three/examples' | |
mkdir('-p', DEST_DIR); | |
const files = [ | |
`${EXAMPLES_DIR}/loaders/GLTFLoader.js`, |
var net = require('net'); | |
var tls = require('tls'); | |
var url = require('url'); | |
var util = require('util'); | |
var commander = require('commander'); | |
commander.option('-u, --url [url]', 'Url to hit') | |
.option('-c, --connections [connections]', 'Connections to use simultaneously', 256, parseInt) | |
.option('-t, --timings [timings]', 'Which set of timings to use', 'default') |
#!/bin/bash | |
ip=$1 | |
cd ~/Desktop | |
mkdir MS17010 | |
cd MS17010 | |
wget https://raw.githubusercontent.com/cldrn/nmap-nse-scripts/master/scripts/smb-vuln-ms17-010.nse | |
nmap -oN MS17010.txt -p 445 --script "smb-vuln-ms17-010.nse" $ip |
On Jul 4, 2017 theverge.com posted an article about photobucket (silently) no longer allowing their users to source their images on 3rd party websites for free, thus leaving websites all over the web broken displaying the following image in replace:
Me being one of those individual, I attempted to go into my photobucket account and download my content as I now have my own hosting I am able to store those images on; however, the only ways to bulk download (on desktop) is by downloading albums through their interface. Doing so, gave me the following error message: "Hmmm. Something didn't click. Want to give it another shot? Try again now."
Doing this serveral times, in different browsers (chrome, firefox and safari), after disabling all my addons and extensions (including ad blockers), it still didn't work.
At this point, doing anything on their website w
A combination of my own methodology and the Web Application Hacker's Handbook Task checklist, as a Github-Flavored Markdown file
/* Pass through all data from USB serial to UART serial (TX/RX pins) | |
*/ | |
SYSTEM_THREAD(ENABLED); | |
SYSTEM_MODE(MANUAL); | |
void setup() { | |
Serial1.begin(9600); | |
Serial.begin(); | |
} |