Skip to content

Instantly share code, notes, and snippets.

View icetee's full-sized avatar
:atom:
Development

Tamás András Horváth icetee

:atom:
Development
View GitHub Profile
// ==UserScript==
// @name Steam Price Comparison - Unpowered edition
// @version 2.3.3
// @namespace http://steamunpowered.eu/comparison-script/
// @description Displays prices from all regions in the Steam store and convert them to your local currency
// @copyright 2011+, KindDragon; 2010+, Zuko; Original author: Tor (http://code.google.com/p/steam-prices/)
// @homepage http://userscripts.org/scripts/show/149928
// @download http://userscripts.org/scripts/source/149928.user.js
// @update http://userscripts.org/scripts/source/149928.meta.js
// @license MIT License; http://www.opensource.org/licenses/mit-license.php
<?php
/*
* A walker class to use that extends wp_dropdown_categories and allows it to use the term's slug as a value rather than ID.
*
* See http://core.trac.wordpress.org/ticket/13258
*
* Usage, as normal:
* wp_dropdown_categories($args);
*
@icetee
icetee / config.json
Created July 28, 2015 15:18 — forked from anonymous/config.json
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
<?php
function the_category_filter($thelist,$separator=' ') {
if(!defined('WP_ADMIN')) {
$exclude = array('A', 'B', 'C', 'D'); //as categorias para esconder
$cats = explode($separator,$thelist);
$newlist = array();
foreach($cats as $cat) {
$catname = trim(strip_tags($cat));
if(!in_array($catname,$exclude))
@icetee
icetee / ArraytoCSV
Last active September 28, 2015 13:08 — forked from haroonabbasi/ArraytoCSV
ArraytoCSV
<?php
/**
* Description of ArraytoCSV
*
* @author Haroon Abbasi (Thanks)
* @modified Tamás András Horváth
*
* Usage:
*
* $arrytoCSV = new ArraytoCSV();
//
// Regular Expression for URL validation
//
// Author: Diego Perini
// Updated: 2010/12/05
// License: MIT
//
// Copyright (c) 2010-2013 Diego Perini (http://www.iport.it)
//
// Permission is hereby granted, free of charge, to any person
@icetee
icetee / rPi3-ap-setup.sh
Last active February 6, 2017 22:07 — forked from Lewiscowles1986/rPi3-ap-setup.sh
Raspberry Pi 3 access-point-setup
#!/bin/bash
#
# This version uses September 2016 rpi jessie image, please use this image
#
if [ "$EUID" -ne 0 ]
then echo "Must be root"
exit
fi
@icetee
icetee / Custom_HTML_Signature_in_Apple_Mail_app.md
Created February 16, 2017 16:13 — forked from yugoslavskiy/Custom_HTML_Signature_in_Apple_Mail_app.md
Custom Apple Mail HTML signature creation guide
@icetee
icetee / meteordeps.js
Last active May 4, 2017 01:57 — forked from aedm/meteordeps.js
This script displays dependency relations between packages required by a Meteor project
"use strict";
const execSync = require('child_process').execSync;
const fs = require('fs');
function run(command) {
return execSync(command).toString().trim();
}
console.log("Reading 'versions' file...");
@icetee
icetee / handlebars.gravatar.js
Last active August 20, 2017 12:54 — forked from tracend/handlebars.gravatar.js
Handlebars.js - Gravatar thumbnail #handlebars #cc
// Handlebars.js - Gravatar thumbnail
// Usage: {{#gravatar email size="64"}}{{/gravatar}}
// Thanks: @tracend
import crypto from 'crypto';
import Handlebars from 'handlebars/runtime';
Handlebars.registerHelper('gravatar', (context, options) => {
const email = context;
const size = (typeof (options.hash.size) === 'undefined') ? 32 : options.hash.size;
const hash = crypto.createHash('md5').update(email).digest('hex');