lsof -PiTCP -sTCP:LISTEN
netstat -nr
# -*- coding: UTF-8 -*- | |
import threading | |
import Queue | |
import os | |
import datetime | |
import sys | |
import time | |
if __name__ == '__build__': |
# Dante-Server install script (Debian 8 - Jessie) | |
# Start with 'chmod +x danted_install_script.sh && danted_install_script.sh' | |
# duketwo - 12.11.2017 | |
random_pw=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
network_adapter=$(ip route | grep default | sed -e "s/^.*dev.//" -e "s/.proto.*//") | |
username="SallySample" | |
port="31337" | |
public_ip=$(dig +short myip.opendns.com @resolver1.opendns.com) | |
echo "Random password: $random_pw" | |
echo "deb-src http://ftp.de.debian.org/debian/ sid main non-free contrib" >> /etc/apt/sources.list |
"use strict"; | |
fetch("...", {method: "POST"}) | |
.then(result => result.json()) | |
.then(result => { | |
let ws = new WebSocket("..." + result.connectionId); | |
ws.onopen = () => { | |
ws.send(JSON.stringify({...})); | |
ws.send(JSON.stringify({...})); |
SELECT | |
wp_posts.ID | |
FROM | |
wp_posts | |
LEFT JOIN | |
wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) | |
WHERE | |
1 = 1 AND wp_posts.ID NOT IN (93110) | |
AND (wp_term_relationships.term_taxonomy_id IN (8)) | |
AND wp_posts.post_type = 'post' |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"time" | |
"strings" | |
"os" |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"strings" | |
"sync" | |
"time" |
- github: | |
"Managing remote repositories" | |
https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories | |
====================================================================================== | |
- stackoverflow | |
"How do I use cURL to perform multiple simultaneous requests?" | |
https://stackoverflow.com/a/66998509 |
Конвертировать binary-файл в txt | |
xxd -p 1.mp3 1.txt | |
Конвертировать из txt в binary-файл | |
xxd -r -p 1.txt 2.mp3 |