Skip to content

Instantly share code, notes, and snippets.

View iautom8things's full-sized avatar
🚀
🌔

Manuel Zubieta iautom8things

🚀
🌔
  • ChapterSpot
  • New Orleans
View GitHub Profile
@iautom8things
iautom8things / parsley_examples.py
Created July 13, 2017 16:37 — forked from kurtbrose/parsley_examples.py
little parsley examples
# how to separate items in a list from separators
parsley.makeGrammar('''
a_list = ('a':it ','? -> it)*
''', {})('a,a,a').a_list()
# result is ['a', 'a', 'a']
# parsing a list of 'a's
parsley.makeGrammar('''
a_list = '[' ('a':it ','? -> it)*:li ']' -> li
@iautom8things
iautom8things / README.md
Created September 20, 2016 02: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:

# Makefile for a go project
#
# Author: Jon Eisen
# site: joneisen.me
#
# Targets:
# all: Builds the code
# build: Builds the code
# fmt: Formats the source files
# clean: cleans the code