index.html:
<html lang="en">
<head>
</head>
<body>
...
<script data-main="/js/config" src="/js/lib/require.min.js"></script>
$data = $YOUR_QR_STUFF->getImage(); | |
ob_start(); | |
imagepng($data); | |
$image_data = ob_get_contents(); | |
ob_end_clean(); | |
store_stuff_in_redis($key, $data); |
/* | |
Version: 3.4.5 Timestamp: Mon Nov 4 08:22:42 PST 2013 | |
*/ | |
.select2-container { | |
margin: 0 0 1rem 0; | |
position: relative; | |
vertical-align: middle; | |
font-family: inherit; | |
-webkit-appearance: none !important; | |
font-size: 0.875rem; |
index.html:
<html lang="en">
<head>
</head>
<body>
...
<script data-main="/js/config" src="/js/lib/require.min.js"></script>
function convertJsonDate( $string ) { | |
if ( preg_match('#^/Date\((-?\d+)([+-]\d+)?\)/$#', $string, $matches) ) { | |
$ds = intval( $matches[1] ) / 1000; | |
$dm = intval( $matches[1] ) % 1000; | |
$tz = '+000'; | |
if ( isset($matches[2]) ) { | |
$tz = $matches[2]; | |
} |
require 'rubygems' | |
require 'octokit' | |
require 'fastercsv' | |
require 'date' | |
# Description: | |
# Exports Github issues from one or more repos into CSV file formatted for import into JIRA | |
# Note: By default, all Github comments will be assigned to the JIRA admin, appended with | |
# a note indicating the Github user who added the comment (since you may not have JIRA users | |
# created for all your Github users, especially if it is a public/open-source project: |
<?php | |
class DateFormat { | |
const DATE_SHORT = 'Y-m-d'; | |
const DATE_LONG = 'F j, Y'; | |
const DATETIME_SHORT = 'Y-m-d H:i'; | |
const DATETIME_LONG = 'F j, Y, g:i a'; |
<?php | |
/** | |
* /application/tasks/db.php | |
*/ | |
class DB_Task { | |
/** | |
* php artisan db:init [connection] [user] |
<?php | |
class Data { | |
public static function factory() | |
{ | |
$args = func_get_args(); | |
if (count($args)==0) { |
<?php | |
// $rules = array( | |
// 'field' => 'required|date:Y-m-d' | |
// ); | |
public function validate_date($attribute, $value, $parameters) | |
{ | |
$format = $parameters[0]; |
<?php | |
class Data extends Aware { | |
public static $timestamps = true; | |
public static $table = 'data'; | |
private static $class = null; |