Skip to content

Instantly share code, notes, and snippets.

@ryukoposting
ryukoposting / legodb.json
Created May 19, 2023 13:38
Every product listed on LEGO.com USA, May 9 2023
{
"timestamp": "2023/05/09 17: 32",
"result": {
"hokusai--the-great-wave-31208": {
"title": "Hokusai \u2013 The Great Wave",
"link": "/en-us/product/hokusai--the-great-wave-31208",
"price": 99.99,
"discount_price": null,
"piece_count": 1810,
"age": "18+",
@ryukoposting
ryukoposting / Makefile
Created November 14, 2022 21:59
Automatically generate c_cpp_properties.json from Makefile with a 99-line Ruby script
CC:=gcc
CFLAGS:=\
-I./include\
-DFOO\
-DBAR\
-std=c11
.vscode/c_cpp_properties.json: Makefile
ruby vscode_cprops_gen.rb .vscode $(CC) $(CFLAGS)