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
<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; |
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
/** | |
* 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 :) | |
*/ |
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 | |
/** | |
* Created by PhpStorm. | |
* User: setola | |
* Date: 22/02/17 | |
* Time: 10.09 | |
*/ | |
$sql = <<<SQL | |
SELECT |
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 | |
$inHandler = fopen("in.csv", "r"); | |
$outHandler = fopen("out.txt", "w"); | |
$row = 0; | |
while (($data = fgetcsv($inHandler, 1000, ",")) !== FALSE) { | |
$row++; | |
if (1 == $row) continue; |
OlderNewer