Skip to content

Instantly share code, notes, and snippets.

@rickycodes
rickycodes / jQuerylol
Created June 25, 2012 19:57
best jQuery plugin evar
(function($) {
$.fn.ಠ_ಠ = $.fn.ಥ_ಥ = $.fn.ಠ益ಠ = $.fn.ಥ益ಥ = $.fn.ಠ_ರೃ = $.fn.ಠoಠ = $.fn.ಠxಠ = $.fn.囧 = function() {
return this;
};
})(jQuery);​
@rickycodes
rickycodes / jQ protobot
Created May 31, 2012 06:13
jQuery API calls for protobot
// jQuery API
j.watch_for( /^\?([^#@]+)(?:\s*#([1-9]))?(?:\s*@\s*([-\[\]|_\w]+))?$/, function( message ) {
// Return if botty is present
if ( message.source.clients.indexOf( 'bot-t' ) >= 0 || message.source.clients.indexOf( 'bot-t1' ) >= 0 )
return
var splat = message.text[ 0 ].split( ' ' )
, s = splat[ 0 ].replace( '?', '' )
, to = ( splat[ 1 ] === '@' && splat[ 2 ] && splat.length === 3 ) ? splat[ 2 ] : ''