Skip to content

Instantly share code, notes, and snippets.

View nhtua's full-sized avatar
👨‍✈️
looking for a co-pilot

Liam Nguyen nhtua

👨‍✈️
looking for a co-pilot
View GitHub Profile
@nhtua
nhtua / RandomStringGenerator.class.php
Last active October 21, 2016 09:26
[php] Generate ramdom string
<?php
namespace Utils;
/**
* Class RandomStringGenerator
* @package Utils
*
* Solution taken from here:
* http://stackoverflow.com/a/13733588/1056679
@nhtua
nhtua / elementary.js
Last active November 27, 2015 04:38
[javascript] The common functions for js
/**
* This function check an element is scrolled into view area on screen.
* @param elem; use CSS Selector syntax to specific an element.
* @return boolean;
* @author Scott Dowding
* @refer http://stackoverflow.com/questions/487073
*/
function isScrolledIntoView(elem)
{
var $elem = $(elem);