A quick list of tools for building HTML/CSS/JS apps that work well offline. Ping me at @nolanlawson if I missed anything!
Tools for bundling your HTML/CSS/JS into a native app.
| import Component from '@glimmer/component'; | |
| export default class extends Component { | |
| } | 
| (function(){ | |
| const t = window.performance && performance.timing; | |
| if (!t) { | |
| return; | |
| } | |
| const loadTime = (t.loadEventEnd - t.navigationStart) / 1000; | |
| alert(`This page loaded in ${loadTime} seconds`); | |
| }()) | |
| src: http://www.phpied.com/this-page-loaded-in-x-seconds/ | 
| <pre lang="ko"> | |
| One - 一 | |
| Two - 二 | |
| Three - 三 | |
| Four - 四 | |
| Five - 五 | |
| Six - 六 | |
| Seven - 七 | |
| Eight - 八 | |
| Nine - 九 | 
| http://tutorials.jenkov.com/java-persistence/dao-manager.html | 
| function KnowledgeMapInitGlobals() { | |
| window.KnowledgeMapGlobals = { | |
| colors: { | |
| blue: "#0080C9", | |
| green: "#8EBE4F", | |
| red: "#E35D04", | |
| gray: "#FFFFFF" | |
| }, | 
A quick list of tools for building HTML/CSS/JS apps that work well offline. Ping me at @nolanlawson if I missed anything!
Tools for bundling your HTML/CSS/JS into a native app.
| RUN for config in amazon_s3 delayed_jobs domain file_store outgoing_mail security scribd external_migration; \ | |
| do cp -v config/$config.yml.example config/$config.yml; done | |
| RUN cp config/database.yml.example config/database.yml | |
| RUN createdb canvas_development | |
| RUN createdb canvas_queue_development | |
| RUN bundle exec rake db:initial_setup | 
| (ns async-tut1.core | |
| (:require-macros [cljs.core.async.macros :refer [go]]) | |
| (:require [goog.dom :as dom] | |
| [goog.events :as events] | |
| [cljs.core.async :refer [put! chan <!]]) | |
| (:import [goog.net Jsonp] | |
| [goog Uri])) | |
| (.log js/console (dom/getElement "query")) | 
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
| <title>DataTables example</title> | |
| <link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.1/css/jquery.dataTables.css"> | |
| <script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js"></script> | |
| <script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.1/jquery.dataTables.min.js"></script> | 
| if('querySelector' in document && 'localStorage' in window && 'addEventListener' in window) { | |
| } | |
| document.getElementById(''); | |
| document.getElementsByTagName(''); | |
| document.getElementsByClassName(''); | |
| document.querySelectorAll(''); | |
| document.querySelector(''); |