Skip to content

Instantly share code, notes, and snippets.

View GuilhermeRossato's full-sized avatar
💼
“What I cannot build, I do not understand” - Richard Feynman

Guilherme Rossato GuilhermeRossato

💼
“What I cannot build, I do not understand” - Richard Feynman
View GitHub Profile
@GuilhermeRossato
GuilhermeRossato / main.c
Created April 23, 2019 22:39
A script to run other programs defined in a configuration file
//
//
// Works both on windows and linux
//
//
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
@GuilhermeRossato
GuilhermeRossato / approximate-root.c
Created May 7, 2019 23:10
Incomplete source for a program that computes a root of a polynomial of any size with a guessing-based approach
// Incomplete source for a program that computes a root of a polynomial of any size with a guessing-based approach
//
// File: approximate-root
// Compilation: gcc -o main approximate-root.c
// Run: ./main
#include <stdio.h>
#include <stdlib.h>
double get_value_of_n_degree_polynomial(double x, double *coeficients, int coeficients_length) {
@GuilhermeRossato
GuilhermeRossato / http_multiclient_server.c
Created August 2, 2019 19:53
Simple, high-performant, raw multi-client HTTP Server written in C with fork and sockets for Unix.
/*
Simple http server (with multiple connections)
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/wait.h>
@GuilhermeRossato
GuilhermeRossato / Memcache.php
Created August 2, 2019 20:13
Pure dependency-less memcache class implementation for development purposes that saves data to local storage.
<?php
// Ever needed to test an application that uses Memcache but didn't have it installed locally?
// This class saves its information to a local folder named "data" with the raw data passed to it.
// Each different key saved creates a new file on your system.
// Currently the only methods supported are Memcache::get and Memcache::set.
/**
* A class that mimicks the Memcache php dependency minimalistically by saving data to local storage.
@GuilhermeRossato
GuilhermeRossato / ann.js
Created February 29, 2020 21:34
Simple Artificial Network with Javascript
var sigmoid_lookup_size = 128;
var sigmoid_lookup = (new Float32Array(sigmoid_lookup_size+1)).map((a,i) => 1/(1+Math.exp(-(i-(sigmoid_lookup_size/2))/(sigmoid_lookup_size/32))));
function real_sigmoid(x) {
return 1 / (1 + Math.exp(-x));
}
function cached_sigmoid(x) {
if (x < -16) {
@GuilhermeRossato
GuilhermeRossato / README.md
Created April 17, 2020 05:31
2d uint8 tensor implementation in C

2D Uint8 Tensor in C

A simple structure to hold 2d uint8 arrays in C that can be easily adjusted to hold other things in other dimensions.

Usage is as follows:

struct uint8_tensor * t = create_tensor(2, 2);
t->set(t, 0, 0, 0);
t-&gt;set(t, 0, 1, 1);
@GuilhermeRossato
GuilhermeRossato / convert_wchar_array_to_char_array.c
Last active February 16, 2021 00:29
Pure C way to convert wchar array to char array (C99)
#include <stdio.h> // snprintf
#include <windows.h> // wchar
// Convert a WIDE CHAR ARRAY (wchar *) into a CHAR ARRAY (char *) in a memory safe way.
// Handles unicode characters by writing \uXXXX exactly like C compilers and JSON parsers.
int convert_wchar_array_to_char_array(const WCHAR * input, char * output, size_t output_buffer_size) {
if (input == NULL || output == NULL || sizeof(WCHAR) != 2) {
return 0;
}
if (output_buffer_size <= 0) {
@GuilhermeRossato
GuilhermeRossato / bezier-interpolation-functions.js
Last active February 24, 2021 08:14
linear interpolation javascript bezier functions
const b = (i, j, k) => i + (j - i) * k;
const ib = (i, j, k) => (k - i) / (j - i);
// clamped (limit return to be between i and j parameters)
const _b = (i, j, k) => k < 0 ? i : (k > 1 ? j : i + (j - i) * k);
const _ib = (i, j, k) => k < i ? 0 : (k > 1 ? j : (k - i) / (j - i));
/*
b(0, 1, 0) === 0
b(0, 1, 1) === 1
b(5, 10, 0.5) === 7.5
@GuilhermeRossato
GuilhermeRossato / getNetworkAdapterIp.js
Created March 28, 2021 23:37
Javascript (NodeJS) function to get the local IP from a network interface. (Uses windows default command line tool "ipconfig.exe" to get the local ip)
// Warning: undefined behaviour if the network interface does not have an IP (might fail or might return the next interface ip)
function getNetworkAdapterIp(adapter_name = "Adaptador de Rede sem Fio Wi-Fi", ip_version = 4, cp = require("child_process")) {
process.stdout.setEncoding('utf-8');
/** @type {Buffer} */
const ipconfig_output = cp.spawnSync("C:\\Windows\\System32\\ipconfig.exe", ["/all"]).output[1];
const adapter_config = ipconfig_output.toString("utf-8").split(adapter_name + ":")[1];
if (!adapter_config) {
return "ERROR - could not find adapter on output:\n" + (JSON.stringify(ipconfig_output.toString("utf-8")));
} else {
@GuilhermeRossato
GuilhermeRossato / create-console.c
Created July 13, 2021 18:48
Creating a Console Windows for a Win32 program in windows subsystem so that you can printf again
// adapted from c++ on stackoverflow: https://stackoverflow.com/a/57210516/5974331
// opens a new console windows for the current process
// returns 1 on success
int CreateConsole() {
if (!AllocConsole()) {
return 0;
}
FILE *fDummy;
freopen_s(&fDummy, "CONIN$", "r", stdin);