Skip to content

Instantly share code, notes, and snippets.

View frednora's full-sized avatar
💎

Fred Nora frednora

💎
View GitHub Profile
@apfohl
apfohl / msg.c
Last active April 24, 2020 19:35
C message queue example
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/msg.h>
#include <sys/wait.h>
#include <string.h>
/* message structure */
struct message {
long mtype;
@fffaraz
fffaraz / lsniffer.c
Last active February 12, 2023 11:42
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()
@marcoscastro
marcoscastro / binary_tree.c
Last active August 4, 2024 23:43
Programação em C - Árvore Binária
/* www.GeeksBR.com */
/* Implementação de árvore binária */
#include <stdio.h>
#include <stdlib.h>
/* Cada nó armazena três informações:
nesse caso um número (num),
ponteiro para subárvore à direita (sad)
@marcoscastro
marcoscastro / fila_circular_arranjo.c
Created April 21, 2015 22:00
Programação em C - Fila circular com arranjo
/*
Implementação de uma fila com arranjo circular
Autor: Marcos Castro - www.GeeksBR.com
*/
#include <stdio.h>
#define MAX 5 // máximo de elementos
// dois índices apontando para início e fim da fila
// inicialmente esses índices são iguais a 1
@elevendroids
elevendroids / printf.c
Created February 2, 2015 15:09
Lightweight printf implementation
/*
Copyright 2001, 2002 Georges Menie (www.menie.org)
stdarg version contributed by Christian Ettinger
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@roachhd
roachhd / README.md
Last active April 2, 2025 10:48
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

INTRODUCTION

int apply(int (*func)(int), int x) {
return func(x);
}
@DanBradbury
DanBradbury / ep5.md
Last active October 20, 2020 23:53
Episode 5 Full

Side scrolling in GameMaker can be implemented with little effort. In this episode we take a step back from 2014 and take a look at how a 2d side scrolling games were implemented 20 years ago. Due to limited hardware, developers had to use smart memory management techniques to create the games that they wanted. In the 80s the best games were being made for consoles like the NES since they could support memory on the game card. In the early 1980s the standard graphics card for PCs; the CGA was not capable of even creating a satisfying 2d side scrolling effect. The Color/Graphics Adapter was IBM's first graphics card with a max resolution of 640×200, and support for 16 colors, and 16 kilobytes of video memory.

For a more more details on the CGA read on here.

This card did not have the capabilities to create the smooth side scrolling effect that NES and

@staltz
staltz / introrx.md
Last active April 3, 2025 04:45
The introduction to Reactive Programming you've been missing