Setting up Dokku with DigitalOcean and Namecheap
..or how I made my own heroku in a few hours for $3.98.
/** | |
* NOTICE: | |
* This directive is old version!! | |
* Please check this repository: | |
* https://github.com/ktknest/angular-pinch-zoom | |
* / | |
// sample: http://codepen.io/ktknest/full/LDljw/ | |
angular.module('app', []) |
This guide shows how to set up a PHP and MySQL development environment using OSX's built-in Apache, using Homebrew to install necessary components. With this strategy, you can use different versions of PHP for certain virtual hosts.
VirtualHostX is a convenient way to manage development sites, but not required.
brew update
brew install php56
brew install php56-mcrypt
brew install mysql
After installing Developer Command Line Tools for OS X, you should have basic tools like clang and git installed. After that, you can grab other required packages via Homebrew. So as in instructions on the project page:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
And then:
brew install cmake sdl sdl_image sdl_ttf boost glew physfs flac libsndfile libvorbis vorbis-tools gettext po4a
Gettext is installed in separate directory without adding the files to system path, so in order to get it working normally, you should call also:
<!-- | |
This disables app transport security and allows non-HTTPS requests. | |
Note: it is not recommended to use non-HTTPS requests for sensitive data. A better | |
approach is to fix the non-secure resources. However, this patch will work in a pinch. | |
To apply the fix in your Ionic/Cordova app, edit the file located here: | |
platforms/ios/MyApp/MyApp-Info.plist | |
And add this XML right before the end of the file inside of the last </dict> entry: |
/** | |
* ListController | |
* | |
* @description :: Server-side logic for managing lists | |
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers | |
*/ | |
import _ from 'lodash'; | |
class AsyncController { |
My friend Michael Jackson turned off github issues on one of his smaller projects. It got me thinking...
Maintainers getting burned out is a problem. Not just for the users of a project but the mental health of the maintainer. It's a big deal for both parties. Consumers want great tools, maintainers want to create them, but maintainers don't want to be L1 tech support, that's why they
dependencies: | |
pre: | |
- sudo apt-get install libxss1 libappindicator1 libindicator7 | |
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
- sudo dpkg -i ./google-chrome*.deb | |
- sudo apt-get install -f |