Skip to main content
25
results
Andrew Fletcher
This page shows a growing list of common commands for viewing and managing your Centos server. ls syntax $ ls [options] [file|dir] ls command main options: ls -a list all files including hidden file starting with '.' ls --color colored list [=always/never/auto] ls -d list directories - with ' */' ls -F add one char of */=>@| to enteries ls -i list file's inode index number ls -l list with long format - show permissions ls -la list long format including hidden files ls...
Andrew Fletcher
Whilst updating nodejs and npm on a Centos 6 or 7 server running Apache, I...
Andrew Fletcher
Installing Laravel on an Apache server was going to be a no fuss process said no...
Andrew Fletcher
How to apply a gradient tint over a background image? Set the background...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve.  The key to understand is the receive an outcome of a fraction the numbers need to be Double.  So Int numbers will result in a whole number product.  By way of example: 80 / 3 = 26 We know that this result is incorrect.  To get the correct outcome the equation needs to be as follows: 80.0 / 3.0 = 26.666666666666667 If you have a whole number - add Double to the whole number.  So...
Andrew Fletcher
During the process of building the app, there are warnings about the code....
Andrew Fletcher
https://github.com/kylebrowning/waterwheel.swift After a short amount searching...
Andrew Fletcher
If you have this error, the core issue is the dyld issue. dyld dyld is a...
Andrew Fletcher
We had an issue recently where saving a page in the admin area produced one of...