Skip to content

Instantly share code, notes, and snippets.

@sciencectn
sciencectn / position_letter_ab_1856.md
Last active April 10, 2026 17:29
Position letter on AB 1856

The Committee on Privacy and Consumer Protection is holding a hearing on April 16th to discuss AB 1856. Below is my position letter which I submitted via https://apcp.assembly.ca.gov/

It's similar to my first letter to my reps but I modified it to focus on OSS, my biggest concern.


My name is Chris Taylor. I grew up in California and got a computer engineering degree from UCSB. I've worked on defense robotics, drones, and other high-stakes industrial systems (trains, forklift trucks), with experience in cybersecurity and AI.

Having lived in a number of states, I've come to appreciate what a good job California does at legislating technology, like with consumer protections, privacy, or protecting startups' ability to compete with incumbents.

@sciencectn
sciencectn / california_age_verification_oss.md
Last active April 10, 2026 01:10
An open source carveout for California's age verification law

California recently passed AB 1043, an age verification law. This pretty much takes Google and Apple's existing age verification mechanisms, enshrines them into law, and lets the state AG punish anyone who doesn't comply. This could really hurt open source software.

I wrote about my concerns in a blog post here: https://chrisfun.xyz/letter

I'm going to submit a position letter telling them how I feel at https://apcp.assembly.ca.gov/ and take a stab at introducing a carveout for open source software.

cmake_minimum_required(VERSION 3.10)
project(cgal_crash)
set(CMAKE_CXX_STANDARD 14)
# This is set to where I installed CGAL from the master branch
set(CGAL_MASTER_PATH /home/taylor/builds/cgal/build_Release/local_install)
find_package(CGAL REQUIRED CONFIG
NO_DEFAULT_PATH PATHS ${CGAL_MASTER_PATH} )