Skip to content

Instantly share code, notes, and snippets.

View luiscosio's full-sized avatar

Luis Cosio luiscosio

View GitHub Profile
@leonardofed
leonardofed / README.md
Last active July 19, 2024 17:51
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.


@luiscosio
luiscosio / CreateCryptocurrency101.md
Last active November 27, 2022 18:32
Create a cryptocurrency 101

Create a cryptocurrency 101

Notes

  • This is a work in progress
  • The goal of this guide is to create:
    • A premined cryptocurrency
    • node
    • simplewallet
  • walletd
@softwarechido
softwarechido / Guia Universitaria
Last active May 14, 2020 16:23
Alexa, abre guía universitaria y dame un datos curioso
//Lambda
const Alexa = require('ask-sdk-core');
const LaunchRequestHandler = {
canHandle(handlerInput) {
const request = handlerInput.requestEnvelope.request;
return request.type === 'LaunchRequest'
},
handle(handlerInput) {