Tumgik
redeyeblind · 2 months
Text
macos screen share not being found
/System/Library/CoreServices/Applications/Screen\ Sharing.app
0 notes
redeyeblind · 5 months
Text
See what Domain controller you are connected to
nltest /DSGETDC:
0 notes
redeyeblind · 1 year
Text
Make gif
ffmpeg -f image2 -framerate 5 -i /Users/xxxxx/Library/Application\ Support/Microsoft/Teams/Backgrounds/Uploads/MicrosoftTeams-image%01d.png gif.mp4
0 notes
redeyeblind · 1 year
Text
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
0 notes
redeyeblind · 1 year
Text
PDF to Visio
use 
pdftocairo test.pdf test.svg -svg 
open svg in Visio.
Select ALL ungroup.
Job done.
0 notes
redeyeblind · 4 years
Text
web scrapper wget
wget -H -r --level=5 --restrict-file-names=windows --convert-links -e robots=off https://url.....
0 notes
redeyeblind · 4 years
Text
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
0 notes
redeyeblind · 4 years
Text
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/
0 notes
redeyeblind · 4 years
Text
osx webserver
python -m SimpleHTTPServer 8000
0 notes
redeyeblind · 4 years
Text
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
0 notes
redeyeblind · 4 years
Text
Brew FFMPEG install
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
0 notes
redeyeblind · 7 years
Text
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
0 notes
redeyeblind · 7 years
Text
windows test files
FSUTIL FILE CREATENEW 1MB 1048576
FSUTIL FILE CREATENEW 10MB 10485760
FSUTIL FILE CREATENEW 100MB 104857600
1 note · View note
redeyeblind · 8 years
Text
extract text from a cell in excel
=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))
0 notes
redeyeblind · 8 years
Text
match columns in excel
=IF(A2=B2,"Match","")
0 notes
redeyeblind · 8 years
Text
Centos7 reset root password 
change ro with rw init=/sysroot/bin/sh
Control+x to start centos
at prompt : chroot /sysroot
passwd root
touch /.autorelabel
exit and reboot
0 notes
redeyeblind · 9 years
Text
search outlook for meeting requests
messageclass:ipm.schedule.meeting
Since both “schedule” and “meeting” are pretty unique for the message class, you can also shorten this to one of the following to get the same results:
messageclass:schedule or messageclass:meeting
0 notes