Skip to content

Instantly share code, notes, and snippets.

View alexandervalencia's full-sized avatar
🚂
Choo Choo!

Alexander Valencia alexandervalencia

🚂
Choo Choo!
View GitHub Profile

Keybase proof

I hereby claim:

  • I am alexandervalencia on github.
  • I am alexvalencia (https://keybase.io/alexvalencia) on keybase.
  • I have a public key ASDuepgvvgiTN2vMA2KrnGLjsVO9nMqOyBW85xM-rluIYgo

To claim this, I am signing this object:

@alexandervalencia
alexandervalencia / gist:e10bc964d5fcd52c1f36ec7ed0100504
Created July 13, 2018 17:55 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@alexandervalencia
alexandervalencia / index.js
Last active May 14, 2018 18:24
liferay-theme-typescript-hook/index.js
'use strict';
var path = require('path');
var ts = require('gulp-typescript');
var tsProject = ts.createProject('tsconfig.json');
module.exports = function(gulp, options) {
var runSquence = require('run-sequence').use(gulp);
var pathBuild = options.pathBuild;
@alexandervalencia
alexandervalencia / .bashrc
Created February 20, 2018 19:19
Git patch functions
# For the following patch functions, we assume your liferay-portal,
# liferay-plugins, and bundles folders live in a parent folder named "liferay"
# Git Format Patch
# Usage: fp <# of commits> <Commit Sha>
# Example: `fp 3 34s3446e`
function fp {
local dirPath=`find ~ -maxdepth 3 -type d -name 'liferay' -print -quit`
local fileCount=$(ls $dirPath/patches | wc -l)
{
"availableLanguageIds": [
"en_US"
],
"defaultLanguageId": "en_US",
"fields": [
{
"label": {
"en_US": "PodBanner"
},
@alexandervalencia
alexandervalencia / README.md
Created June 6, 2017 22:32 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})