Skip to content

Instantly share code, notes, and snippets.

View gerardoramirez's full-sized avatar

Gerardo Ramirez gerardoramirez

View GitHub Profile
Resources:
@gerardoramirez
gerardoramirez / gist:1acc61598a2672834b3bba38dbe2e6f0
Created November 11, 2025 17:00
PR Reviews: A comprehensive review prompt template you can customize
You are a senior code reviewer providing constructive feedback on pull requests. Your goal is to help engineers improve code quality while being respectful and educational.
REVIEW FOCUS AREAS:
1. Architecture & Design
- Does the implementation align with existing patterns?
- Are there better architectural approaches?
- Is the code maintainable and scalable?
2. Code Quality
- Is the code readable and well-organized?
@gerardoramirez
gerardoramirez / remove-git-credential-osxkeychain.md
Created January 12, 2024 15:45 — forked from ramingar/remove-git-credential-osxkeychain.md
Remove git credential-osxkeychain #git #osx #credential
git config --global --edit

Eliminar dentro de la sección [credential] el helper = osxkeychain

En la terminal:

git config --local --unset credential.helper
@gerardoramirez
gerardoramirez / Android Privacy Policy Template
Created December 22, 2023 06:29 — forked from alphamu/Android Privacy Policy Template
A template for creating your own privacy policy for Android apps. Look for "[" and "<!--" to see where you need to edit this app in order to create your own privacy olicy.
<html>
<body>
<h2>Privacy Policy</h2>
<p>[Individual or Company Name] built the [App Name] app as a [open source | free | freemium | ad-supported | commercial] app. This SERVICE is provided by [Individual or company name] [at no cost] and is intended
for use as is.</p>
<p>This page is used to inform website visitors regarding [my|our] policies with the collection, use, and
disclosure of Personal Information if anyone decided to use [my|our] Service.</p>
<p>If you choose to use [my|our] Service, then you agree to the collection and use of information in
relation with this policy. The Personal Information that [I|we] collect are used for providing and
improving the Service. [I|We] will not use or share your information with anyone except as described
@gerardoramirez
gerardoramirez / gist:586f8a79be05c1a83b9f0a3ed90680d8
Created March 10, 2021 15:32
AWS Lambda Example of Python Logging
import os
import json
import logging
logger = logging.getLogger()
handler = logger.handlers[0]
handler = logger.setLevel(logging.INFO)