Advanced Search
Search Results
77 total results found
Proxy BT
Use a server with "socks" in the name.And perform the test. https://support.nordvpn.com/hc/en-us/articles/20465085067665-NordVPN-proxy-setup-for-BitTorrent
Improve SMB speeds
Enable multichannelEnable async operations I/OEnable kernel mode SMBSet minimum version to SMB 2 (or higher)
Large default vdx
>> wsl --shutdown Verify everything is stopped by: >> wsl.exe --list --verbose Then start diskpart: >> diskpart and inside diskpart type: DISKPART> select vdisk file="<path to vhdx file>" it should respond by saying DiskPart successfully select...
Turn off web search in start menu
regedit Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search Create DWORD: BingSearchEnabled=0 CortanaConsent=0
Nuget packages: Shared library in NET9.0 SdkProject
A nuget project doesn't include a references shared library. (opening the Your.Client.1.0.1.nupkg should have the library in the "lib" folder) You can force it by modifying the cs.proj <ItemGroup> <Reference Include="Your.Lib.Shared"> ...
Setup
Don't forget to update the glasses first: https://www.xreal.com/ota/ Also, in the SDK tutorials, they will mention a version of Unity3D. This is relevant as the latest Unity3D might not work with the SDK provided.
Debugging
Enable wireless debugging in Android, then you'll see the IP adress and port to pair. Once paired you can connect to the main debu gport in ADB
Connecting the glasses in Android
It seems to be a chore at first and depending on your phone, it might or might not work.Don't look into "desktop mode" etc. Issue logged here Pixel 8 has this toggle in settings "External displays" - and you have to set the checkbox every time you connect.Xpe...
Start a script as a service
sudo nano /etc/systemd/system/ptcam-app.service Create an ini file [Unit] Description=PanTilt Camera Web App After=network-online.target Wants=network-online.target [Service] User=sophior WorkingDirectory=/home/sophior/pt_rpi ExecStart=/home/sophi...
Enable Filesharing
Install samba sudo apt update sudo apt install -y samba Set password sudo smbpasswd -a sophior edit config sudo nano /etc/samba/smb.conf [pt_rpi] path = /home/sophior/pt_rpi browseable = yes read only = no guest ok = no valid users = sophior ...
Fix DNS (apt-get doesn't work)
When apt-get update times out or you can't reach servers that you know are online sudo rm -f /etc/resolv.conf echo "nameserver 1.1.1.1" | sudo tee /etc/resolv.conf echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolv.conf ping -c 2 deb.debian.org
Improve camera stream latency
For more "immediate feedback" on the stream, some addjustements of the source code could be made. Reduce resolution on startup camera = Camera() camera.set_video_resolution("240P") Limit framerates to avoid hammering the network def gen(cameraInpu...
Enabled dual camera (Raspberry pi 5)
When you can only see one of both cameras: rpicam-hello --list-cameras https://docs.arducam.com/Raspberry-Pi-Camera/Pivariety-Camera/Libcamera-User-Guide/#introduction 123 to do: install_pivariety_pkgs.sh -p libcamera_dev install_pivariety_pkgs.sh -p ...
Access files over HTTP quickly
python3 -m http.server 8080 Current folder will now be accessible over http
Set HTTPS to bypass browser constraints
cd ~/pt_rpiopenssl req -x509 -newkey rsa:2048 -nodes \-keyout ssl.key \-out ssl.crt \-days 365 \-subj "/CN=192.168.178.123" socketio.run(app,host='0.0.0.0',port=5000,ssl_context=('ssl.crt', 'ssl.key'),allow_unsafe_werkzeug=True)
stream camera feed
Broadcast from Raspberry pi: rpicam-vid --camera 0 --inline --width 2028 --height 1080 --listen --timeout 0 --profile high --intra 1 -o tcp://0.0.0.0:8888 Receive on PC: ffplay -fflags nobuffer -flags low_delay -probesize 32 tcp://192.168.178.123:...
Fixing blurry 8-50mm Zoom Lens for Raspberry Pi High Quality Camera
When you mounted the lense with C-mount, it might be that everything is extremely blurry.To adjust it, might feel like a daunting task.The issue is the focal point when you attach the lense too close to the sensor. For this, you have the lock-screw on the C-mo...