Skip to content

Instantly share code, notes, and snippets.

@tonycwliu
tonycwliu / Meta_GPU_Techniques_Team.md
Last active October 9, 2025 13:29
Meta GPU Techniques Team

Meta GPU Techniques Team

                     Next Generation GPU Enablement (Blackwell, MI350)
                     High-performance Custom GPU Kernels
                     Advanced Algortihms for Large Language Models
                     Compiler & Ecosystem Advancements (Triton, GEMM Tuning)

Our work was recognized over $100 million infra annual saving, top-tier publications, & open-source contributions.

@acolyer
acolyer / service-checklist.md
Last active September 24, 2025 07:57
Internet Scale Services Checklist

Internet Scale Services Checklist

A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."

Basic tenets

  • Does the design expect failures to happen regularly and handle them gracefully?
  • Have we kept things as simple as possible?
@codysoyland
codysoyland / riak_zmq.erl
Created August 23, 2011 16:23
Riak postcommit ZeroMQ publisher
-module(riak_zmq).
-export([postcommit_publish/1, get_zmq_publisher/0, zmq_publisher/0, zmq_publisher/1]).
postcommit_publish(RObj) ->
Body = riak_object:get_value(RObj),
{ok, Pid} = get_zmq_publisher(),
Pid ! {send, Body}.
get_zmq_publisher() ->