Skip to content

Instantly share code, notes, and snippets.

View fabioafreitas's full-sized avatar
🎯
Focusing

Fábio Alves fabioafreitas

🎯
Focusing
View GitHub Profile
@onatcipli
onatcipli / go_router_example.dart
Last active June 30, 2025 18:01
go_router_example.dart
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
main() {
CustomNavigationHelper.instance;
runApp(const App());
}
class App extends StatelessWidget {
const App({Key? key}) : super(key: key);
@mattiasghodsian
mattiasghodsian / readme.md
Last active July 6, 2024 19:26
Valheim Dedicated Server Setup on Ubuntu 20.04.1 LTS

Port forwarding

Open ports (udp)

2456 2457 2458 27060

Uncomplicated Firewall

sudo ufw allow 2456/udp
@egermano
egermano / README.md
Last active May 21, 2025 16:30
Gerador de CPF para Postman

Gerador de CPF

Criei esse script para gerar CPF randômicos para test de API no Postman.

Adicione esse script na aba Pre-request Script e adicione a variável {{cpf}}na sua request.

Sempre que você chamar o Postman vai chamar o seu script antes de enviar a request gerando um novo CPF em toda request.

@henriquefps
henriquefps / KS_Graph_FY.c
Last active December 12, 2019 00:54
FY gc on KS reduction machine
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#define N 110000000
#define true 1
#define false 0
#define incomplete_arguments 1
#define unknown_argument 2
@gabcarvalhogama
gabcarvalhogama / index.php
Last active May 31, 2025 22:14
Como criar um sistema de Login em PHP(Sem MySQL)
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Sistema de Login :: Toolmmer</title>
<meta charset="UTF-8" />
<!-- Estilos da Index.php -->
<style type="text/css">
body{
background: linear-gradient(45deg, #f0f9ff 10%, #cbebff 47%, #a1dbff 100%);
}