ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a bread crumb. It stores the URL, view | |
| # state, whatever. | |
| class BreadCrumb extends Model | |
| class BreadCrumbs extends Collection | |
| model: BreadCrumb | |
| # Views for displaying it | |
| class BreadCrumbView extends Marionette.ItemView | |
| template: 'breadcrum/templates/crumb' |
- Make sure
node buildoutputs some static files to_built. npm run deploy.
This eventually became this blog post and this module
Hey I want to build a site; fetch some data and renders it in to a filterable list. Could I use jQuery for that?
Yeah sounds simple enough. You could even ditch jQuery and use native DOM APIs. They've come a long way in the past few years.
Chill.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| getproviders() { | |
| for (( PAGE=1; ; PAGE++ )); do | |
| if [ "$1" == "--community" ]; then | |
| DATA="$(curl -fs "https://registry.terraform.io/v2/providers?filter[tier]=community&page[number]=$PAGE")" | |
| else | |
| DATA="$(curl -fs "https://registry.terraform.io/v2/providers?page[number]=$PAGE")" | |
| fi |
OlderNewer