Skip to content

Instantly share code, notes, and snippets.

View jgskin's full-sized avatar

Jessé Alves Galdino jgskin

  • Rio de Janeiro, Brasil
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 30, 2025 10:35
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@slok
slok / docker_tips.md
Last active June 18, 2017 17:16
Docker shortcuts

Stop all the containers:

docker stop `docker ps -q`

Remove all the containers:

docker rm `docker ps -aq`

Delete all unnamed/untagged images:

@luads
luads / playlist-gmusic.py
Last active November 28, 2016 02:30 — forked from Timmmm/lastfm_to_gmusic.py
Imports any playlist into gmusic
#!/usr/bin/env python
# Import any playlist (within the script) to Google Music All Access playlist.
#
# Based on Tim Hutt's script:
# https://gist.github.com/Timmmm/6572592
#
# Instructions:
# 1. Write the playlist down to the file
# 2. Install `gmusicapi` using `pip`: `pip install gmusicapi`
@jgskin
jgskin / php_install_ubuntu1210.py
Last active October 10, 2015 18:07
php install ubuntu 12.10
#! /usr/bin/python
""" PHP install script. Tested with ubuntu 12.10/14.04"""
import os
import argparse
parser = argparse.ArgumentParser(description='...')
parser.add_argument('prefix', nargs='?', default=False)
args = parser.parse_args()