Monday, September 25, 2017

Mi Drone 4k Test Flight - Pantai Irama, Bachok



Location: Pantai Irama, Bachok, Kelantan, Malaysia
GPS: 6.064001, 102.402046
Altitude: 40 meters
Drone: Mi Drone 4k

Watch video here:

:: aerobraintech ::

Friday, January 15, 2016

9 UX Secrets


1 Observe What People Create
2 Design For Mobile First
3 Fuel Your Design With Empathy
4 You Can’t Design Experiences
5 Your Baby Might Be Ugly
6 Test Your Design As Early As Possible
7 Study The Human Mind
8 Design To Make Life Better
9 Design For Scanning

Happy UX!

:: aerobraintech ::

Wednesday, April 1, 2015

Setting up SSH without password (using key)



Local Setup:
Generate RSA Key
 ssh-keygen -t rsa -N ''  

Remote Setup:
Copy local public RSA Key (generated above) to default location .ssh/authorized_keys


Ensure sshd_config:
 RSAAuthentication yes  
 PubkeyAuthentication yes  
 StrictModes no  
Note that StrictModes can be 'yes' if the keyfile and folder permissions are set to 775. 

Restart sshd

Dont' forget to restart the service

 service sshd restart  

Additional notes
If you logging in with other user, you need to ensure the following
  1. Use ssh -i <key file>
  2. known_hosts file containing the finger print for the remote host is exist for the current user
    • Windows: .ssh\known_hosts must exist or created through SYSTEM user at OS root (ie. C:\.ssh
    • Linux: /etc/ssh/ssh_known_hosts must exist to allow all users to connect
Note: Example of logging in with other user is when you try to connect via web service (apache). When you execute via apache, the user is apache or wwwrun which is not the user that you have generated the key above.

Enjoy!

This entry is valid for rsync from command line or rsync from php whether on Linux (centos, ubuntu, fedora, opensuse) or on Windows systems.

:: aerobrainTech ::

Wednesday, March 4, 2015

Windows 10 Build 9926: Start Menu Problem

If suddenly your Start Menu disappear or you just don't like the new look of the Start Menu in Windows 10, you can follow the below steps:
  1. Open Registry Editor (regedit)
  2. Navigate to HKEY_CURRENT_USER> Software> Microsoft> Windows> CurrentVersion> Explorer> Advance
  3. Create a DWORD Key name "EnableXamlStartMenu" and set the value to '0'.
  4. Restart and enjoy!
:: aerobrainTech ::

Saturday, February 28, 2015

Hard Disk Failure Rate by Brand

Source: Backblaze

Statistics collected by Backblaze, shows that up to September 2014, Seagate 1.5TB Hard Disk is the highest failure rate.

:: aerobrainTech ::