Skip to content

Instantly share code, notes, and snippets.

View wprotheus's full-sized avatar

wellington batista parreira neto wprotheus

View GitHub Profile
@wprotheus
wprotheus / Regex for SMS URI (RFC-5724)
Created July 30, 2024 18:31 — forked from trentrand/Regex for SMS URI (RFC-5724)
Regular expression for validating 'sms' uri scheme. (RFC 5724)[https://tools.ietf.org/html/rfc5724]
This protocol is well-defined by [RFC 5724][1] with the formal definition:
sms-uri = scheme ":" sms-hier-part [ "?" sms-fields ]
scheme = "sms"
sms-hier-part = sms-recipient *( "," sms-recipient )
sms-recipient = telephone-subscriber ; defined in RFC 3966
sms-fields = sms-field *( "&" sms-field )
sms-field = sms-field-name "=" escaped-value
sms-field-name = "body" / sms-field-ext ; "body" MUST only appear once
sms-field-ext = 1*( unreserved )
@wprotheus
wprotheus / ExampleMap.java
Created July 6, 2024 23:00 — forked from thiagolenz/ExampleMap.java
Api Java Collections
package masterdev;
import java.util.HashMap;
import java.util.Map;
public class ExemplosMap {
public static void main(String[] args) {
Map<Long, Pessoa> mapa = new HashMap<>();
Pessoa joao = new Pessoa(1L, "Joao");
@wprotheus
wprotheus / README-PTBR.md
Created June 5, 2024 11:23 — forked from lohhans/README-PTBR.md
Um modelo para fazer um bom README.md

Título do projeto

Um parágrafo da descrição do projeto vai aqui

🚀 Começando

Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste.

Consulte Implantação para saber como implantar o projeto.