Underscore example:
_.each([1, 2, 3], function(num) { alert(num); });
This is dummy copy. It is not meant to be read. It has been placed here solely to demonstrate the look and feel of finished, typeset text. Only for show. He who searches for meaning here will be sorely disappointed. These words are here to provide the reader with a basic impression of how actual text will appear in its final presentation. Think of them merely as actors on a paper stage, in a performance devoid of content yet rich in form. That being the case, there is really no point in your continuing to read them. After all, you have many other things you should be doing. Who's paying you to waste this time, anyway? | |
This is dummy copy. It's Greek to you. Unless, of course, you're Greek, in which case, it really makes no sense. Why, you can't even read it! It is strictly for mock-ups. You may mock it up as strictly as you wish. | |
Meaningless mock-up, mock turtle soup spilled on a mock turtle neck. Mach I Convertible copy. To kill a mockingbird, you need only force it to read this copy. This is Meaningless |
#!/bin/sh | |
# Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
# CREATE block and create them in separate commands _after_ all the INSERTs. | |
# Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
# The mysqldump file is traversed only once. | |
# Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
# Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
license: gpl-3.0 | |
redirect: https://observablehq.com/@d3/modifying-a-force-directed-graph |
/* demo.css */ | |
h1 { | |
font-family: "Helvetica Neue"; | |
font-size: extra-large; | |
} | |
body { | |
font-family: "Helvetica Neue"; | |
font-size: small; |
var p1 = { | |
x: 20, | |
y: 20 | |
}; | |
var p2 = { | |
x: 40, | |
y: 40 | |
}; |
license: gpl-3.0 | |
redirect: https://beta.observablehq.com/@mbostock/d3-sortable-bar-chart |
license: gpl-3.0 | |
redirect: https://beta.observablehq.com/@mbostock/d3-difference-chart |
license: gpl-3.0 |
license: gpl-3.0 |