Skip to content

Instantly share code, notes, and snippets.

View ymjing's full-sized avatar

Yiming Jing ymjing

  • Google
  • Mountain View, CA
View GitHub Profile
@ymjing
ymjing / provable-privacy-doc.md
Created August 11, 2025 23:08
Provable Privacy Pitch

The Rising Tide of Enterprise AI and the Imperative for Provable Privacy in LLM Inference Systems

Executive Summary

As enterprises rapidly adopt Large Language Models (LLMs) to transform their operations, they face a critical dilemma: unleashing AI's full potential requires processing sensitive data, yet current cloud-based solutions lack verifiable privacy guarantees. This document presents the case for provable privacy—a paradigm shift from trust-based to technically demonstrable data protection—as the essential bridge between AI innovation and enterprise security requirements.

1. The Enterprise AI Revolution

Artificial Intelligence, particularly Large Language Models, has evolved from experimental technology to strategic imperative. Organizations across sectors are embedding LLMs into their core operations—from code generation and data analysis to customer service and decision support. This transformation is backed by substantial investment, with most enterprises planning significant increases

@ymjing
ymjing / readme.md
Last active February 24, 2025 18:06
Kubevirt SEV-SNP Code Lab
@ymjing
ymjing / kubevirt-cr.yaml
Last active February 20, 2025 18:19
kubevirt-snp
---
apiVersion: kubevirt.io/v1
kind: KubeVirt
metadata:
name: kubevirt
namespace: kubevirt
spec:
certificateRotateStrategy: {}
configuration:
developerConfiguration:
@ymjing
ymjing / Dockerfile
Created May 7, 2022 02:08
A minimal docker file for running Grasscutter
FROM azul/zulu-openjdk:17 AS builder
RUN apt-get update \
&& apt-get install -y --no-install-recommends git libprotobuf-dev \
&& git clone -b development --depth 1 https://github.com/Grasscutters/Grasscutter /work
WORKDIR /work
RUN export GRADLE_OPTS="-Dfile.encoding=utf-8" \
&& git submodule update --init \
pragma solidity 0.6.0;
contract time_capsule {
string public letter =
"Dear Riley, "
" "
"As you may or may not remember, we're writing this to you from the past. As of "
"today, you are just one month old and your whole bright future is ahead of you. "
"We're building this time capsule as a way to remind you of who you were when you "
"turned 18 and to give you a smile in 2038 on your birthday. "
" "
@ymjing
ymjing / Cargo.toml
Created June 14, 2019 23:25
A simple brpc-rs service
[package]
name = "brpc_server_demo"
version = "0.1.0"
edition = "2018"
build = "build.rs"
[dependencies]
brpc-sys = { path = "../brpc-sys" }
cc = "1.0.37"
@ymjing
ymjing / baidu_xlab.md
Last active June 4, 2019 18:20
Baidu X-Lab description

Baidu X-Lab is the research lab developing the core security capabilities across Baidu’s products and services. The team focuses on the areas of next-generation security architectures, open-source security infrastructures, ecosystem cooperation and more. X-Lab has made outstanding achievements, which have been recognized globally by Internet software vendors, service providers, as well as international security communities. The X-Lab has released several open source Rust projects: MesaTEE Rust SGX SDK, MesaLock Linux, MesaLink TLS and so on.

@ymjing
ymjing / brpc_async_bench.md
Created May 8, 2019 21:36
Benchmarking a bRPC async http service

http_async_server.cpp

// Copyright (c) 2014 Baidu, Inc.
// 
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// 
//     http://www.apache.org/licenses/LICENSE-2.0
@ymjing
ymjing / brpc_bench.md
Created May 8, 2019 18:47
Benchmarking a bRPC http service

http_server.cpp

// Copyright (c) 2014 Baidu, Inc.
// 
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// 
//     http://www.apache.org/licenses/LICENSE-2.0
// 
@ymjing
ymjing / mesalink_1.0_brpc_ssl_benchmark.md
Last active April 2, 2019 19:26
MesaLink 1.0.0 vs OpenSSL 1.1.1b