Skip to content

Instantly share code, notes, and snippets.

View felansu's full-sized avatar
🎯
Focusing

Ferran Gonzalez Alonso felansu

🎯
Focusing
  • CloQ
  • Barcelona, Catalonia
View GitHub Profile
@MathiasSeguy-Android2EE
MathiasSeguy-Android2EE / androidx_migration.py
Last active July 1, 2020 08:57
This python script will migrate your package to the AndroidX new package. Dec2018. [https://medium.com/@android2ee/simple-androidx-migration-with-python-4e354ba6c945]
# -*- coding: utf-8 -*-
# python
# script for multiple find/replace old android package with the ones of AndroidX new packaging.
import os,sys
from os import walk
inputDir = "../app/src/"
fileExtension = [".xml",".java",".kt"]
@matthewmccullough
matthewmccullough / git-and-github-anti-patterns.md
Last active September 10, 2021 12:12
Git and GitHub Anti-patterns

Git and GitHub Anti-Patterns

An idea prompted by Jeremy Deane via a Tweet

Committing

  • Lack of precision
  • No care about atomicity
  • Poor commit messages

History

@zenorocha
zenorocha / README.md
Last active April 6, 2024 16:59
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage