Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
| -- Usage: _="install Draggable(dragHandle: .titlebar in me)" | |
| behavior Draggable(dragHandle) | |
| init | |
| if no dragHandle set the dragHandle to me | |
| end | |
| on pointerdown(clientX, clientY) from dragHandle | |
| halt the event | |
| trigger draggable:start -- hooks, e.g. for adding a drop shadow while dragging | |
| measure my x, y |
| { | |
| "env": { | |
| "browser": true, | |
| "commonjs": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "jsx": true |
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
| -- Author: Michael-Keith Bernard | |
| -- Date: May 22, 2012 | |
| -- Description: Various implementations of the Fibonacci sequence in Lua. Lua | |
| -- has native support for tail-call elimination which is why `tail_call` and | |
| -- `continuation` run in near constant time. For sufficiently large numbers of n | |
| -- you can start to see linear performace characteristics (particularly for the | |
| -- `continuation` implementation), but ultimately the `tail_call` implementation | |
| -- is an order of magnitude faster than iteration even for values of n as small | |
| -- as 500k. |