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.
#!/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 |
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.
node build
outputs some static files to _built
.npm run deploy
.This eventually became this blog post and this module
# 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' |
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
~/Sites
folder if you don’t already have onephp5_module
line in /etc/apache2/httpd.conf
User _www
and change the _www
to your username (whoami)DirectoryIndex
line and change it to DirectoryIndex index.php index.html index.htm
DocumentRoot
line to DocumentRoot "/Users/yourusername/Sites/"
<Directory
line to <Directory "/Users/yourusername/Sites/">
sudo apachectl restart
// Marionette.Gauntlet v0.0.0 | |
// -------------------------- | |
// | |
// Build wizard-style workflows with an event-emitting state machine | |
// Requires Backbone.Picky (http://github.com/derickbailey/backbone.picky) | |
// | |
// Copyright (C) 2012 Muted Solutions, LLC. | |
// Distributed under MIT license | |
Marionette.Gauntlet = (function(Backbone, Picky, Marionette, $, _){ |