Alternate remote desktop


I find new tools for remote desktop it is really easy to setup, very usefull for alternatif remote desktop like other vnc, the name of application is nomachine its fast and the instalation really easy

I’m using this app for remote my ros robot, and that’s it

Happy coding and salam ngoprek

Advertisement

Resize jetson nano vnc display


Add this at  /etc/X11/xorg.conf 
Section "Screen"
   Identifier    "Default Screen"
   Monitor       "Configured Monitor"
   Device        "Tegra0"
   SubSection "Display"
       Depth    24
       Virtual 1280 800 # Modify the resolution by editing these values
   EndSubSection
EndSection

I make robot


Siapa yang tidak suka dengan robot, dan project membuat robot ini benar benar menyenangkan :), dan anak2 saya pun suka dengan robot

Dan sudah sejak lama saya ingin punya robot, dan ini ada beberapa dokumentasi saya membuat robot 🙂

ceritanya mau membuat EOD robot
Simple robot kesukaan anak anak dari tempat sampah 🙂
Dancing Bot

Dan untuk melanjutkan project tentang robot ini kali ini saya coba buat versi yang lebih advance, menggunakan Lidar, dan menggunakan ROS (Robot Operating System)

Idenya adalah memanfaatkan cooler yang sudah rusak ini menjadi robot security seperti di axiom di film Wall E kira kira begini penampakannya

Continue reading “I make robot”

Arduino Setting esp32-s2


When you failed upload to esp32 s2 maybe this setting can help you, the point is slow down your upload speed at 460800, and now upload not problem anymore.

3d design macropad2


Download design for free here , Order kit here

this macropad using arduino pro micro, rotary encoder, and also mechanical switch

PTEG Filament Temperature


Catatan temperature 3d printer menggunakan ender5pro

Filament yang digunakan sunlu dan creality

  • Warna kuat (kuning, merah, dll) transparent 245 derajat keatas
  • Warna tidak transparant (putih, hitam) 235 derajat maks 240
    • Fan speed 40
    • Speed 60
    • Outer & Inner Speed 40
    • Retract 4.5 Speed 50

Akan terus diupdate apabila mencoba filament baru 🙂

Virtual Host Forward IP in Nginx


This article is a continuation of the previous post about local dns using pihole, so i forward all my domain and subdomain to my nginx VM at my home, from nginx VM i forwarded all domain using virtualhost to other machine/ip, and it’s working very well.

This is my code at nginx side i put in /etc/nginx/sites-available/ and /etc/nginx/sites-enabled/

server {
    listen 443 ssl;
        server_name pihole.my.home;
        ssl_certificate /etc/ssl/my.home.crt;
        ssl_certificate_key /etc/ssl/my.home.key;

        location / {
        proxy_pass http://192.168.0.30/admin/;
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Host $http_host;
        access_log /var/log/nginx/pihole.access.log;
        error_log /var/log/nginx/pihole.error.log error;
  
    }
}
~  
%d bloggers like this: