I hereby claim:
- I am aabril on github.
- I am albertabril (https://keybase.io/albertabril) on keybase.
- I have a public key ASAqH_ivB-Ln2a_Trfu-Zj1usoiEn8-iCHRLqwm4-EOszQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| const fs = require('fs'); | |
| const path = require('path'); | |
| const baseDir = '/Users/albert/Desktop' | |
| const months = ["jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"] | |
| function getDatePath(ctime){ | |
| const d = ctime | |
| const day = String(d.getUTCDate()).padStart(2, "0") | |
| const monthStr = String(d.getMonth()).padStart(2, "0") |
| 23mar2020 | |
| morning | |
| 08:00 - 08:30 • | |
| 08:30 - 09:00 • | |
| 09:00 - 09:30 • | |
| 09:30 - 10:00 • | |
| 10:00 - 10:30 • | |
| 10:30 - 11:00 • |
| hs.hotkey.bind({"cmd", "alt", "ctrl"}, "Left", function() | |
| local win = hs.window.focusedWindow() | |
| local f = win:frame() | |
| local screen = win:screen() | |
| local max = screen:frame() | |
| f.x = max.x | |
| f.y = max.y | |
| f.w = max.w / 2 | |
| f.h = max.h |
We are looking for an Ethereum wizard to work with us on Aragon Core and the future Aragon Network.
| var flatten = function(data) { | |
| var result = {}; | |
| function recurse (cur, prop) { | |
| if (Object(cur) !== cur) { | |
| result[prop] = cur; | |
| } else if (Array.isArray(cur)) { | |
| for(var i=0, l=cur.length; i<l; i++) | |
| recurse(cur[i], prop ? prop+"."+i : ""+i); | |
| if (l == 0) | |
| result[prop] = []; |
| $.map([1, 2, [3, 4], [5, [6, [7, 8]]]], function recurs(n) { | |
| return ($.isArray(n) ? $.map(n, recurs): n); | |
| }); |
| #include <iostream.h> | |
| #include <stdlib.h> | |
| const int MAXi=8; | |
| const int MAXj=8; | |
| typedef int tablero[MAXi][MAXj]; | |
| void InicialitzaTablero(tablero & tab); | |
| void TirarFitxa( int col, int jug, tablero & tab ); | |
| void DibuixaTablero( tablero tab ); //Jugador A = 0; Jugador B = 1; |
| "use strict"; | |
| angular.module('MerchantApp').component('bookingPickup', { | |
| bindings: { | |
| booking: '=', | |
| display: '=', | |
| actions: '=' | |
| }, |