Skip to content

Instantly share code, notes, and snippets.

View sxlijin's full-sized avatar
🎯
doing things

Samuel Lijin sxlijin

🎯
doing things
View GitHub Profile
@sxlijin
sxlijin / new-existing-issues-test.json
Last active July 6, 2023 20:49
new-existing-issues-test.json
{
"$schema": "https://docs.oasis-open.org/sarif/sarif/v2.1.0/os/schemas/sarif-schema-2.1.0.json",
"runs": [
{
"results": [
{
"locations": [
{
"physicalLocation": {
"artifactLocation": {"uri": "package.json"},
lockfileVersion: '6.1'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
jsonwebtoken:
specifier: 8.5.1
version: 8.5.1
@sxlijin
sxlijin / github-logo.svg
Last active August 28, 2023 20:33
github-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sxlijin
sxlijin / json_to_ruby.rs
Last active April 25, 2024 06:32
draft: ruby to json
use magnus::{
class, define_class,
encoding::{CType, RbEncoding},
exception::runtime_error,
function, method,
prelude::*,
scan_args::get_kwargs,
value::Value,
IntoValue, KwArgs, RArray, RHash, RObject, RString, Ruby,
};
@sxlijin
sxlijin / remove_dir_safe.rs
Created May 16, 2024 21:46
rustfmt does not handle macros nicely example
fn remove_dir_safe(&self, output_path: &Path) -> Result<()> {
if !output_path.exists() {
return Ok(());
}
const MAX_UNKNOWN_FILES: usize = 5;
let mut unknown_files = vec![];
for entry in walkdir::WalkDir::new(output_path) {
if unknown_files.len() > MAX_UNKNOWN_FILES {
break;
@sxlijin
sxlijin / caps_lock-is-ctrl.json
Created June 5, 2024 19:52
karabiner-elements rules
{
"description": "In Terminal/VSCode, caps_lock is CTRL",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.Terminal",
"^com\\.googlecode\\.iterm2",
"^com\\.microsoft\\.VSCode"
@sxlijin
sxlijin / attempt2.rs
Created June 7, 2024 05:27
ruby-tokio-demo
use futures::{future, FutureExt};
use magnus::{
class, exception::runtime_error, function, method, prelude::*, Error, IntoValue, RModule,
};
//#[cfg(ruby_have_ruby_fiber_scheduler_h)]
use rb_sys::bindings::uncategorized::{
rb_fiber_current, rb_fiber_scheduler_block, rb_fiber_scheduler_current, rb_fiber_scheduler_get,
rb_fiber_scheduler_kernel_sleep, rb_fiber_scheduler_unblock,
};
use std::cell::RefCell;
@sxlijin
sxlijin / maturin.log
Created June 19, 2024 22:48
maturin license-file.workspace log
~/sandbox/python-repro is 📦 v0.1.0 via 🐍 v3.12.3 | [0] at 15:45:16
❯ poetry remove baml-py; RUST_LOG=maturin=debug poetry run maturin build --manifest-path ~/baml/engine/language_client_python/Cargo.toml && poetry add ~/baml/engine/target/wheels/baml_py-0.40.0-cp38-abi3-macosx_11_0_arm64.whl
Updating dependencies
Resolving dependencies... (0.1s)
Package operations: 0 installs, 0 updates, 1 removal
- Removing baml-py (0.40.0 /Users/sam/baml/engine/target/wheels/baml_py-0.40.0-cp38-abi3-macosx_11_0_arm64.whl)
@sxlijin
sxlijin / async-local-storage.test.ts
Created July 2, 2024 01:20
async local storage
it('test local trace async', async () => {
const s2 = new AsyncLocalStorage<string[]>()
s2.enterWith(['first'])
const localTraceAsync = <ReturnType, F extends (...args: any[]) => Promise<ReturnType>>(
name: string,
func: F,
): F => {
const funcName = name
@sxlijin
sxlijin / episode-of-care.schema.txt
Last active July 8, 2024 23:38
fhir.schema.json, without cyclic type definitions
Answer in JSON using this schema:
{
// The list of medical conditions that were addressed during the episode of care.
diagnosis: [
{
// May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.
//
// Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
modifierExtension: str