To make things simple, we're going to make a semi-structured way to display a mailing address.
We're going to start with a file tree that looks like this:
address-block
├ blocks
| ├ address.jsx
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| * { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| } | |
| span { | |
| font-size: smaller; | |
| } |
##D3 Star Trails
An attempt to recreate this picture of star trails in D3.
| """Print most frequent N-grams in given file. | |
| Usage: python ngrams.py filename | |
| Problem description: Build a tool which receives a corpus of text, | |
| analyses it and reports the top 10 most frequent bigrams, trigrams, | |
| four-grams (i.e. most frequently occurring two, three and four word | |
| consecutive combinations). | |
| NOTES |
| /*_ ___ ___ ___ __ _ __ | |
| | | / __|_ _|_ ) \/ |/ / | |
| | |__\__ \| | / / () | / _ \ | |
| |____|___/___/___\__/|_\___/ | |
| Aula de 18/04/2016: | |
| Reproduz o 'Wall Drawing #392' de Sol LeWitt (1983) e no final grava uma imagem. | |
| Por Eduardo Morais / FBAUP - www.eduardomorais.pt/fbaup/ | |
| */ |
Liquid Fill Gauge v1.1 - 7/14/2015
Changes:
Configurable features include:
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title>Sol Lewitt - Wall Drawing #392</title> | |
| <style> | |
| body{ | |
| margin: 0px; | |
| overflow: hidden; | |
| } | |
| svg{ |
| // Method 1 | |
| // add the twitter widget library to the bottom of app/index.html (after your Ember app) | |
| <script src="//platform.twitter.com/widgets.js" charset="utf-8"></script> | |
| // initialize it after the content is in the DOM | |
| import Ember from 'ember'; | |
| export default Ember.View.extend({ | |
| didInsertElement: function() { | |
| window.twttr.widgets.load(); |