Skip to content

Instantly share code, notes, and snippets.

View fightbulc's full-sized avatar
🍼
Family and buisness related projects. OS is on the low side atm

Tino Ehrich fightbulc

🍼
Family and buisness related projects. OS is on the low side atm
View GitHub Profile

Fix locale bug on unix

I always got the following bug:

locale: Cannot set LC_CTYPE to default locale: No such file or directory

The following steps fix this bug specifically for Gentoo systems. I didn't test any other systems yet.

    // Format string
    /*
      Month
      -----------------------------
      M: 1 2 ... 11 12
      Mo: 1st 2nd ... 11th 12th
      MM: 01 02 ... 11 12
      MMM Jan Feb ... Nov Dec
      MMMM: January February ... November December
// Google Maps doesn't like line-breaks, remove them
CurrentAddress = CurrentAddress.replace(/\n/g, "");
// Create a new Google geocoder
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': CurrentAddress }, function (results, status) {
// The code below only gets run after a successful Google service call has completed.
// Because this is an asynchronous call, the validator has already returned a 'true' result
// to supress an error message and then cancelled the form submission. The code below
#
# redis
#
sudo docker run -d -v /home/data/redis:/data --name web_redis dockerfile/redis redis-server /etc/redis/redis.conf
sudo docker run -it --rm --link web_redis:redis dockerfile/redis bash -c 'redis-cli -h $REDIS_PORT_6379_TCP_ADDR'
#
# mysql
#
sudo docker run -d -v /home/data/mysql:/var/lib/mysql -p 3306:3306 -e MYSQL_PASS="rootuser" --name web_mysql tutum/mysql
[
{
"Entity":"AFGHANISTAN",
"Currency":"Afghani",
"Alphabetic Code":"AFN",
"Numeric Code":"971",
"Minor unit":"2",
"Withdrawal Date":"",
"Remark":""
},
// 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
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {

!1plus2equalsFour!

@fightbulc
fightbulc / app.php
Created August 18, 2015 18:29
moment test
<?php
require 'vendor/autoload.php';
date_default_timezone_set('America/Chicago');
// Using Moment -- https://github.com/fightbulc/moment.php
$m = new \Moment\Moment('now', 'CST');
// Correct month 03 (March)
echo $m->format() . "\n";
// Wrong month, says "April"
echo $m->format('l, dS F Y / H:i (e)') . "\n";
// Using plain php date -- http://php.net/manual/en/function.date.php
@fightbulc
fightbulc / page-a.html
Last active September 3, 2015 21:21
Tracking w/ localStorage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PAGE A</title>
</head>
<body>
<h1>PAGE A</h1>
<a href="page-b.html">Go to page B</a>