Left: 12 points and requires only 1 div. Right: 24 points but requires a nested span.
Forked from Peter Hrynkow's Pen CSS Starbursts.
tap "caskroom/cask" | |
tap "denji/nginx" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/dupes" | |
tap "homebrew/services" | |
tap "mongodb/brew" |
Function::property = (prop, desc) -> | |
Object.defineProperty @prototype, prop, desc | |
class Person | |
constructor: (@firstName, @lastName) -> | |
@property 'fullName', | |
get: -> "#{@firstName} #{@lastName}" | |
set: (name) -> [@firstName, @lastName] = name.split ' ' | |
p = new Person 'Leroy', 'Jenkins' |
Left: 12 points and requires only 1 div. Right: 24 points but requires a nested span.
Forked from Peter Hrynkow's Pen CSS Starbursts.
#!/usr/bin/env zsh | |
brew tap osx-cross/avr | |
brew tap homebrew/dupes | |
brew install gnu-sed --with-default-names | |
brew install gperf grep autoconf binutils gawk wget automake libtool help2man | |
brew cask install java arduino |
#!/bin/bash | |
# | |
# Script for updating DNS records on Hurricane Electirc's DNS system (https://dns.he.net). | |
# | |
# The record will be updated with the IP address that originates the request. | |
# | |
# Usage | |
# ----- | |
# | |
# Create config file `/etc/he-dns-update.conf`: |
config.json | |
reading-image.png |
{ | |
"style": [ | |
"Let me tell you something, this is one of the most pathetic, stupid questions I have ever seen on Quora! Sad! I kid you not, we need to report this person to Quora moderation, and no one does that better than me, believe me.", | |
"I have gotten so fed up with Quora lately, I kid you not. I tell you what, I’m going to make a new site. It will be a very good site, and I will deport people like you from that site. And honestly, if you don’t like it… I’m sorry. And quite frankly, Quirky Quorans like you are just as bad as Crooked Hillary.", | |
"I tell you what, if we can’t make Quora great again, I will make a new site. It will be so good -and let me tell you something- people will say it is a very good site. I will have the best site, I kid you not. It will be so good.", | |
"And you know what? I will build a great, great firewall around this site. It will keep all the hackers out – won’t even have to deport them! I tell you what, this site will be so amazing. It will be the best site. In fact- It w |
<nav class="nav"> | |
<div class="burger"> | |
<div class="burger__patty"></div> | |
</div> | |
<ul class="nav__list"> | |
<li class="nav__item"> | |
<a href="#1" class="nav__link c-blue"><i class="fa fa-camera-retro"></i></a> | |
</li> | |
<li class="nav__item"> |
<nav class="nav"> | |
<div class="burger"> | |
<div class="burger__patty"></div> | |
</div> | |
<ul class="nav__list"> | |
<li class="nav__item"> | |
<a href="#1" class="nav__link c-blue"><i class="fa fa-camera-retro"></i></a> | |
</li> | |
<li class="nav__item"> |