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:
| { | |
| "public_identifier": "dariofarzati", | |
| "profile_pic_url": "https://media.licdn.com/dms/image/v2/D4D03AQGhL1ePJuvF0Q/profile-displayphoto-shrink_800_800/B4DZSsWdHjG4As-/0/1738058355643?e=1743638400&v=beta&t=5o5XBAKxLrkggaaMerX8YeY9PUWGuVh_YRqaW6G8r4U", | |
| "background_cover_image_url": "https://media.licdn.com/dms/image/v2/D4D16AQG9IuG_RmT4kQ/profile-displaybackgroundimage-shrink_350_1400/profile-displaybackgroundimage-shrink_350_1400/0/1738064836237?e=1743638400&v=beta&t=I3osw1pr1wpDI9cOATYSpJra3dJkURussOXO0HP2a3Q", | |
| "first_name": "Dario", | |
| "last_name": "Farzati", | |
| "full_name": "Dario Farzati", | |
| "follower_count": 2685, | |
| "occupation": "Engineering Consulting and Tech Advisory at Sinumo", | |
| "headline": "Diving into Human-AI Hybrid Teams @ Sinumo", |
| # 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" }, |