Skip to content

Instantly share code, notes, and snippets.

View frednora's full-sized avatar
💧
Glitch and Leak

Fred Nora frednora

💧
Glitch and Leak
View GitHub Profile
@frednora
frednora / ANSI.md
Created August 18, 2023 00:12 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@frednora
frednora / ABOUT.md
Created September 10, 2020 20:49 — forked from laobubu/ABOUT.md
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913
@frednora
frednora / lsniffer.c
Created July 19, 2020 01:18 — forked from fffaraz/lsniffer.c
Packet Sniffer Code in C using Linux Sockets | http://www.binarytides.com/packet-sniffer-code-c-linux/
/*
Packet sniffer using libpcap library
*/
#include<pcap.h>
#include<stdio.h>
#include<stdlib.h> // for exit()
#include<string.h> //for memset
#include<sys/socket.h>
#include<arpa/inet.h> // for inet_ntoa()
@frednora
frednora / rand.c
Created March 17, 2020 20:55 — forked from marcoscastro/rand.c
Exemplo que gera números aleatórios dados os limites superior e inferior.
// Exemplo de geração de números aleatórios
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
/*
A função gerar_numero() retorna um número aleatório
que pertence ao intervalo [lim_inf, lim_sup]