VirtualTam's bookmarks
1834 bookmarks found
-
A Guide to Porting C/C++ to Rust
2022-12-18 -
- https://stackoverflow.com/questions/35773299/how-can-you-export-the-visual-studio-code-extension-list
- https://stackoverflow.com/questions/55310734/how-to-add-more-indentation-in-the-visual-studio-code-explorer-file-tree-structu/55315106#55315106
- https://github.com/microsoft/vscode/issues/1027 - Suppress display of end-of-file newline as blank line
- https://stackoverflow.com/questions/30140112/how-do-i-hide-certain-files-from-the-sidebar-in-visual-studio-code
- https://stackoverflow.com/questions/29973619/how-to-make-vs-code-treat-a-file-extensions-as-a-certain-language
- https://stackoverflow.com/questions/44774709/removing-the-file-preview-on-the-right-side-of-the-editor-in-vs-code
-
- Rust Performance 101 in 5 Minutes
- https://www.jibbow.com/posts/criterion-flamegraphs/
- https://www.notamonadtutorial.com/benchmarking-and-analyzing-rust-performance-with-criterion-and-iai/
- https://github.com/bheisler/criterion.rs
- https://github.com/bheisler/criterion.rs/issues/97 - Compare memory usage
- https://github.com/bheisler/iai
- https://github.com/tikv/pprof-rs
- https://github.com/KDE/heaptrack
-
wtfpython: What the f*ck Python? đ±
2022-12-15 -
- HyperLogLog: the analysis of a near-optimal cardinality estimation algorithm (PDF)
- HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardinality Estimation Algorithm
- https://agkn.wordpress.com/2012/10/25/sketch-of-the-day-hyperloglog-cornerstone-of-a-big-data-infrastructure/
- Redis new data structure: the HyperLogLog
- https://www.reddit.com/r/programming/comments/21wshj/redis_new_data_structure_the_hyperloglog/
- https://redis.uptrace.dev/guide/go-redis-hll.html
- https://towardsdatascience.com/hyperloglog-a-simple-but-powerful-algorithm-for-data-scientists-aed50fe47869
- https://odino.org/my-favorite-data-structure-hyperloglog/
- http://blog.notdot.net/2012/09/Dam-Cool-Algorithms-Cardinality-Estimation
- https://supabase.com/blog/seen-by-in-postgresql
- https://www.citusdata.com/blog/2017/12/22/distributed-count-vs-hyperloglog/
-
-
- awk: https://www.gnu.org/software/gawk/manual/html_node/Bracket-Expressions.html
- grep: https://www.gnu.org/software/grep/manual/html_node/Character-Classes-and-Bracket-Expressions.html
- sed: https://www.gnu.org/software/sed/manual/html_node/Character-Classes-and-Bracket-Expressions.html
- tr: https://man7.org/linux/man-pages/man1/tr.1p.html
-
- https://stackoverflow.com/questions/63724484/build-and-bind-against-older-libc-version
- https://doc.rust-lang.org/rustc/platform-support.html
- https://www.reddit.com/r/rust/comments/n6udyk/building_rust_binaries_in_ci_that_work_with_older/
- https://users.rust-lang.org/t/how-to-compile-rust-with-a-specific-glibc-version-for-gnueabihf-architecture/6680
- https://kobzol.github.io/rust/ci/2021/05/07/building-rust-binaries-in-ci-that-work-with-older-glibc.html
-
-
A common complaint from new Rust developers is that they don't know where to start: which crates they ought to use and which crates they ought to trust. This list attempts to answer those questions.