Skip to content

Instantly share code, notes, and snippets.

@scimad
scimad / age_not_okay.html
Last active July 23, 2024 17:12
Basic python HTTP server and manipulation of POST data
<!DOCTYPE html>
<html>
<head>
<title>Not eligible</title>
</head>
<body>
<h1>Oops, you are too young to have your own conscience. Try again next year.</h1>
</body>
</html>
@jslucassf
jslucassf / project-management-gitlab.md
Last active June 16, 2025 23:03
Resumo da playlist de gerenciamento de projetos de software com gitlab
@omariosouto
omariosouto / ButtonLink.js
Last active May 22, 2025 13:50
Aula 01 - Códigos Extras
@ledmaster
ledmaster / MultipleTimeSeriesForecasting.ipynb
Last active September 24, 2024 15:14
How To Predict Multiple Time Series With Scikit-Learn (With a Sales Forecasting Example)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mdonkers
mdonkers / server.py
Last active January 21, 2026 14:23
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
License: MIT License
Copyright (c) 2023 Miel Donkers
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
@berlotto
berlotto / megasena.py
Last active December 21, 2021 21:49
Numeros da MegaSena
# -*- encoding: utf-8 -*-
#
# Python Script - Numeros da Megasena
# Faz o download do arquivo da Caixa Economica Federal, com todos os resultados
# da Mega já obtidos. Faz uma contagem simples e mostras, em ordem decrescente,
# a quantidade de vezes que os nros já foram sorteados.
#
# Author: Sergio Berlotto <sergio.berlotto@gmail.com>
# Author website: http://berlotto.github.io
# Licence: GPLv3