Andy Thomason is a Senior Programmer at Genomics PLC. He has been witing graphics systems, games and compilers since the '70s and specialises in code performance.
| /// Add Gap between the boxes | |
| /// | |
| /// @author Sascha Fuchs | |
| /// | |
| /// @group core - cssgrid | |
| /// | |
| /// @param {list} $boxes - List with box sizes | |
| /// @param {string} $gap - Optional column gap | |
| @function box-gap($boxes, $gap) { | |
| $box: (); |
This is an incomplete list of resources including courses and individuals who publish content that has helped me grow as a web developer and designer. Many of these resources are WordPress-specific as that is my current area of specialization. This list will grow over time. If you've got something to add, send me a link @kevinwhoffman and I'll check it out!
- Øredev 2018 - November 20, 2018
- FrontCon 2018 - June 14, 2018
- Render Conf 2018 - March 23, 2018
- Reversim Summit 2017 - October 16, 2017
- GDG Devfest Lviv 2017 - October 13, 2017
| import styled, { css } from 'emotion/react' | |
| import { space, width, fontSize, color, responsiveStyle } from 'styled-system' | |
| export const display = responsiveStyle('display') | |
| export const flex = responsiveStyle('flex') | |
| export const order = responsiveStyle('order') | |
| const wrap = responsiveStyle('flex-wrap', 'wrap', 'wrap') | |
| const direction = responsiveStyle('flexDirection', 'direction') | |
| const align = responsiveStyle('alignItems', 'align') |
| const webpack = require('webpack'); | |
| require('dotenv').config({ | |
| path: process.env.NODE_ENV === 'production' ? '.env.production' : '.env' | |
| }); | |
| module.exports = { | |
| webpack: config => { | |
| const env = Object.keys(process.env).reduce((acc, curr) => { | |
| acc[`process.env.${curr}`] = JSON.stringify(process.env[curr]); |
| #!/bin/bash | |
| START=$SECONDS | |
| FILES=/var/www/vhosts/site.com/logs/access-2*.log | |
| # Generate summary | |
| goaccess /var/www/vhosts/site.com/logs/access.log --geoip-database /var/www/vhosts/site.com/logs/GeoIP.dat -o /var/www/vhosts/site.com/web/web/reports/summary.html | |
| # Generate monthly reports | |
| # -> Split logs |
Edit: After some constructive feedback on hacker news, I think that it's worth mentioning that this playlist is very skewed towards recent material, although I've included some essentials from the past.
I think that hip hop is one of the most, if not the most, misunderstood genres of music. In this playlist, rather than focusing on one artist or one type of hip hop, I tried to give examples of a bunch of different artists with songs ranging from the early 90's all the way up until 2017. The songs are in no particular order and the sounds cover a very broad spectrum. Some of them are pretty damn explicit, so I wouldn't necessarily throw this playlist on if there are kids around. I provided the lyrics to each song, the sub-genre that I'd put the artist in (very rough), and a brief description. This playlist is not by any means meant to be comprehensive and in many cases doesn't necessarily represent the artist's "best" song, but instead aims at exposing you to some of my fa

