Posts in Tips and tricks

How to Mount Remote Folder from NAS to you Mac

First of all you need to enable NFS on your Mac, to do this type this command sudo nfsd enable next $ cd /etc/ Then[…]

How to install Ubuntu on Virtual Machine with a Synology NAS

– First login into your synology NAS server. – Go to Package Centre. – Click on ‘Settings’ button and select the ‘Beta’ tab. – Tick[…]

How to find JMeter CA Certificate on Mac

If you have installed jmeter with homebrew can run these commands in terminal brew install jmeter or brew install jmeter --with-plugins with plugins If you[…]

How to change WordPress URLs with database script

In ‘phpMyAdmin’ under sql tab copy and paste below script and hit go!. UPDATE wp_options SET option_value = replace(option_value, 'http://old-url', 'http://new-url') WHERE option_name = 'home'[…]

How to Secure copy (SCP) with file timestamp

The other day I need to migrate files over to my new NAS, to do this I had to SSH in to the box and[…]

How to install the latest version of nodejs on Raspberry Pi Zero

First ssh in to pi and cd in to Downloads directory. $ cd ~/Downloads Next you need to download the nodejs tar. Checkout the version[…]

Best iPad apps to remote desktop to your iMac

Only recently I needed to access my iMac GUI whilst I was away aboard. I’ve always ssh to my iMac being a geek. But for[…]

Fixing Drush after updating php5.5.10 on MAMP 3.0.5

I had issue running Drush after upgrading MAMP 3.0.5 on PHP5.5.10 To fix this you need to edit .bash_profile. Run these commands in terminal sudo[…]

How to see hidden files on you Mac

Copy and past below the following terminal commands to see all hidden files on your mac. defaults write com.apple.finder AppleShowAllFiles YES

Top 10 Must have apps for Front-end developers

1. Sublime Text 3 The must popular IDE to write up your HTML and CSS. 2. iTerm / terminal All front-end mush have some knowledge[…]

Sublime Text tips for Frontenders

Here are my top tips for frontend developers who works with Sublime 1. Sorting CSS By highlighting your CSS you can hiting F5 to organise[…]

Must have Compass Plugins to help your SASS

I’ve been using Compass for awhile now… the best tool to compile your SASS. Below are some plugins I use to help create that perfect[…]