- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*---------------------------*/ | |
//JSFILE 1 - file that contains all namespace object and functions | |
(function(){ | |
var main = window.main || {} | |
var myNewObjectPage = main.myNewObjectPage = { | |
markedInvoicesCollection: [], //global array to be used anywhere within the myNewObjectPage | |
init: function() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git Useful Commands |
This snippet shows how to show/hide the newsletter signup using the Mailchimp for WP plugin
the classes: class="hvr-grow-shadow"
are for css animiation using Hover library
##Screenshot of actual example:
Use this template to compose HTML email on Gmail. The email.html
file contains the structure to build the email.
Use this service to edit and send/save your email composition: https://htmlmail.pro/
- https://github.com/totaljs/jComponent
- http://source.858project.com/jquery-bindings-demo.html
- https://github.com/petersirka/jquery.bindings
- http://johnpolacek.github.io/jquery-databinding/
- http://jquerymy.com/
- https://componentator.com/
- https://purecss.io/ (https://purecss.io/layouts/)
- http://bulma.io/
CodeAnywhere is a great cloud IDE to create web apps but it lacks that latest install of Laravel. So I used the latest PHP stack as my base and then installed the latest version of Laravel 5.5 with additional packages.
Here are the steps I followed:
- Create a new Container (Hook up bitbucket or GitHub repo first if there is an existing repo) use the PHP7 CentOS Stack
- Once container is loaded update composer:
composer self-update
- Then install Laravel on the root of workspace:
composer create-project laravel/laravel basicwebsite
- Install Nano editor:
sudo yum install nano
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import datetime | |
import os | |
import requests | |
import json | |
import sys | |
''' | |
Quick and dirty way to get wc scores in the terminal. This python script uses the World Cup API from Software for Good (https://softwareforgood.com/) to get live updates about a match and other | |
matches happening today. This script querries info on the current match and the other matches happening today and displays in the terminal. | |
Script then clears the terminal (WINDOWS) with displays the latest updated data every 70 seconds. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//How to do proper epoch unix time conversion to Human Readable Date (HRD) in php | |
//How to do proper epoch unix time conversion to HRD in php | |
$time = 1531116000000; | |
date_default_timezone_set('America/Edmonton'); | |
echo date('r', substr($time, 0, 10)); | |
echo '<br/><br/>'; | |
echo date('D, Y-M-d', substr($time, 0, 10)); |
OlderNewer