Skip to content

Instantly share code, notes, and snippets.

View jjeanjacques10's full-sized avatar
🚀
Learning

Jean Jacques Nascimento Barros jjeanjacques10

🚀
Learning
View GitHub Profile
@leocomelli
leocomelli / git.md
Last active June 16, 2024 22:06
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@aparrish
aparrish / facebook_app_token.py
Last active February 6, 2021 22:23
simple python script to fetch an access token for a Facebook application (not a user token)
# fetch an access token for a Facebook application
#
# run like so:
#
# $ python facebook_app_token.py --app_id=<your app id> --secret=<your secret>
#
# ... where <your app id> is your Facebook application ID, and <your secret>
# is the application secret for that application (both can be retrieved from
# the Facebook developer app)