Note: Before using .htaccess, you need to ensure AllowOverride All in httpd.conf
SQL vs NoSQL Syntax
Comparison of commonly used syntax between SQL and NoSQL.
Totallypix STUDIO
We are targeting in a couple of weeks, we are going to launch our first mobile game.
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 ::
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
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 sshdDont’ forget to restart
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: Open Registry Editor (regedit) Navigate to HKEY_CURRENT_USER> Software> Microsoft> Windows> CurrentVersion> Explorer> Advance Create a DWORD Key name “EnableXamlStartMenu” and set the value
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 ::
Windows 10 Build 9926: Cannot Access Share Folder
Error Message: “The account is not authorized to login from this station” Solution: Run Regedit Navigate to HKLMSYSTEMCurrentControlSetServicesLanmanWorkstationParameters Add DWORD Key “AllowInsecureGuestAuth” Set Value to 1 Restart All the best! :: aerobrainTech ::
How to Forward Port to another IP/Machine on Windows
Let say you want to forward listened port 4422 (at you current machine with IP 192.168.1.111) to port 80 on a machine with IP address 192.168.0.33, here is the command: netsh interface portproxy add v4tov4 listenport=4422 listenaddress=192.168.1.111 connectport=80 connectaddress=192.168.0.33 If you want to list all the port forwarding setting on