Skip to content

Instantly share code, notes, and snippets.

View alexcasalboni's full-sized avatar
✌️
Happy coding!

Alex Casalboni alexcasalboni

✌️
Happy coding!
View GitHub Profile
@alexcasalboni
alexcasalboni / README.md
Last active January 21, 2017 08:13
Google Vision API Examples - LABEL DETECTION
@alexcasalboni
alexcasalboni / README.md
Last active April 5, 2024 10:49
Google Vision API Examples - FACE DETECTION
@alexcasalboni
alexcasalboni / dyslexia.js
Created March 4, 2016 11:15
Disyxela JS
// original: http://geon.github.io/programming/2016/03/03/dsxyliea
"use strict";
$(function(){
var getTextNodesIn = function(el) {
return $(el).find(":not(iframe)").addBack().contents().filter(function() {
return this.nodeType == 3;
});
};
@alexcasalboni
alexcasalboni / index-google.js
Last active March 21, 2016 14:32
AWS Lambda & Google Functions load test
var md5 = require("md5");
exports.handler = function(context, data){
var n = Math.abs(data.n) || 1000,
output = {};
for (var i=0; i < n; i++) {
var s = "Number"+i;
output[s] = md5(s);
}
context.success(output);
@alexcasalboni
alexcasalboni / keybase.md
Created March 23, 2016 09:56
keybase.md

Keybase proof

I hereby claim:

  • I am alexcasalboni on github.
  • I am alexcasalboni (https://keybase.io/alexcasalboni) on keybase.
  • I have a public key whose fingerprint is 5BBD 1A97 1214 ACE1 A0D0 F81D 27AD 25AE E762 9960

To claim this, I am signing this object:

@alexcasalboni
alexcasalboni / requirements.txt
Last active June 29, 2017 09:46
Let's build a scikit-learn model
sklearn
numpy
scipy
matplotlib
pandas
@alexcasalboni
alexcasalboni / aws-lambda-demo1-restful-api.py
Last active March 6, 2021 13:23
AWS Lambda Coding Session - clda.co/webinar-lambda
def lambda_handler(event, context):
name = event.get('name') or 'World'
print("Name: %s" % name)
return "Hello %s!" % name
@alexcasalboni
alexcasalboni / README.md
Created August 2, 2016 08:16 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


Index:

@alexcasalboni
alexcasalboni / 0-README.md
Last active December 11, 2020 22:41
AWS Lambda: Advanced Coding Session - clda.co/aws-lambda-webinar

AWS Lambda: Advanced Coding Session (slides)

Live demos:

  1. Amazon API Gateway Access Control
  2. Amazon Kinesis Streams processing
  3. Amazon Cognito Sync trigger
  4. AWS CloudFormation Custom Resources