Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
/* | |
* _mixins.scss | |
*/ | |
$font_dir: '../fonts/'; | |
/* _simple-font-url('Chunkfive', 'eot'); */ | |
@function _simple-font-url($name, $extension) | |
{ | |
@return url($font_dir + $name + '-webfont.' + $extension); |
@font-face { | |
font-family: junicode; | |
src: url('_junicode.ttf'); | |
} | |
.card, table { | |
font-family: Helvetica, sans-serif, junicode; | |
font-size: 20px; | |
text-align: center; | |
color: #d03030; | |
background-color: #fafaf5; |
$svg-container-namespace: '.svg-container'; | |
//Give 'em' 1:1 responsive container by default | |
#{$svg-container-namespace} { | |
display: inline-block; | |
position: relative; | |
height: 0; | |
width: 100%; | |
padding: 0; | |
//Default for 1:1 aspect ratio |
NOTE I'm trying to find the most optimal fav/touch icon setup for my use-cases. Nothing new here. Read Mathias Bynens' articles on re-shortcut-icon and touch icons, a FAQ or a Cheat Sheet for all the details.
I'd like to hear how you approach this: @valuedstandards or comment on this gist.
You have to include a boatload of link
elements pointing to many different images to provide (mobile) devices with a 'favicon' or 'touch icon':
A friend who has lived in apartment buildings almost all her life has finally secured herself a community garden plot. She asked for advice. I wrote out a long list, and figured others might find it useful, too.
The specific dates are aimed at Toronto, Ontario. ("Now" is late April.) But the general advice and plant recommendations apply for anyone in temperate climates. I've gardened in Ottawa, Vancouver, and Edmonton. That's Canadian zones 5a, 8a, and 3b.
import numpy as np | |
import bpy | |
from mathutils import Vector | |
from math import sin, cos, pi, copysign | |
def randomize_pos(obj, min, max): | |
axis = np.random.randint(0, 3) | |
new_axis_pos = np.random.uniform(min, max) | |
# x axis | |
if axis == 0: |