redeyeblind
redeyeblind
redeyeblind
109 posts
Don't wanna be here? Send us removal request.
redeyeblind · 4 months ago
Text
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
0 notes
redeyeblind · 5 months ago
Text
Poppler PDF to SVG
PDF TO Cairo needs Poppler on new OS install
brew install poppler
0 notes
redeyeblind · 7 months ago
Text
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
0 notes
redeyeblind · 1 year ago
Text
macos screen share not being found
/System/Library/CoreServices/Applications/Screen\ Sharing.app
0 notes
redeyeblind · 2 years ago
Text
See what Domain controller you are connected to
nltest /DSGETDC:
0 notes
redeyeblind · 3 years ago
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 · 3 years ago
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 · 3 years ago
Text
PDF to Visio
use 
pdftocairo test.pdf test.svg -svg 
open svg in Visio.
Select ALL ungroup.
Job done.
0 notes
redeyeblind · 5 years ago
Text
web scrapper wget
wget -H -r --level=5 --restrict-file-names=windows --convert-links -e robots=off https://url.....
0 notes
redeyeblind · 5 years ago
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 · 5 years ago
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 · 5 years ago
Text
osx webserver
python -m SimpleHTTPServer 8000
0 notes
redeyeblind · 5 years ago
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 · 6 years ago
Text
Brew FFMPEG install
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
0 notes
redeyeblind · 8 years ago
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 · 9 years ago
Text
windows test files
FSUTIL FILE CREATENEW 1MB 1048576
FSUTIL FILE CREATENEW 10MB 10485760
FSUTIL FILE CREATENEW 100MB 104857600
1 note · View note
redeyeblind · 9 years ago
Text
extract text from a cell in excel
=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))
0 notes