---------- Forwarded message ----------
From: Mark S. Miller <[email protected]>
Date: Tue, Nov 16, 2010 at 3:44 PM
Subject: "Future of Javascript" doc from our internal "JavaScript Summit"
last week
To: [email protected]
---------- Forwarded message ----------
From: Mark S. Miller <[email protected]>
Date: Tue, Nov 16, 2010 at 3:44 PM
Subject: "Future of Javascript" doc from our internal "JavaScript Summit"
last week
To: [email protected]
dartium_path: /usr/local/Cellar/dartium/1.7.2/Chromium.app | |
dart_sdk_path: /usr/local/opt/dart/libexec |
https://www.glgoo.com/ | |
https://wen.lu | |
https://xie.lu | |
https://gg.jude.me/ | |
https://google.chn.im/ | |
https://github.com/greatfire/wiki | |
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.14.0/install.sh | bash | |
nvm ls-remote | |
nvm install 0.10 | |
nvm use 0.10 | |
nvm alias default 0.10 |
var len = content.match(/[^ -~]/g) == null ? content.length : content.length + content.match(/[^ -~]/g).length; |
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
[ | |
{ "keys": ["j", "j"], | |
"command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, |
mysql -u username -p database_name < file.sql |
//check login | |
Mage::getSingleton('core/session', array('name'=>'frontend')); | |
$session = Mage::getSingleton('customer/session', array('name'=>'frontend')); | |
$loggedIn = $session->isLoggedIn(); |