Skip to content

Instantly share code, notes, and snippets.

View biancarosa's full-sized avatar
💜

bianca rosa biancarosa

💜
View GitHub Profile
@andremacdowell
andremacdowell / important_books.md
Last active September 14, 2018 19:42
Books that I find important

Tech

  1. Domain Driven Design - Eric Evans
  2. Test Driven Development: By Example - Kent Beck
  3. Refactoring: Improving the Design of Existing Code - Martin Fowler e Kent Beck
  4. Extreme Programming Explained: Embrace Change - Kent Beck
  5. Implementation Patterns - Kent Beck
  6. Clean Code - Robert Martin
  7. The Pragmatic Programmer: From Journeyman to Master - Andrew Hunt e David Thomas

Management, Projects and Organizations

@chucknado
chucknado / make_backup.py
Last active December 9, 2019 11:32
A Python script for the REST API tutorial, "Backing up your knowledge base," at https://help.zendesk.com/hc/en-us/articles/229136947
import os
import datetime
import csv
import requests
credentials = 'your_zendesk_email', 'your_zendesk_password'
zendesk = 'https://your_subdomain.zendesk.com'
language = 'some_locale'
  • 🎨 when improving the format/structure of the code
  • 🚀 when improving performance
  • ✏️ when writing docs
  • 💡 new idea
  • 🚧 work in progress
  • ➕ when adding feature
  • ➖ when removing feature
  • 🔈 when adding logging
  • 🔇 when reducing logging
  • 🐛 when fixing a bug