Say a program has opened a raw socket. How do you know it has it open
+ int sock_r;
+ struct ifreq ifrr;
+ size_t if_name_len=strlen("dummy0");
| doc = nlp("the drawdown process is governed by astm standard d823") | |
| for tok in doc: | |
| print(tok.text, "...", tok.dep_) |
| import os | |
| import re | |
| import subprocess | |
| from bs4 import BeautifulSoup | |
| import rules | |
| def replacer(url, html): | |
| new = html | |
| reload(rules) |
| #!/bin/bash | |
| # Call like you would `diff` | |
| # `./diff-changed-lines.sh old new` | |
| # Outputs the lines numbers of the new file | |
| # that are not present in the old file. | |
| # That is, outputs line numbers for new lines and changed lines | |
| # and does not output line numbers deleted or unchanged lines. |
| #!/usr/bin/env runhaskell | |
| -- Copyright (C) 2018 Daniel Gröber <[email protected]> | |
| -- | |
| -- Copying and distribution of this file, with or without modification, | |
| -- are permitted in any medium without royalty provided the copyright | |
| -- notice and this notice are preserved. This file is offered as-is, | |
| -- without any warranty. | |
| {-| | |
| License: GNU All-Permissive License |
| # Windows (receiver) side: | |
| .\ffplay.exe -nodisp -ac 2 -acodec pcm_u8 -ar 48000 -analyzeduration 0 -probesize 32 -f u8 -i udp://0.0.0.0:18181?listen=1 | |
| # Linux (transmitter) side: | |
| pactl load-module module-null-sink sink_name=remote | |
| ffmpeg -f pulse -i "remote.monitor" -ac 2 -acodec pcm_u8 -ar 48000 -f u8 "udp://RECEIVER:18181" | |
| pavucontrol # Change the default output to the Null sink or move single applications to this "output" device. |
| #!/bin/sh | |
| if [ $# -ne 3 ] ; then | |
| echo "Usage: $0 <ref> <ref> <filename>" | |
| exit 1 | |
| fi | |
| RevA=$1 | |
| RevB=$2 | |
| File=$3 |
| # You must first install apktool (https://github.com/iBotPeaches/Apktool) and android SDK | |
| # and decompile apk using it | |
| # apktool d -rf my-app.apk | |
| # then generate a key for sign in: | |
| # keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 | |
| rm signed-app.apk | |
| apktool b -f -d com.myapp | |
| jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore com.myapp/dist/com.myapp.apk alias_name | |
| zipalign -v 4 com.myapp/dist/com.myapp.apk signed-app.apk |