Skip to content

Instantly share code, notes, and snippets.

View EstebanGerardo's full-sized avatar

Esteban Cortés EstebanGerardo

View GitHub Profile
@EstebanGerardo
EstebanGerardo / code-editor-rules.md
Created June 22, 2025 21:59 — forked from yifanzz/code-editor-rules.md
EP12 - The One File to Rule Them All

[Project Name]

Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.

Project Context

[Brief description ]

  • [more description]
  • [more description]
  • [more description]
@EstebanGerardo
EstebanGerardo / AppReviews
Created May 22, 2020 13:52 — forked from kgn/AppReviews
App Reviews - Python script to retrieve App Store reviews and save them to a CSV file
#!/usr/bin/env python
try:
# For Python 3.0 and later
from urllib.request import urlopen
except ImportError:
# Fall back to Python 2's urllib2
from urllib2 import urlopen
import json
@EstebanGerardo
EstebanGerardo / ngrams.py
Created May 20, 2020 23:10 — forked from benhoyt/ngrams.py
Print most frequent N-grams in given file
"""Print most frequent N-grams in given file.
Usage: python ngrams.py filename
Problem description: Build a tool which receives a corpus of text,
analyses it and reports the top 10 most frequent bigrams, trigrams,
four-grams (i.e. most frequently occurring two, three and four word
consecutive combinations).
NOTES