Powerful animation with css3 matrix, resize your window only !
A Pen by Jose Luis Quintana on CodePen.
<?php | |
// https://github.com/joseluisq/gdimage | |
// Requiring the library | |
require 'GDUtils.php'; | |
require 'GDImage.php'; | |
require 'GDFigure.php'; | |
require 'GDText.php'; | |
require 'GDCanvas.php'; |
Powerful animation with css3 matrix, resize your window only !
A Pen by Jose Luis Quintana on CodePen.
#!/bin/sh | |
# Sublime Text 3 Installer | |
# for Fedora Linux x64 (64 Bit) | |
# Miscellaneous | |
B=`tput bold` | |
N=`tput sgr0` | |
# Sublime Text 3 - Build 3083 |
How to save an image from canvas.
A Pen by Jose Luis Quintana on CodePen.
<?php | |
/** | |
* Change format from the datetime | |
* Example: changeDatetimeFormat('2014-11-02 09:11:00', 'd/m/Y H:i:s a'); | |
* | |
* @param string $datetime String datetime | |
* @param string $format String datetime format | |
* @return string | |
*/ | |
function changeDatetimeFormat($datetime, $format = 'Y-m-d H:i:s') { |
<svg height="250" width="450"> | |
<polygon points="225,10 100,210 350,210" style="fill:rgba(0,0,0,0);stroke:#609AAF;stroke-width:10" /> | |
</svg> |
@ECHO OFF | |
:: Windows Batch Doctrine 2 Entities Generator | |
:: by Jose Luis Quintana | |
:: ----------------------------------------------------------------- | |
:: Previous installation via Composer | |
:: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/configuration.html | |
:: | |
:: Yaml mapping directory: ./config/yaml |
#!/bin/sh | |
# Mongodb Shell 64-bit System Installer | |
# OS: Red Hat Enterprise, CentOS, Fedora or a related linux system. | |
# Miscellaneous | |
B=`tput bold` | |
N=`tput sgr0` | |
# Checks if package is installed on system |
#!/bin/sh | |
# This test uses the `type` command to check if package is installed. | |
# Tested on Fedora Linux x64 | |
# Miscellaneous | |
B=`tput bold` | |
N=`tput sgr0` | |
# Package name |
/** | |
* Convert string datetime to Javascript Date object | |
* Eg. "2014-04-23 22:06:17".toDateFromDatetime() | |
*/ | |
String.prototype.toDateFromDatetime = function() { | |
var parts = this.split(/[- :]/); | |
return new Date(parts[0], parts[1] - 1, parts[2], parts[3], parts[4], parts[5]); | |
}; |