I hereby claim:
- I am luisfarzati on github.
- I am luisfarzati (https://keybase.io/luisfarzati) on keybase.
- I have a public key whose fingerprint is D575 9FB5 776B 4D6F AA5F 246F 4DDA 7A50 B5CA 9A61
To claim this, I am signing this object:
# Filesystem | |
alias la='ls -lah' | |
alias w='cd ~/w' | |
# Git | |
alias gad='git add' | |
alias gap='git add --patch' | |
alias gau='git add --update' | |
alias gbr='git branch' | |
alias gbra='git branch --all' |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AdjustWindowForFontSizeChange</key> | |
<string>0</string> | |
<key>AppleAntiAliasingThreshold</key> | |
<string>1</string> | |
<key>AppleScrollAnimationEnabled</key> | |
<string>0</string> |
const express = require('express') | |
const app = express() | |
app.get('/', (req, res) => { | |
res.status(200) | |
.contentType('application/json') | |
.json({ hello: 'world' }) | |
}) |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
{ | |
"AF": "Afghanistan", | |
"AX": "Åland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", | |
"AQ": "Antarctica", |
I hereby claim:
To claim this, I am signing this object:
function BufferOverflowError(message) { | |
this.message = message; | |
} | |
BufferOverflowError.prototype = new Error(); | |
BufferOverflowError.prototype.constructor = BufferOverflowError; | |
function Buffer(size) { | |
this.__size = size || Infinity; | |
this.__buffer = []; | |
} |
✔ the cart needs to be implemented as an AngularJS service
✔ the cart should be retrieved from the localStorage, where it's stored under the key cart
✔ every time an action is performed on the cart, it should be persisted on the localStorage
✔ the cart should only know about item IDs and their quantity
angular.module('ngd3', []) | |
.controller('MyController', function ($scope) { | |
$scope.myData = [ | |
{ date:"1-May-12", close:"582.13" }, | |
{ date:"30-Apr-12", close:"583.98" }, | |
{ date:"27-Apr-12", close:"603.00" }, | |
{ date:"26-Apr-12", close:"607.70" }, | |
{ date:"25-Apr-12", close:"610.00" }, |