Skip to content

Instantly share code, notes, and snippets.

View ldipotetjob's full-sized avatar

Luis Dipotet ldipotetjob

View GitHub Profile
@ldipotetjob
ldipotetjob / web-servers.md
Created January 26, 2017 20:26 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@ldipotetjob
ldipotetjob / README.md
Created February 7, 2020 12:41 — 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.


@ldipotetjob
ldipotetjob / closures-in-ruby.rb
Created November 27, 2022 12:25 — forked from bowsersenior/closures-in-ruby.rb
A copy of Paul Cantrell's excellent info on ruby closures : http://innig.net/software/ruby/closures-in-ruby.rb
# CLOSURES IN RUBY Paul Cantrell http://innig.net
# Email: username "cantrell", domain name "pobox.com"
# I recommend executing this file, then reading it alongside its output.
#
# Alteratively, you can give yourself a sort of Ruby test by deleting all the comments,
# then trying to guess the output of the code!
# A closure is a block of code which meets three criteria: