Skip to content

Instantly share code, notes, and snippets.

@ttribeiro
ttribeiro / time_countdown.js
Created August 30, 2012 12:57 — forked from marcosbrasil/time_countdown.js
Regressive time countdown in javascript
var YY = 2012;
var MM = 12;
var DD = 3;
var HH = 14;
var MI = 5;
var SS = 0;
function atualizaContador() {
var hoje = new Date();
var futuro = new Date(YY,MM-1,DD,HH,MI,SS);
@ttribeiro
ttribeiro / text_cut.php
Created June 22, 2012 14:10 — forked from marcosbrasil/text_cut.php
FUnção PHP para limitar texto sem cortar palavras
<?php
function limitarTexto($texto, $limite){
$texto = substr($texto, 0, strrpos(substr($texto, 0, $limite), ' ')) . '...';
return $texto;
}
// String a ser limitada
$string = 'Como limitar caracteres sem cortar as palavras com PHP';
// Mostrando a string limitada em 25 caracteres.
@ttribeiro
ttribeiro / gist:1903583
Created February 24, 2012 20:36
Easy Slider 1.7 Left And Right Function
/*
* Easy Slider 1.7 - jQuery plugin
* written by Alen Grakalic
* http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
*
* Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* Built for jQuery library