Skip to content

Instantly share code, notes, and snippets.

View pcalves's full-sized avatar
🍵

Paulo Coelho Alves pcalves

🍵
View GitHub Profile
@pcalves
pcalves / dabblet.css
Last active August 29, 2015 13:57
CSS Triangle border
/**
* CSS Triangle border
*/
body {
background-color: #e6e6da;
color: black;
font-family: sans-serif;
font-size: 14px;
}
@pcalves
pcalves / dabblet.css
Last active August 29, 2015 13:56
Full page background
/**
* Full page background
* http://css-tricks.com/perfect-full-page-background-image/
*/
.bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
@pcalves
pcalves / delete_dupes.sql
Last active January 3, 2016 21:09
Delete duplicate entries in a table (MySQL).
DELETE FROM table
USING table, table t2
WHERE table.id > t2.id
AND table.`column` = t2.`column`
@pcalves
pcalves / share.html
Last active December 31, 2015 07:59
Sharing without loading external elements.
<button href="http://twitter.com/home?status=STATUS" class="twitter">Tweet</button>
<button href="http://www.facebook.com/sharer.php?s=100&amp;p[url]=URL&amp;p[title]=TITLE&amp;p[summary]=DESCRIPTION&amp;p[images][0]=ABSOLUTE_LINK_TO_IMAGE" class="facebook">FB Share</button>
<button href="http://pinterest.com/pin/create/button/?url=URL&amp;media=MEDIA_IMG_OR_VIDEO&amp;description=DESCRIPTION" class="pinit">Pin It</button>
<button href="http://www.tumblr.com/share/link?url=URL&amp;name=NAME&amp;description=DESCRIPTION" class="tumblr">Tumblr</button>
@pcalves
pcalves / placeholder.js
Created November 5, 2013 12:58
Placeholder polyfill (requires jQuery and Modernizr).
// input placeholder polyfill
if(!Modernizr.input.placeholder){
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);
/*
This code will click like's currently loaded
on a facebook page. It's likely in the future
the name of the classes may change.
Be careful though, if you do too many at once
you'll get a warning.
To use this copy and paste it to your browser's
javascript console, or add javascript: to the