Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taxborn/taxborn
https://github.com/taxborn/taxborn
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/taxborn/taxborn
- Owner: taxborn
- Created: 2023-02-08T02:55:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-07T06:22:50.000Z (16 days ago)
- Last Synced: 2024-12-07T07:21:28.223Z (16 days ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :wave: Hi, I'm Braxton! - [taxborn.com]
I'm a 23-year-old Software Engineer working at [Thomson Reuters] on their Westlaw product.[taxborn.com]: https://www.taxborn.com
[Thomson Reuters]: https://tr.com## Currently working on:
- :robot: Gen AI on the [Westlaw] project
- :herb: [taxborn.com], my personal garden
- :keyboard: [HSS], experiments in generating hashes as fast as possible
- :coconut: [Coquito], a hobby programming language[Westlaw]: https://legal.thomsonreuters.com/en/products/westlaw-precision
[taxborn.com]: https://github.com/taxborn/taxborn.com
[HSS]: https://github.com/taxborn/hashing
[Coquito]: https://github.com/taxborn/coquito```haskell
quicksort :: Ord a => [a] -> [a]
quicksort [] = []
quicksort (x:xs) = quicksort smaller ++ [x] ++ quicksort larger
where
smaller = [a | a <- xs, a <= x]
larger = [a | a <- xs, a > x]
```*one of my favorite algorithms, expressed in Haskell. it reminds that simple, elegent
code can wield so much power.*