##References
##Create Rails App
command to make new directory:
mkdir AppName
| global | |
| log 127.0.0.1 local0 | |
| log 127.0.0.1 local1 notice | |
| maxconn 4096 | |
| nbproc 1 | |
| pidfile /var/run/haproxy.pid | |
| user haproxy | |
| group haproxy |
##References
##Create Rails App
command to make new directory:
mkdir AppName
| # http://stackoverflow.com/a/8936202 | |
| # | |
| # ActiveAdmin already includes the necessary jquery in active_admin/base, | |
| # so just add this to javascripts/active_admin.js after //= require active_admin/base | |
| # | |
| # | |
| # Serialize and Sort | |
| # | |
| # model_name - you guessed it, the name of the model we are calling sort on. | |
| # This is the actual variable name, no need to change it. |
| #!/bin/bash | |
| echo "Generating an SSL private key to sign your certificate..." | |
| openssl genrsa -des3 -out myssl.key 1024 | |
| echo "Generating a Certificate Signing Request..." | |
| openssl req -new -key myssl.key -out myssl.csr | |
| echo "Removing passphrase from key (for nginx)..." | |
| cp myssl.key myssl.key.org | |
| openssl rsa -in myssl.key.org -out myssl.key |
| user nginx; | |
| worker_processes 5; | |
| error_log /var/log/nginx.error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| } | |
| <?php | |
| /** | |
| * Template for ordering custom post types by terms on | |
| * on the post types archive.php | |
| * | |
| * @package WordPress | |
| * @author Justin Kopepasah | |
| * | |
| */ |
| #!/usr/bin/env bash | |
| apt-get -y update | |
| # Install dependencies | |
| sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev libcurl4-openssl-dev curl | |
| # Install Ruby 1.9.3 from source | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz | |
| tar -xvzf ruby-1.9.3-p194.tar.gz | |
| cd ruby-1.9.3-p194/ | |
| ./configure --prefix=/usr/local |
| #!/usr/bin/env ruby | |
| # | |
| # Mac fix 1 - Install the Nokogiri gem on Mac OS 10.9 Mavericks | |
| # | |
| # Usage: to configure and install using Bundler, pass in 'bundle' as an argument to the script. | |
| # | |
| # Nokogiri works at a very low level, so it has many issues on various platforms. | |
| # As a result, the command `install gem nokogiri` often will fail. This fix is for | |
| # errors involving 'libiconv', such as the following one I encountered: | |
| # |
| :+1: | |
| :-1: | |
| :airplane: | |
| :art: | |
| :bear: | |
| :beer: | |
| :bike: | |
| :bomb: | |
| :book: | |
| :bulb: |
| #!/usr/bin/env ruby | |
| progress = 'Progress [' | |
| 1000.times do |i| | |
| # i is number from 0-999 | |
| j = i + 1 | |
| # add 1 percent every 10 times | |
| if j % 10 == 0 |