Skip to content

Instantly share code, notes, and snippets.

View asierra's full-sized avatar

Alejandro Sierra asierra

  • UNAM
  • Ciudad Universitaria, Mexico City
View GitHub Profile
@kanhua
kanhua / README.md
Last active December 4, 2024 08:04
A template of writing C or C++ extension for python and numpy

This gist demonstrates how to setup a python project that process a numpy array from C language.

To compile the project, run

make all

To test it, run

make test
@bkaradzic
bkaradzic / orthodoxc++.md
Last active April 27, 2026 06:43
Orthodox C++

Orthodox C++

This article has been updated and is available here.

@ferstar
ferstar / client.py
Created May 14, 2015 08:46
simple JSON TCP server and client
#!/usr/bin/env python3
import socket
import json
HOST, PORT = "localhost", 9527
data = {
"name": "hello, I am Tom.",
"age": 10,
"info": "sample is simple."
}