Skip to content

Instantly share code, notes, and snippets.

View Spoygg's full-sized avatar

Ivan Ivanić Spoygg

View GitHub Profile
anonymous
anonymous / interesting-spam
Created July 10, 2014 08:34
Interesting spam I received on my blog comments
{
{I have|I’ve} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours.
{It’s|It is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site
owners|website owners|web owners} and bloggers
made good content as you did, the {internet|net|web} will be {much more|a
lot more} useful than ever before.|
I {couldn’t|could not} {resist|refrain from} commenting.
{Very well|Perfectly|Well|Exceptionally well} written!|
{I will|I’ll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} your {rss|rss feed} as I {can not|can’t} {in finding|find|to find}
your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service.
anonymous
anonymous / gist:2366219
Created April 12, 2012 10:08
<div style="display: block; z-index: 1002; outline: 0px none; height: auto; width: 370px; top: -1011px; left: 576px; position: relative;" class="ui-dialog ui-widget ui-widget-content ui-corner-all" tabindex="-1" role="dialog" aria-labelledby="ui-dialog-title-ui-dialogRiphryRSCQ"><div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"><span class="ui-dialog-title" id="ui-dialog-title-ui-dialogRiphryRSCQ">Add Store</span><a href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button"><span class="ui-icon ui-icon-closethick">close</span></a></div><div class="generated-ui-dialog-content ui-dialog-content ui-widget-content" id="ui-dialogRiphryRSCQ" style="width: auto; min-height: 92px; height: auto;" scrolltop="0" scrollleft="0"><p></p><form id="new-store-modal-form" action="/add-store">
<ul class="new-store-modal">
<li>
<label for="platform-selection">Select platform</label>
<div class="ui-dropdownized dropdownized" id="dropdownized-0" style="cursor: pointer; p
anonymous
anonymous / gist:2359059
Created April 11, 2012 12:33
<div class="step-container" id="page-step-1-content">
<div class="expanded" id="platforms">
<div id="platform-joomla" class="platform">
<div class="platform-details">
<img alt="" src="/images/store-chooser/logo-joomla.png">
<div class="total-stores">
<span>Total <br>stores</span> <span class="count">0</span>
</div>
</div>
<ul class="platform-stores"></ul>
@paulirish
paulirish / rAF.js
Last active March 22, 2024 00:00
requestAnimationFrame polyfill
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel
// MIT license
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
@johnpbloch
johnpbloch / query-thief.php
Created November 18, 2011 17:11
Hijacking the main WordPress query and loop for fun and profit
<?php
/*
* Plugin Name: Query Thief
* Description: Hijacking the main WordPress query and loop for fun and profit
* Version: 0.1
*/
// I namespace everything now that PHP 5.2.4 is the minimum requirement. :D
namespace JPB;