Skip to content

Instantly share code, notes, and snippets.

View ffranr's full-sized avatar
💭
nostr: npub10v58y2tvnfn64wxewukmwswjaskpdudqkz6udukxederhdkrt5qs2dkn45

ffranr

💭
nostr: npub10v58y2tvnfn64wxewukmwswjaskpdudqkz6udukxederhdkrt5qs2dkn45
View GitHub Profile
@ffranr
ffranr / resources_for_learning_python.md
Created October 29, 2017 14:56
Resources For Learning Python

Resources For Learning Python

Links to free resources for learning Python. Please report (via comments) broken links or if a resource is no longer free.

Inspiration

Title Link Comments
Official Python Brochure Official Python Brochure - PDF
- Used by Google, Mozilla, NASA,
Finance (Two Sigma, JPM, BAML),
Animation (Blender)
Official Python Jobs Board - Jobs specifically targetted at Python developers
@randomphrase
randomphrase / cmdoptions.cpp
Last active June 30, 2025 16:46
Demonstration of how to do subcommand option processing with boost program_options
#define BOOST_TEST_MODULE subcommand options
#include <boost/test/unit_test.hpp>
#include <boost/program_options.hpp>
#include <boost/variant/variant.hpp>
#include <boost/variant/get.hpp>
struct GenericOptions {
bool debug_;
};
@mikeando
mikeando / Demo.c
Last active September 14, 2025 17:32
Example of using C++ from C.
#include "HMyClass.h"
#include <stdio.h>
void my_eh( const char * error_message, void * unused)
{
printf("my_eh: %s\n", error_message);
}
int main()
{