Useful Linux Commands
Locate PHP error logs on the server grep ‘error_log’ /etc/php.ini | awk -F= ‘{ print $2; }’ Restart your bash_profile . ~/.bash_profile Change to your home directory cd ~ View your history history 50...
lang="en-US">
Locate PHP error logs on the server grep ‘error_log’ /etc/php.ini | awk -F= ‘{ print $2; }’ Restart your bash_profile . ~/.bash_profile Change to your home directory cd ~ View your history history 50...
I’ve been playing with Google maps lately and I thought I would share this little tidbit. It still needs some refinement (ie fetching your location from IP for non-html5 compliant browsers and letting you...
This is a really useful plunker that allows you to integrate tinyMCE into your angular projects as a directive. You can apply the WYSIWYG to multiple textareas on a page or in angular UI...
There are many times when you want to perform an autocomplete that works by searching all of the object properties and not just a single field or the key. If so you’ll enjoy this...
It always bugs me that everyone resorts to using jQuery to write their angular autocomplete directives so I’ve toyed around with it until coming up with a pure angular solution. Enjoy this Plunker!
This plunker will show you how to use the unique filter included in the Angular UI utilities to strip out duplicates in an object array. Enjoy!
We have had numerous complaints about server speeds with our new server therefore we are going to have a scheduled downtime to do additional optimizations. All of our games and our and hosted games...
Open your .baschrc file in your home directory and add these commands at the bottom of the file. You can modify any of the options being passed to notepad++ as well. By default this...
This is an expansion on my basic angular chatroom to add new functionality. In this version of the chat room there is now a popup color picker to change font colors, a way to...
So I’ve been playing around with Angular lately and I decide to try my hand at making an Angular chat room since angular is great when it comes to keeping the page display current...