Skip to content

Instantly share code, notes, and snippets.

View robsoncartes's full-sized avatar
♟️
Distressed

Robson Sousa robsoncartes

♟️
Distressed
  • Sao Jose dos Campos - Brazil
View GitHub Profile
@sloria
sloria / bobp-python.md
Last active July 7, 2024 18:13
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@fmasanori
fmasanori / hfmix.pyw
Created November 28, 2013 21:27
Head First DJ Mix
from tkinter import *
from sound_panel import *
import pygame.mixer
import os
app=Tk()
app.title('Head First Mix')
mixer = pygame.mixer
mixer.pre_init(buffer = 300)
mixer.init()