From ae4c0a4746d59b552ebeba166a43ce756dd265af Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 6 Nov 2022 20:52:21 -0400 Subject: More efficient code-generation for text composition. --- documentation/bookmark/business/competitiveness.md | 2 +- documentation/bookmark/business/management.md | 2 +- documentation/bookmark/business/sales/referral.md | 2 +- documentation/bookmark/database.md | 3 ++- documentation/bookmark/debugging.md | 1 + documentation/bookmark/error/exception.md | 1 + documentation/bookmark/ffi__foreign_function_interface.md | 6 ++++++ documentation/bookmark/foreign_function_interface.md | 5 ----- documentation/bookmark/game/failure.md | 4 ++++ documentation/bookmark/game/storytelling/archetype.md | 4 ++++ documentation/bookmark/graphic/3d/shading.md | 2 +- documentation/bookmark/p2p__peer_to_peer.md | 4 ++++ documentation/bookmark/storage/zoned.md | 4 ++++ 13 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 documentation/bookmark/ffi__foreign_function_interface.md delete mode 100644 documentation/bookmark/foreign_function_interface.md create mode 100644 documentation/bookmark/game/failure.md create mode 100644 documentation/bookmark/game/storytelling/archetype.md create mode 100644 documentation/bookmark/p2p__peer_to_peer.md create mode 100644 documentation/bookmark/storage/zoned.md (limited to 'documentation/bookmark') diff --git a/documentation/bookmark/business/competitiveness.md b/documentation/bookmark/business/competitiveness.md index 8b4e1ca45..c6d91341f 100644 --- a/documentation/bookmark/business/competitiveness.md +++ b/documentation/bookmark/business/competitiveness.md @@ -1,6 +1,6 @@ # Reference -0. []() +0. [Who Cares If It Scales?](https://betterprogramming.pub/who-cares-if-it-scales-1946adca8167) 0. [On Structural Advantage](https://medium.com/gamemakers/on-structural-advantage-7c6d6440ebc1) 0. [Moats: Durable competitive advantage](https://longform.asmartbear.com/posts/moats/) diff --git a/documentation/bookmark/business/management.md b/documentation/bookmark/business/management.md index bd48e75ad..f00bc5ae9 100644 --- a/documentation/bookmark/business/management.md +++ b/documentation/bookmark/business/management.md @@ -1,6 +1,6 @@ # Reference -0. []() +0. [Kenny Baas-Schwegler — Autonomy, is that what we really want?](https://www.youtube.com/watch?v=ijKATZCQZL4) 0. [How I structure my teams for growth](https://medium.com/@smnbss/how-i-structure-my-teams-for-growth-3272e4c3fc28) 0. [Capacity Plan](https://fev.al/posts/capacity-plan/) 0. [Team organisation by capabilities](https://blog.georgovassilis.com/2021/09/25/team-organisation-by-capabilities/) diff --git a/documentation/bookmark/business/sales/referral.md b/documentation/bookmark/business/sales/referral.md index ea2edf7c4..b3a76d0e9 100644 --- a/documentation/bookmark/business/sales/referral.md +++ b/documentation/bookmark/business/sales/referral.md @@ -1,5 +1,5 @@ # Reference -0. []() +0. [How to design your referral program so you don't accidentally lose millions](https://upollo.ai/blog/referral-programs) 0. [How to design a referral program](https://andrewchen.com/how-to-design-a-referral-program/) diff --git a/documentation/bookmark/database.md b/documentation/bookmark/database.md index 5a352e9b8..ae966251f 100644 --- a/documentation/bookmark/database.md +++ b/documentation/bookmark/database.md @@ -147,7 +147,8 @@ ## General -0. []() +0. [FeatureBase: The First OLAP Database Built Entirely on Bitmaps](https://www.featurebase.com/) + 0. [FeatureBase](https://github.com/FeatureBaseDB/featurebase) 0. [Velox: Meta’s Unified Execution Engine](https://research.facebook.com/publications/velox-metas-unified-execution-engine/) 0. [Skytable](https://skytable.io/) 0. https://github.com/Workiva/eva/ diff --git a/documentation/bookmark/debugging.md b/documentation/bookmark/debugging.md index 4942f9cb3..cc9c238da 100644 --- a/documentation/bookmark/debugging.md +++ b/documentation/bookmark/debugging.md @@ -80,6 +80,7 @@ # Time-travelling +0. [Calling functions in the past](https://medium.com/time-travel-debugging/calling-functions-in-the-past-4bb03bdc124d) 0. [Travelling through time with WinDbg at a system level](https://www.youtube.com/watch?v=mB9LIztjSKg) # Monitoring diff --git a/documentation/bookmark/error/exception.md b/documentation/bookmark/error/exception.md index 09b43b1eb..d89a47559 100644 --- a/documentation/bookmark/error/exception.md +++ b/documentation/bookmark/error/exception.md @@ -1,5 +1,6 @@ # Reference +0. [Making unwinding through JIT-ed code scalable](http://databasearchitects.blogspot.com/2022/06/making-unwinding-through-jit-ed-code.html) 0. [Using Coroutines to Implement C++ Exceptions for Freestanding Environments - Eyal Zedaka - CppCon 21](https://www.youtube.com/watch?v=TsXYqnUXrwM) 0. [You don't understand exceptions, but you should](https://matt.might.net/articles/implementing-exceptions/) diff --git a/documentation/bookmark/ffi__foreign_function_interface.md b/documentation/bookmark/ffi__foreign_function_interface.md new file mode 100644 index 000000000..52427628a --- /dev/null +++ b/documentation/bookmark/ffi__foreign_function_interface.md @@ -0,0 +1,6 @@ +# Reference + +0. [Safe borrowing across FFI with Diplomat](https://qnnokabayashi.github.io/Safe-borrowing-across-FFI-with-Diplomat/) +0. [Rust - Python FFI From Scratch](https://i.hsfzxjy.site/2022-03-12-rust-python-ffi-from-scratch/) +0. [Porting libffi to pure WebAssembly](https://www.tweag.io/blog/2022-03-17-libffi-wasm32/) + diff --git a/documentation/bookmark/foreign_function_interface.md b/documentation/bookmark/foreign_function_interface.md deleted file mode 100644 index ce86904db..000000000 --- a/documentation/bookmark/foreign_function_interface.md +++ /dev/null @@ -1,5 +0,0 @@ -# Reference - -0. [Rust - Python FFI From Scratch](https://i.hsfzxjy.site/2022-03-12-rust-python-ffi-from-scratch/) -0. [Porting libffi to pure WebAssembly](https://www.tweag.io/blog/2022-03-17-libffi-wasm32/) - diff --git a/documentation/bookmark/game/failure.md b/documentation/bookmark/game/failure.md new file mode 100644 index 000000000..ac2027354 --- /dev/null +++ b/documentation/bookmark/game/failure.md @@ -0,0 +1,4 @@ +# Reference + +0. [Why Videogames Want You To Fail](https://www.youtube.com/watch?v=K4ch3IRJpKY) + diff --git a/documentation/bookmark/game/storytelling/archetype.md b/documentation/bookmark/game/storytelling/archetype.md new file mode 100644 index 000000000..d5eb5a761 --- /dev/null +++ b/documentation/bookmark/game/storytelling/archetype.md @@ -0,0 +1,4 @@ +# Reference + +0. [Trope Talk: Doomed Heroes](https://www.youtube.com/watch?v=f3ZC7wSIwGU) + diff --git a/documentation/bookmark/graphic/3d/shading.md b/documentation/bookmark/graphic/3d/shading.md index c184858f9..b73069e9f 100644 --- a/documentation/bookmark/graphic/3d/shading.md +++ b/documentation/bookmark/graphic/3d/shading.md @@ -1,5 +1,5 @@ # Reference -0. []() +0. [LYGIA Shader Library](https://github.com/patriciogonzalezvivo/lygia) 0. [Slang](https://github.com/shader-slang/slang) diff --git a/documentation/bookmark/p2p__peer_to_peer.md b/documentation/bookmark/p2p__peer_to_peer.md new file mode 100644 index 000000000..af0dc335f --- /dev/null +++ b/documentation/bookmark/p2p__peer_to_peer.md @@ -0,0 +1,4 @@ +# Reference + +0. [Pest: Pest is a peer-to-peer network protocol intended for IRC-style chat](http://pestnet.io/) + diff --git a/documentation/bookmark/storage/zoned.md b/documentation/bookmark/storage/zoned.md new file mode 100644 index 000000000..8bcf08e94 --- /dev/null +++ b/documentation/bookmark/storage/zoned.md @@ -0,0 +1,4 @@ +# Reference + +0. [Zoned Storage](https://zonedstorage.io/) + -- cgit v1.2.3