Skip to content

Instantly share code, notes, and snippets.

@xbb
xbb / jquery.placeholder.js
Created March 10, 2011 09:17
adds placeholder support to browsers not supporting HTML5 placeholders
if ( ! Modernizr.input.placeholder) {
var phId = 0;
$('[placeholder]').each(function(){
var $input = $(this),
label = document.createElement('label');
this.id = this.id || 'input-placeholder-' + (++phId);
label.innerHTML = $input.attr('placeholder');
label.htmlFor = this.id;
$('[placeholder]').focus(function() {
var input = $(this);
if (input.hasClass('placeholder')) {
input.val('')
.removeClass('placeholder')
.attr('autocomplete', 'on');
}
}).blur(function() {
var input = $(this);
if (input.val().length === 0) {
@xbb
xbb / xbb.zsh-theme
Created January 14, 2012 05:23
zsh theme
autoload -U add-zsh-hook
autoload -Uz vcs_info
zstyle ':vcs_info:*' actionformats \
'%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
zstyle ':vcs_info:*' formats \
'%F{2}%s%F{7}:%F{2}(%F{1}%b%F{2})%f '
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
zstyle ':vcs_info:*' enable git
@xbb
xbb / gscrape.js
Created April 2, 2011 15:06
simple google scraper test with phantomjs
var Gscrape = function(domain) {
var domain = domain || 'com',
searchURL = 'http://www.google.' + domain + '/search?q=',
searchInProgress = false,
cache = {
error: '',
success: true,
pages: 0,
urls: {}
};
@xbb
xbb / prestashop-autocompletion.php
Created September 12, 2011 10:12
Prestashop autocompletion
<?php
class AbstractLogger extends AbstractLoggerCore {}
class Address extends AddressCore {}
class AddressFormat extends AddressFormatCore {}
class AdminTab extends AdminTabCore {}
class Alias extends AliasCore {}
class Attachment extends AttachmentCore {}
class Attribute extends AttributeCore {}
class AttributeGroup extends AttributeGroupCore {}
@xbb
xbb / keybase.md
Created September 10, 2019 12:26

Keybase proof

I hereby claim:

  • I am xbb on github.
  • I am xbb (https://keybase.io/xbb) on keybase.
  • I have a public key ASDQg47vqNFwNV0BOjy4d8CzYACqoAKRE99davVVEoD4dAo

To claim this, I am signing this object:

@xbb
xbb / update-terminfo.sh
Last active May 28, 2021 20:29
terminfo termcap update linux freebsd
#!/usr/bin/env sh
set -e
NAMES=xterm,xterm-256color,screen,screen-256color,tmux,tmux-256color
if [ "$(uname -s)" = "FreeBSD" ]; then
curl -o /tmp/termcap.src https://raw.githubusercontent.com/freebsd/freebsd-src/main/share/termcap/termcap
cap_mkdb -vf /usr/share/misc/termcap /tmp/termcap.src
rm /tmp/termcap.src
else
@xbb
xbb / tf-guitar-wisdom-speed-control-userscript.js
Last active February 20, 2022 22:23
Video speed control userscript
// ==UserScript==
// @name TF Guitar Wisdom video speed control
// @description Injects a video speed controller in the embedded video frames at TF Guitar Wisdom, visible on mouse over, easily adaptable for other sites
// @version 1.1.0
// @author xbb
// @match https://embed.vhx.tv/*
// @allFrames true
// ==/UserScript==
(() => {
@xbb
xbb / itch-claim-all.js
Last active July 31, 2022 21:19
itch.io claim all button
// ==UserScript==
// @name itch.io claim all button
// @version 0.2
// @description claims all the items automatically in the download bundle pages, make sure to start from page 1
// @author xbb
// @match https://itch.io/bundle/download/*
// @grant none
// ==/UserScript==
(() => {
const findBackward = (node, callback) => {
@xbb
xbb / README.md
Created November 19, 2022 01:57
Amazon save for later cleaner: removes all the saved for later items from your cart page, read usage below

Amazon save for later cleaner

The scripts deletes one item at a time, waiting for its node removal and 1 second.

It will wait for new items to load in the page, so there is no need to preload the whole list.

Actually, if you preload the whole list before, it will make things slower and worse because every delete request contains all your displayed item list…

Usage: