- Get ML to allow some CSS updates
- Need mobile-friendly formatting
- Add some CSS3 effects: rounded borders and fades
- Add some texture to some backgrounds
- Draft some imagery for A.cc
- Just clean the site up to look newer and cleaner
sudo apt-get install python-software-properties software-properties-common | |
sudo add-apt-repository ppa:webupd8team/sublime-text-2 | |
sudo apt-get update | |
sudo apt-get install sublime-text |
#!/bin/bash | |
#should match 99.9% of SSH users | |
user_regex='[a-zA-Z][a-zA-Z0-9_]+' | |
#should match 90% of domains | |
host_regex='([a-zA-Z][a-zA-Z0-9\-]*\.)*[a-zA-Z][a-zA-Z0-9\-]*' | |
#should match paths starting with / and '' (which is valid for our use) | |
path_regex='(\/[A-Za-z0-9_\-\.]+)*\/?' | |
master_regex="^$user_regex\@$host_regex\:$path_regex\$" |
<?php | |
/* | |
* Usage: Point bs_grid to GridController@postModelName (make sure route is defined for the action) | |
* Whitelist models by making appropriate public methods. | |
* Controller will respond to basic use and sorting appropriately. | |
*/ | |
class GridController extends BaseController { |
#!/bin/bash | |
# Post install script for Ubuntu 18.04LTS and Mint 19LTS | |
# add the PHP PPA https://deb.sury.org/ | |
sudo add-apt-repository -y ppa:ondrej/php | |
# set up node sources | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
# add Sublime Text 3 stable to your sources |
Ver. 1.3.3.7
The [Joel Test][1] is a great way to check if your potential employer or current employer has a good handle on their software team. [The Original Joel Test][1] is great, but it is aimed at complied languages in a non-web-application environment. This is a basic rephrasing of the test to suit web app development with minor updates for developing in 2015. The test is actually part of [posting a job on Stack Overflow][http://careers.stackoverflow.com/jobs/post], and rightfully so. The language just needed some updates for it to work for my company.
The test is simple. If your company meets the requirement, you get a point. If you don't meet the requirement, you don't get a point. There are 12 questions, so there are a possible of 12 points available. Simple enough, right?
As the original test says 12 out of 12 is perfect, 11 is okay, 10 or less is failing. The reason the test is so strict is because these are 12 HUGE
#!/usr/bin/bash | |
NGINX_NPROC=`nproc` | |
NGINX_RPMREPO=https://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm | |
#set up the repo | |
wget -qO nginx.rpm $NGINX_RPMREPO | |
yum install -y nginx.rpm > /dev/null | |
rm nginx.rpm |