Syntax highlighting for code
from tedu to test on 18 Aug 2023 17:09
https://azorius.net/g/test/p/lMwyg3mPBvS1ZvYCVs-Syntax-highlighting-for-code

// this does something interesting
func oneofakind(a []string) map[string]bool {
        seen := make(map[string]bool)
        seen[""] = true
        j := 0
        for _, s := range a {
                seen[s] = true
        }
        return seen
}

Me summarizing a day of work:

+ a line of code
- a bug
- two bugs
+ a fix

#test

threaded - newest

tedu@honk.tedunangst.com on 18 Aug 2023 17:10 next collapse

@tedu

let all_joins = move |query: post_aggregates::BoxedQuery<'a, Pg>, my_person_id: Option| {
    // The left join below will return None in this case
    let person_id_join = my_person_id.unwrap_or(PersonId(-1));

o@gts.olowe.co on 14 Jan 2024 00:42 collapse

@tedu test 2 from gts

tedu on 14 Jan 2024 05:44 collapse

we got something.