Hello, my name is Albino Tonnina.
I’m a
senior front-end developer based in London.
I work daily with a bunch of talented people. Young developers and people who
| #!/bin/bash | |
| # works with a file called VERSION in the current directory, | |
| # the contents of which should be a semantic version number | |
| # such as "1.2.3" | |
| # this script will display the current version, automatically | |
| # suggest a "minor" version update, and ask for input to use | |
| # the suggestion, or a newly entered value. |
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Twitter (app store) |
| @import '../../bower_components/angular-material/angular-material.scss'; | |
| $columns: 12; | |
| $gutter: 24px; | |
| .layout-row, .layout-column { | |
| margin-left: floor(($gutter / -2)); | |
| margin-right: ceil(($gutter / -2)); | |
| } |
Hello, my name is Albino Tonnina.
I’m a
senior front-end developer based in London.
I work daily with a bunch of talented people. Young developers and people who
| // 1. Visit a news website like cnn.com | |
| // 2. paste this into your console | |
| setInterval(() => | |
| document.querySelectorAll('p,img,a,button,h1,h2,h3,span') | |
| .forEach(x=>x.style=`transform:rotate(${Math.random()*777}deg) scale(${Math.random()* 3}); transition:all .5s`) | |
| , 500); | |
| // 3. feel a lil bit better 😘 |
| // 🔥 Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('☕'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } |