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 September 12, 2023 09:14
How to build and use mesa from source
View mesa-howto.md
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