I hereby claim:
- I am freshyill on github.
- I am freshyill (https://keybase.io/freshyill) on keybase.
- I have a public key ASCQl-BDW0UfZrr4mEIklk7u774J8jmiNn0I1gY7WRYd-Ao
To claim this, I am signing this object:
<div class="grid-container"> | |
<ul class="media-grid media-grid--2"> | |
<li><img src="//placehold.it/400x300"><h3>Headline this might get a bit long just to show off flexbox handling</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
</ul> |
<div class="grid-container"> | |
<ul class="media-grid media-grid--2"> | |
<li><img src="//placehold.it/400x300"><h3>Headline this might get a bit long just to show off flexbox handling</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
<li><img src="//placehold.it/400x300"><h3>Headline</h3></li> | |
</ul> |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# Every Vagrant virtual environment requires a box to build off of. | |
# Named boxes, like this one, don't need a URL, since the are looked up |
<?php | |
// PHP memory limit for this site | |
define( 'WP_MEMORY_LIMIT', '128M' ); | |
// Explicitely setting url | |
define( 'WP_HOME', 'http://domain.com' ); | |
define( 'WP_SITEURL', 'http://domain.com' ); | |
// Set url to... whatever. | |
define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] ); |
const fs = require('fs'); | |
const convert = require('xml2json'); | |
const xmlDir = 'final_xml'; | |
fs.readdir(xmlDir, (err, xmlList) => { | |
for (let xmlFile of xmlList) { | |
fs.readFile(xmlDir + "/" + xmlFile, "utf-8", (err, fileContents) => { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Child</title> | |
<style media="screen"> | |
#child { | |
color: fuchsia; | |
font-weight: bold; |
I hereby claim:
To claim this, I am signing this object:
const fs = require("fs"); | |
const transform = require("camaro"); | |
const dedent = require("deline"); | |
const xmlDir = "test_xml"; | |
fs.readdir(xmlDir, (err, files) => { | |
files.forEach(file => { | |
const xml = fs.readFileSync(xmlDir + "/" + file, "utf-8", (err, data) => { | |
if (err) throw err; |
COUNTER=0; | |
for files in *; | |
do | |
if test -f "$files"; then | |
LINES=`wc -l $files | awk '{print $1}'` | |
fi | |
COUNTER=`expr $COUNTER + $LINES`; | |
done |