How to add padding layers for position absolute boxes to Google Maps
A Pen by Emanuele Tessore on CodePen.
<?php | |
$inHandler = fopen("in.csv", "r"); | |
$outHandler = fopen("out.txt", "w"); | |
$row = 0; | |
while (($data = fgetcsv($inHandler, 1000, ",")) !== FALSE) { | |
$row++; | |
if (1 == $row) continue; |
<?php | |
/** | |
* Created by PhpStorm. | |
* User: setola | |
* Date: 22/02/17 | |
* Time: 10.09 | |
*/ | |
$sql = <<<SQL | |
SELECT |
/** | |
* Just an object used for name spacing | |
*/ | |
var agitaLab = {}; | |
/** | |
* Two ways binding between an external "carousel-control like" | |
* element and the carousel slides. | |
* Remember to add data-item-no to your carousel :) | |
*/ |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
<?php | |
// First we remove all the shortcodes from the post body | |
add_action('the_content', 'strip_shortcodes'); | |
get_template_part('header'); | |
?> | |
<div id="main-container" class="container"> | |
<div class="row"> | |
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> |
<?php | |
/* | |
Template Name: Custom Password | |
*/ | |
/** | |
* Checks if the given code has a valid format ex: AB123456789 | |
* @param $code string the code | |
* @return bool true only if code is valid |
<?php | |
$articles = get_posts(array( | |
'post_type' => MY_CUSTOM_POST_TYPE, | |
'numberposts' => -1 | |
)); | |
$date = array(); | |
foreach($articles as $art){ | |
$date[] = array($art->post_date_gmt, $art->post_date); |
How to add padding layers for position absolute boxes to Google Maps
A Pen by Emanuele Tessore on CodePen.
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Tests for Banana Tool</title> | |
<link rel='stylesheet' | |
test='file from external cdn without scheme' | |
id='reset-css' | |
href='//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css' | |
type='text/css' |