Skip to content

Instantly share code, notes, and snippets.

View kassane's full-sized avatar
🏠
Working from home

Matheus C. França kassane

🏠
Working from home
View GitHub Profile
@lupyuen
lupyuen / nuttx-d.log
Last active June 7, 2024 09:43
Apache NuttX RTOS with D Apps. See https://github.com/apache/nuttx-apps/pull/2410
➜ neofetch
'c. luppy@5ce91ef07f94
,xNMM. ------------------
.OMMMMo OS: macOS 14.5 23F79 arm64
OMMM0, Host: Mac14,12
.;loddo:' loolloddol;. Kernel: 23.5.0
cKMMMMMMMMMMNWMMMMMMMMMM0: Uptime: 1 day, 1 hour, 52 mins
.KMMMMMMMMMMMMMMMMMMMMMMMWd. Packages: 77 (brew)
XMMMMMMMMMMMMMMMMMMMMMMMX. Shell: zsh 5.9
;MMMMMMMMMMMMMMMMMMMMMMMM: Resolution: 3840x2160
@batiati
batiati / sample.c
Created December 23, 2022 20:24
TigerBeetle C sample
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <pthread.h>
#include <sys/time.h>
#include "tb_client.h"
/////////////////////////////////////////////////////////////////////////////////////
// Place this file at the same folder tb_client.h //
// Shows the basic usage of the TigerBeetle C client. //
@AndersonTorres
AndersonTorres / zig-em-30-minutos.org
Last active July 10, 2024 04:28
Zig em 30 Minutos (Tradução)
@LewisGaul
LewisGaul / zig-blog-posts.md
Last active May 27, 2024 01:09
Collection of blog posts about the Zig programming language
@ityonemo
ityonemo / test.md
Last active July 19, 2024 06:53
Zig in 30 minutes

A half-hour to learn Zig

This is inspired by https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/

Basics

the command zig run my_code.zig will compile and immediately run your Zig program. Each of these cells contains a zig program that you can try to run (some of them contain compile-time errors that you can comment out to play with)

@alcroito
alcroito / build_with_qmake.cmake
Created October 3, 2020 17:05
Installing Qt via Online installer, building and deploying a qmake app project with Github Actions
set(CMAKE_EXECUTE_PROCESS_COMMAND_ECHO STDOUT)
if(CMAKE_HOST_WIN32)
set(qt_target_dir "msvc2019_64")
elseif(CMAKE_HOST_APPLE)
set(qt_target_dir "clang_64")
else()
set(qt_target_dir "gcc_64")
endif()
@akitaonrails
akitaonrails / links.md
Created November 6, 2019 01:28
Links de referência pro Episódio 66 do Canal Akitando

UPDATE:

These results are invalid. Some of the server implementations don't parse correctly and rust-tokio/ponylang-tcp don't seem to parse at all. See here for better benchmarks: https://gist.github.com/kprotty/5a41e9612657de00788478a7dde43d78

====

wrk -t4 -c128 -d10 --latency http://localhost:12345

  • Machine:
    • Intel Core i7-6700k (4 cores, 8 threads, 4.2ghz)
    • 16GB DDR4 2400mhz RAM
    • Arch Linux, Kernel 5.2.8
@MattPD
MattPD / analysis.draft.md
Last active July 18, 2024 21:09
Program Analysis Resources (WIP draft)
@MattPD
MattPD / cpp.std.coroutines.draft.md
Last active July 18, 2024 08:19
C++ links: Coroutines (WIP draft)