Skip to content

Instantly share code, notes, and snippets.

View Venemo's full-sized avatar

Timur Kristóf Venemo

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

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

/**
* 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
//
// 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