PHPPDX Meetup Talk 7/17/2018
Table of contents:
# .bash_profile | |
# /share/CACHEDEV1_DATA/.qpkg/container-station/bin location of `docker`/ `docker-compose` binaries | |
# /opt/bin location where `opkg` binary is installed to. | |
export PATH=\ | |
/bin:\ | |
/sbin:\ | |
/usr/bin:\ | |
/usr/sbin:\ | |
/usr/bin/X11:\ |
.fa-bounce { | |
display: inline-block; | |
position: relative; | |
-moz-animation: bounce 1s infinite linear; | |
-o-animation: bounce 1s infinite linear; | |
-webkit-animation: bounce 1s infinite linear; | |
animation: bounce 1s infinite linear; | |
} | |
@-webkit-keyframes bounce { |
var cornify_count = 0; | |
var cornify_add = function() { | |
cornify_count += 1; | |
var cornify_url = 'http://www.cornify.com/'; | |
var div = document.createElement('div'); | |
div.style.position = 'fixed'; | |
var numType = 'px'; | |
var heightRandom = Math.random()*.75; | |
var windowHeight = 768; |
PHPPDX Meetup Talk 7/17/2018
Table of contents:
/** | |
* Changes value to past tense. | |
* Simple filter does not support irregular verbs such as eat-ate, fly-flew, etc. | |
* http://jsfiddle.net/bryan_k/0xczme2r/ | |
* | |
* @param {String} value The value string. | |
*/ | |
Vue.filter('past-tense', function(value) { | |
// Slightly follows http://www.oxforddictionaries.com/us/words/verb-tenses-adding-ed-and-ing | |
var vowels = ['a', 'e', 'i', 'o', 'u']; |
Because Travis CI can automatically execute scripts after successfully (or unsuccessfully!) executing tests, it is an obvious choice for a deployment tool. In order to deploy to a Git repository on a remote server, the process generally is as follows:
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed
$screen-xs: 480px; | |
$screen-sm: 768px; | |
$screen-md: 992px; | |
$screen-lg: 1200px; | |
$num-of-classes: 5; | |
$directions: ('top', 'bottom', 'left', 'right'); | |
$types: ('margin', 'padding'); | |
$queries: ( | |
$screen-xs: 'xs', |
/** | |
* jQuery alterClass plugin | |
* | |
* Remove element classes with wildcard matching. Optionally add classes: | |
* $( '#foo' ).alterClass( 'foo-* bar-*', 'foobar' ) | |
* | |
* Copyright (c) 2011 Pete Boere (the-echoplex.net) | |
* Free under terms of the MIT license: http://www.opensource.org/licenses/mit-license.php | |
* | |
*/ |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):