Shared by Erin Hooley
NOTES Share and Spread the word. Primary link is: https://www.crowdrise.com/throughhereyesagallerybyutahwomenphotojournalists/fundraiser/brianascroggins. Google Shortened link is: https://goo.gl/CwHKpG
/ This template produces an EXACT replica of the `index.html` file found in HTML5 Boilerplate v4.3.0 | |
/ The official distribution is located at: https://github.com/h5bp/html5-boilerplate/blob/v4.3.0/index.html | |
/ | |
/ For a more elegant way to generate the HTML tags within IE conditional comments, see the abstraction | |
/ in my gist at: https://gist.github.com/SteveBenner/a71f41e175f135b7d69b | |
/ | |
doctype html | |
/ The min and max values of the version range actually represent all values below or above the limit | |
- ie_versions = 6..9 # A minimum value of 6 for example, translates into 'less than 7' | |
- for version in ie_versions |
Shared by Erin Hooley
NOTES Share and Spread the word. Primary link is: https://www.crowdrise.com/throughhereyesagallerybyutahwomenphotojournalists/fundraiser/brianascroggins. Google Shortened link is: https://goo.gl/CwHKpG
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
One of the best ways to reduce complexity (read: stress) in web development is to minimize the differences between your development and production environments. After being frustrated by attempts to unify the approach to SSL on my local machine and in production, I searched for a workflow that would make the protocol invisible to me between all environments.
Most workflows make the following compromises:
Use HTTPS in production but HTTP locally. This is annoying because it makes the environments inconsistent, and the protocol choices leak up into the stack. For example, your web application needs to understand the underlying protocol when using the secure
flag for cookies. If you don't get this right, your HTTP development server won't be able to read the cookies it writes, or worse, your HTTPS production server could pass sensitive cookies over an insecure connection.
Use production SSL certificates locally. This is annoying
#!/usr/bin/env sh | |
# Download lists, unpack and filter, write to gzipped file | |
curl -s https://www.iblocklist.com/lists.php \ | |
| grep -A 2 Bluetack \ | |
| sed -n "s/.*value='\(http:.*\)'.*/\1/p" \ | |
| xargs wget -O - \ | |
| gunzip \ | |
| egrep -v '^#' \ | |
| gzip - > bt_blocklist.gz |
#!/bin/sh | |
:<<END_DOC | |
blocklist updater - for transmission | |
Written by raidzero for linux | |
BLOCKLIST_HOME is the directory where transmission keeps its blocklists | |
END_DOC | |
BLOCKLIST_HOME=~/.config/transmission/blocklists |
// Modifications via StackOverflow | |
You are receiving the data in the right order, but then you are using the shuffle() function on the images array $a_images you created . | |
if you remove the shuffle($a_images); from your code it'll be just fine. | |
and replace $image[link], $image[url] and // // $image[caption] with $image['link'], $image['url'] and $image['caption'] | |
sorry for bad english |
Google Public DNS IPv4 Addresses
Google Public DNS IPv6 Addresses
Hostname | IPv4 | IPv6 | Owner(s) | Added | Status