Skip to content

Instantly share code, notes, and snippets.

Processing 240 countries...
[1/240] Processing Afghanistan (AF)...
Created: 1216_poster, unframed, standard - Cost: 875 GBP, Price: 0 (7-16 days)
Product in AF not available for 1216_poster, unframed, priority: Product not available for order: 2c7fea09-e90c-4a1d-9de9-2c0c5c4d3137, {"outcome":"NotAvailable","issues":null,"quotes":[],"traceParent":"00-696b7e9710bc9f8baaec3d2f70d0793c-a97bc44321760599-00"}, {"shippingMethod":"Express","destinationCountryCode":"AF","items":[{"sku":"GLOBAL-FAP-12x16","copies":1,"attributes":{},"assets":[{"printArea":"default"}]}]}
Created: 1216_poster, framed, standard - Cost: 6495 GBP, Price: 9000 (1-3 days)
Skipping 1216_poster, framed, priority - No previous shipping option found
Created: 1824_poster, unframed, standard - Cost: 963 GBP, Price: 0 (7-16 days)
Product in AF not available for 1824_poster, unframed, priority: Product not available for order: 9eeeffcb-11b0-4328-baba-1060f4cff0ec, {"outcome":"NotAvailable","issues":null,"quotes":[],"traceParent":"00-f94eb7
<?php
class DrinkingGame
{
const TAIL = 'tail';
const DRUNKEST = 'zoltan';
public function __construct(array $names, Coin $coin = null) {
$this->names = array_fill_keys($names, 0);
$this->coin = $coin;
@tcz
tcz / MainActivity.java
Created April 16, 2015 16:55
Android bug OpenGLRenderer﹕ Layer exceeds max. dimensions supported by the GPU
package com.example.gpulayerbug;
import android.app.Activity;
import android.os.Bundle;
import android.transition.Fade;
import android.transition.Transition;
import android.transition.TransitionManager;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
@tcz
tcz / designer.html
Created June 3, 2014 15:47
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
@tcz
tcz / guessgame_loop.py
Last active August 29, 2015 14:01
Benedek python practice
import random
import sys
enter = "Please Press Enter To Continue..."
print "Hello! Welcome to a Guessing game!"
print "Please Guess A number between 1 - 100!"
computernum = random.randint(1, 100)
computernum = str(computernum)
guesses = 3
<?php
use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
/**
* Session sotrage that avoids using _sf2_attributes subkey
* in the $_SESSION superglobal but instead it uses
* the root variable.
*/
class LegacySessionStorage extends NativeSessionStorage
@tcz
tcz / nginxrps.php
Created February 24, 2014 13:51
Check request per seconds on Nginx with PHP
<?php
while (true)
{
$query_start = microtime(true);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://127.0.0.1/nginx_status");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
@tcz
tcz / mysqlqps.php
Created February 24, 2014 13:50
Check MySQL queries per second periodically from PHP
<?php
$mysqli = new mysqli("db", "user", "pass", "db");
/* check connection */
if ($mysqli->connect_errno) {
printf("Connect failed: %s\n", $mysqli->connect_error);
exit();
}
@tcz
tcz / base_convert.php
Last active December 28, 2015 00:39
Convert from any base to any base in PHP
<?php
function convertBases($number, $from_digits, $to_digits)
{
$from_digits = str_split($from_digits, 1);
$to_digits = str_split($to_digits, 1);
$number = str_split($number, 1);
$number_dec = "0";
$ord = 0;
@tcz
tcz / hypem.php
Last active July 26, 2016 02:14
Copy Hypem favorites to Spotify
<?php
if ($argc !== 2)
{
die("Usage: php {$argv[0]} hypem_user_name\n\n");
}
$user = $argv[1];
$page = 1;
$all_songs = array();