I hereby claim:
- I am mgonto on github.
- I am mgonto (https://keybase.io/mgonto) on keybase.
- I have a public key whose fingerprint is 1316 6AE9 2A45 7160 296C DC12 7620 77C0 02B8 68CF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
node_modules/ |
return function(cb) { cb(null, {name: "Hello my dear friend"}); } |
var request = new Request(); | |
request.url = bla; | |
// Header sent automatically | |
request.make(); |
var request = new Request(); | |
request.url = bla | |
request.header = { | |
// If he used session | |
Authorization: 'Bearer ' + A0Session.store.idToken | |
} | |
request.make(); |
<div data-repat="app in AppTypes" data-class="app.name"> | |
<div data-class="{selected: app.selected}"></div> | |
<a on-click="apptypeselect(app)">{{app.name}}</a> | |
</div> |
I hereby claim:
To claim this, I am signing this object:
def max_contiguous_submatrix_n3(m) | |
rows = m.count | |
cols = rows ? m.first.count : 0 | |
vps = Array.new(rows) | |
for i in 0..rows | |
vps[i] = Array.new(cols, 0) | |
end | |
for j in 0...cols |
def heapList(heap: H): List[A] = { | |
if (isEmpty(heap)) { | |
Nil | |
} else { | |
findMin(heap) :: heapList(deleteMin(heap)) | |
} | |
} | |
property("Added and removed elements") = forAll { (h: H, values: List[A]) => | |
val listOfElemsBefore = heapList(h) |
angular.controller('MainCtrl', function(Angularytics, $scope) { | |
$scope.click = function() { | |
Angularytics.trackEvent("Home Category", "Button clicked"); | |
} | |
}); |