Skip to content

Instantly share code, notes, and snippets.

View softwareengineer-imerjr's full-sized avatar
πŸ€“
Studying a lot!!!

Imer Jr softwareengineer-imerjr

πŸ€“
Studying a lot!!!
View GitHub Profile
@softwareengineer-imerjr
softwareengineer-imerjr / ContadorDePalavras.py
Last active May 12, 2024 07:15
🐍 My Python Gists
# ImplementaΓ§Γ£o de Algoritmos de Contagem Personalizados
# Neste exemplo, demonstro a criaΓ§Γ£o de um algoritmo personalizado para contar a ocorrΓͺncia de palavras
# em um texto, ignorando palavras comuns (stop words).
class ContadorDePalavras:
def __init__(self):
self.contagem = {}
self.stop_words = set(["Γ©", "uma", "de", "em", "a", "o", "e"])
def adicionar_texto(self, texto):
My Resources and Links over time to various Tools, Notes, Videos, Papers, Articles, Writeups, and more. Will be moving to my own private hosted Wikipedia soon. Ascii Art Font: Calvin S
╔╦╗╦ ╦ β•”β•— ┬ β”¬β”Œβ”€β” β•”β•— β”Œβ”€β”β”¬ β”¬β”Œβ”β”Œβ”¬β”β”¬ ┬ β•¦β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”¬ β”¬β”¬β”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”
β•‘β•‘β•‘β•šβ•¦β• β• β•©β•—β”‚ β”‚β”‚ ┬ β• β•©β•—β”‚ β”‚β”‚ β”‚β”‚β”‚β”‚β”‚ β””β”¬β”˜ β• β•¦β•β”œβ”€ └─┐│ β”‚β”‚ β”‚β”œβ”¬β”˜β”‚ β”œβ”€ └─┐
β•© β•© β•© β•šβ•β•β””β”€β”˜β””β”€β”˜ β•šβ•β•β””β”€β”˜β””β”€β”˜β”˜β””β”˜β”΄ β”΄ β•©β•šβ•β””β”€β”˜β””β”€β”˜β””β”€β”˜β””β”€β”˜β”΄β””β”€β””β”€β”˜β””β”€β”˜β””β”€β”˜
//
()==========>>======================================--
\\
@softwareengineer-imerjr
softwareengineer-imerjr / ca.md
Created March 1, 2023 04:22 — forked from soarez/ca.md
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.