Skip to content

Instantly share code, notes, and snippets.

@rylev
rylev / rust-in-large-organizations-notes.md
Last active February 2, 2023 10:08
Rust in Large Organizations Notes

Rust in Large Organizations

Initially taken by Niko Matsakis and lightly edited by Ryan Levick

Agenda

  • Introductions
  • Cargo inside large build systems
  • FFI
  • Foundations and financial support
@UniIsland
UniIsland / simple-cors-http-server.py
Created February 10, 2018 14:30
Simple Python HTTP server with CORS (or other custom) header.
#!/usr/bin/env python
# Attribution: https://stackoverflow.com/questions/21956683/enable-access-control-on-simple-http-server
try:
# Python 3
from http.server import HTTPServer, SimpleHTTPRequestHandler, test as test_orig
import sys
def test (*args):
test_orig(*args, port=int(sys.argv[1]) if len(sys.argv) > 1 else 8000)
@paul-schwendenman
paul-schwendenman / gpg.rst
Last active July 30, 2018 14:09
GPG Cheatsheet

GPG Cheat sheet

A small guide to little things

Create a key