Skip to content

Instantly share code, notes, and snippets.

View CorentinDy's full-sized avatar
😶‍🌫️
Working from home

CorentinDy

😶‍🌫️
Working from home
View GitHub Profile
@CorentinDy
CorentinDy / meltdownFeed.js
Created May 30, 2017 07:02
Js to grab last update from meltdown's planning
const scrapeIt = require("scrape-it");
// use it with a city argument like "Toulouse" -> $ node rss.js Toulouse
var city = process.argv[2];
if(city){
scrapeIt("https://www.meltdown.bar/"+city+"/planning", {
// Fetch the planning content
items: {
listItem : ".left-row"
,data : {
@CorentinDy
CorentinDy / README.md
Created January 22, 2019 14:59 — 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.


@CorentinDy
CorentinDy / local-exec.tf
Last active March 17, 2021 09:46
local-exec #terraform
resource "null_resource" "init_aws" {
triggers = {
always_run = timestamp()
}
provisioner "local-exec" {
command = "apk add build-base python3-dev python3 libffi-dev libressl-dev groff bash git gettext curl && curl -O \"https://bootstrap.pypa.io/get-pip.py\" && python3 get-pip.py && pip install --user --upgrade awscli"
}
depends_on = [aws_elasticache_replication_group.main]
}