We have the same code working using node, deno, and bun.
E.g.,
bun run index.js
| ### | |
| Gruntfile by geta6 | |
| usage: | |
| grunt only build | |
| grunt server + watch | |
| install: | |
| npm i --save-dev \ | |
| grunt \ |
| * go のコンパイル | |
| brew のインストールファイルにはファイルが欠けているものがあるので、ソースから go をビルドする必要がある | |
| ソースは以下のコマンドでとってこれる。 | |
| $ hg clone -u release https://code.google.com/p/go | |
| GOROOTの変更を忘れずに。 |
| <html> | |
| <body onload='init()'> | |
| <button id='b'>BEEEER</button> | |
| <button id='c'>CABBBB</button> | |
| <button id='e'>EGGGGG</button> | |
| <script> | |
| init = function () { | |
| var b = new Audio('./beer.mp3'); | |
| var c = new Audio('./cabbage.mp3'); | |
| var e = new Audio('./egg.mp3'); |
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON 'package.json' | |
| jade: | |
| compile: | |
| files: [{ | |
| expand: yes | |
| cwd: 'assets/' | |
| src: [ '*.jade' ] |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000#NoSQLデータモデリング技法
原文:NoSQL Data Modeling Techniques « Highly Scalable Blog
I translated this article for study. contact matope[dot]ono[gmail] if any problem.
NoSQLデータベースはスケーラビリティ、パフォーマンス、一貫性といった様々な非機能要件から比較される。NoSQLのこの側面は実践と理論の両面からよく研究されている。ある種の非機能特性はNoSQLを利用する主な動機であり、NoSQLシステムによく適用されるCAP定理がそうであるように分散システムの基本的原則だからだ。一方で、NoSQLデータモデリングはあまり研究されておらず、リレーショナルデータベースに見られるようなシステマティックな理論に欠けている。本稿で、私はデータモデリングの視点からのNoSQLシステムファミリーの短い比較といくつかの共通するモデリングテクニックの要約を解説したい。
本稿をレビューして文法を清書してくれたDaniel Kirkdorfferに感謝したいと思う
| for f in $(find $1 -iname "*.wsp"); do | |
| if [ -a $f ]; | |
| then /opt/graphite/bin/whisper-set-aggregation-method.py $f max; | |
| fi; | |
| done |
| --- | |
| :consumer_key: consumer_key | |
| :consumer_secret: consumer_secret | |
| :oauth_token: oauth_token | |
| :oauth_token_secret: oauth_token_secret |