Skip to content

Instantly share code, notes, and snippets.

View dalazaro's full-sized avatar
:octocat:
Working remotely

Daryl Jason Lazaro dalazaro

:octocat:
Working remotely
View GitHub Profile

Keybase proof

I hereby claim:

  • I am dalazaro on github.
  • I am darylspera (https://keybase.io/darylspera) on keybase.
  • I have a public key ASDuHigkbR8s2ja7tS7jIlNO_SkXKSG6xgiiiXHGd3zxrQo

To claim this, I am signing this object:

@dalazaro
dalazaro / vuejs-cheatsheet.md
Last active March 14, 2018 20:59
Vue.js Cheat Sheet

Vue.js Cheat Sheet

Official Site

Vue.js is an open-source JavaScript framework meant for building scalable, quick-loading user interfaces. It's particularly useful for simpler single-page apps in place of a monolithic framework like React.

Vue.js was first released in February 2014 by Google employee Evan You, as an alternative to Angular 1. His goal was to build a lightweight framework that incorporated the parts he liked about Angular 1 (e.g. component-based, syntax), but with more flexibility (i.e. less opinions on how your app should be structured) and one-directional data flow between components.

@dalazaro
dalazaro / mustache-gem.md
Last active September 5, 2017 17:31
Mustache Ruby Gem

mustache

Make templating great again with mustache!

What's So Great About mustache?

  • "Logic-less" templates!
  • Keeps your view template simple and easier to edit!
  • @dalazaro
    dalazaro / how-to-transpose.md
    Last active August 17, 2017 15:51
    How to transpose an array!

    Ruby Method: Array.transpose

    DataType: Array

    The Array.transpose method takes in a two-dimensional array (array of arrays), and if each subarray is of equal length, the method will transpose (rearrange) the elements into new subarrays.

    Example:

    In this array (you could even call it "taco"), we have three subarrays of equal lengths.