This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var initMap = function(){ | |
var Lon = -2.93 ; | |
var Lat = 43.2629642; | |
var Zoom = 14; | |
var EPSG4326 = new OpenLayers.Projection( "EPSG:4326" ); | |
var EPSG900913 = new OpenLayers.Projection("EPSG:900913"); | |
var LL = new OpenLayers.LonLat( Lon, Lat ); | |
var XY = LL.clone().transform( EPSG4326, EPSG900913 ); |
- Reconocimiento de comandos de voz: https://www.talater.com/annyang/
- DateTime picker responsive: https://github.com/CuriousSolutions/DateTimePicker
- DateTime picker: http://xdsoft.net/jqplugins/datetimepicker/
- Bootstrap DateTimePicker: https://github.com/smalot/bootstrap-datetimepicker
- Foundation DateTimePicker: http://foundation-datepicker.peterbeno.com/example.html
- Llamadas a callbacks por combinación de teclas: http://craig.is/killing/mice
- Formatear y trabajar con fechas: http://momentjs.com/
- Mejorar controles select: http://ivaynberg.github.io/select2/
- Onsen UI: http://onsenui.io/
- MobileAngular UI: http://mobileangularui.com/
- Ionic: http://ionicframework.com/
- Sencha Touch: http://www.sencha.com/products/touch/
- Chocolate Chip UI: http://chocolatechip-ui.com/
- Ratchet: http://goratchet.com
- App.js: http://code.kik.com/app/2/index.html
- RAD.js: http://rad-js.com/
-
Beginning Database Design Solutions http://www.amazon.com/Beginning-Database-Design-Solutions-Stephens/dp/0470385499/ o en español -> http://www.amazon.es/Dise%C3%B1o-bases-datos-Anaya-Multimedia/dp/8441525781
-
SQL Antipatterns http://www.amazon.com/SQL-Antipatterns-Programming-Pragmatic-Programmers/dp/1934356557/
-
Database Design for Mere Mortals http://www.amazon.com/Database-Design-Mere-Mortals-Relational/dp/0321884493/
- Data Science for Business http://www.amazon.com/Data-Science-Business-data-analytic-thinking/dp/1449361323/r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function utf2html ($string) | |
{ | |
$f = 0xffff; | |
$convmap = array( | |
160, 255, 0, $f, | |
402, 402, 0, $f, 913, 929, 0, $f, 931, 937, 0, $f, | |
945, 969, 0, $f, 977, 978, 0, $f, 982, 982, 0, $f, | |
8226, 8226, 0, $f, 8230, 8230, 0, $f, 8242, 8243, 0, $f, | |
8254, 8254, 0, $f, 8260, 8260, 0, $f, 8465, 8465, 0, $f, | |
8472, 8472, 0, $f, 8476, 8476, 0, $f, 8482, 8482, 0, $f, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wp_bootstrap_comments($comment, $args, $depth) | |
{ | |
$GLOBALS['comment'] = $comment; ?> | |
<li <?php comment_class(); ?>> | |
<article id="comment-<?php comment_ID(); ?>" class="clearfix"> | |
<div class="comment-author vcard clearfix"> | |
<div class="avatar col-sm-3"> | |
<?php echo get_avatar( $comment, $size='75' ); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle\Twig { | |
use Symfony\Component\Intl\Exception\RuntimeException; | |
class AppExtension extends \Twig_Extension | |
{ | |
public function __construct() |
OlderNewer