Find a webserver running on Linux
netstat -tnlp | grep 80
netstat -tnlp | grep 443
Today's Document
2025 on Tumblr: Trends That Defined the Year
Game of Thrones Daily
d e v o n

Peter Solarz
Xuebing Du

izzy's playlists!
occasionally subtle

ā

"I'm Dorothy Gale from Kansas"
sheepfilms
he wasn't even looking at me and he found me
taylor price

titsay

shark vs the universe
cherry valley forever
art blog(derogatory)
trying on a metaphor

seen from United States

seen from Venezuela
seen from Lithuania

seen from Spain
seen from United States

seen from Poland
seen from United States

seen from Japan

seen from United States

seen from United States
seen from Brazil

seen from United Kingdom

seen from Romania
seen from Moldova
seen from Moldova
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
@redeyeblind
Find a webserver running on Linux
netstat -tnlp | grep 80
netstat -tnlp | grep 443

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
this fixes macos microphone issues in MS teams
Resolve audio-related issues when you use Microsoft Teams on macOS devices.
Citrix Reciver remove from Mac
launchctl remove com.citrix.ServiceRecords
launchctl remove com.citrix.ReceiverHelper
launchctl remove com.citrix.AuthManager_Mac
stops citrix from being respawned
then remove the application
good by spam
Poppler PDF to SVG
PDF TO Cairo needs Poppler on new OS install
brew install poppler
db9 serial connector commands
have a look here ls -ltr /dev/*usb*
if nothing try this
ioreg -c IOSerialBSDClientĀ | grep usb
once you have the tty device you can use
screen /dev/tty.thedevicehere 9600

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
macos screen share not being found
/System/Library/CoreServices/Applications/Screen\ Sharing.app
See what Domain controller you are connected to
nltest /DSGETDC:
Make gif
ffmpeg -f image2 -framerate 5 -i /Users/xxxxx/Library/Application\ Support/Microsoft/Teams/Backgrounds/Uploads/MicrosoftTeams-image%01d.png gif.mp4
Video File info
use ffprobe
ffprobe -show_entries format_tags=timecode -of default=noprint_wrappers=1 /file.mp4
orĀ
exiftool Ā -g0 -n -s2 -e -ee /Downloads/IMG_6704.MOV Ā | grep -i file
exiftool -time:all -g1 -a -s /Downloads/IMG_6704.MOV
PDF to Visio
useĀ
pdftocairo test.pdf test.svg -svgĀ
open svg in Visio.
Select ALL ungroup.
Job done.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
web scrapper wget
wget -H -r --level=5 --restrict-file-names=windows --convert-links -e robots=off https://url.....
find java path
readlink -f $(which java)
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.242.b08-0.el7_7.x86_64/jre/bin/java export PATH=$PATH:$JAVA_HOME
ffmpeg streaming
on the sending machine
ffmpeg -i Big_Buck_Bunny-720p.mp4 -r 30 -g 0 -vcodec h264 -acodec libmp3lame -strict -2 -f webm -f mpegts udp://192.168.0.??:8888
on the receiving machine
ffplay -i udp://192.168.0.??:8888/
osx webserver
python -m SimpleHTTPServer 8000
ffmpeg laptop osx camera
captureĀ
ffmpeg laptop osx camera fmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" out.avi list devices ffmpeg -f avfoundation -list_devices true -i ""
streamĀ
ffmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" -vcodec libx264 -preset ultrafast -tune zerolatency -pix_fmt yuv422p -f mpegts udp://localhost:12345

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Brew FFMPEG install
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
Nutanix CE virtual install
wont work in VirtualBox. VirtualBox cannot do nested virtualisation
Vmware workstationĀ
download the latest CE .gz file
run gzip -dĀ
use starwind software to convert img to vmdk
create virtual machine with additional two virtual disks ( need 4 cores and use sata disk check box )
some hacking to make it all work with low spec shitty hardware
login as root : passowrd nutanix/4u
vi /home/install/phx_iso/phoenix/minimum_reqs.py
change min memory to 6.0
MIN_MEMORY_GB = 15.0
change harddrive min requirements
findĀ ādisk.sizeā and modify to your size requirment
change SSD benchmarks
vi /home/install/phx_iso/phoenix/sysUtil.py Modify the SSD IOPS requirements SSD_rdIOPS_thresh = 1000 SSD_wrIOPS_thresh = 1000
set normal hdrive as ssd
type āfdisk -lā and identify which disk your SSD is. In my case it was āsdbā
cat /sys/block/sdb/queue/rotational Ā Ā Ā Ā Ā (0 means SSD, 1 means HDD)
echo 0 > /sys/block/sdb/queue/rotational