Skip to content

Instantly share code, notes, and snippets.

Avatar

Timur Kristóf Venemo

View GitHub Profile
@Venemo
Venemo / mesa-howto.md
Last active April 5, 2023 17:43
How to build and use mesa from source
View mesa-howto.md

Building and using mesa for development and testing

This explains how to build mesa from source, and how to use the custom built mesa to run some apps and games, without needing to replace the mesa libraries that your operating system runs on.

Let's assume that you are using an x86_64 system.

Building mesa

Overview

View contiguous array
/**
* Collection that stores the number of elements and the actual elements
* in a contiguous chunk of memory, making it ideal for a number of use cases.
*/
template<typename T>
class Array final {
private:
bool ownsData;
void *data;
@Venemo
Venemo / fileserver.js
Created August 1, 2014 05:44
Simple Node.js file server
View fileserver.js
//
// Very simple Node.js file server by Timur Kristóf
//
var http = require('http');
var url = require('url');
var fs = require('fs');
var mime = require('mime');
// Figure out port number