This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| marching cubes; | |
| https://paulbourke.net/geometry/polygonise/ | |
| https://graphics.stanford.edu/~mdfisher/MarchingCubes.html | |
| https://polycoding.net/marching-cubes/part-1/ | |
| https://proceedings.sbmac.org.br/sbmac/article/view/1181/1193 | |
| http://repositorio.ufla.br/jspui/bitstream/1/10756/1/MONOGRAFIA_Gera%C3%A7%C3%A3o_de_isossuperf%C3%ADcies_pelos_algoritmos_marching_cubes_e_varia%C3%A7%C3%B5es.pdf | |
| https://www.maxwell.vrac.puc-rio.br/15358/15358_5.PDF | |
| http://fab.cba.mit.edu/classes/S62.12/docs/Lorensen_marching_cubes.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| marching cubes algorithm: | |
| * https://cg.informatik.uni-freiburg.de/intern/seminar/surfaceReconstruction_survey%20of%20marching%20cubes.pdf | |
| * https://www.seansylvis.com/post/36256575119/an-implementation-of-the-marching-cubes-algorithm | |
| * http://users.polytech.unice.fr/~lingrand/MarchingCubes/applet.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.baeldung.com/cs/bwt-rle-compression-algorithm-for-short-text-strings | |
| https://arxiv.org/pdf/1209.1045.pdf | |
| https://www.iacr.org/archive/fse2014/85400151/85400151.pdf | |
| https://rosettacode.org/wiki/Compiler/AST_interpreter#C | |
| https://piotrminkowski.com/2020/06/19/distributed-transactions-in-microservices-with-spring-boot/ | |
| https://dicomiseasy.blogspot.com/p/introduction-to-dicom.html | |
| https://en.wikipedia.org/wiki/Recursive_descent_parser | |
| https://en.wikipedia.org/wiki/CYK_algorithm | |
| https://en.wikipedia.org/wiki/Earley_parser | |
| https://en.wikipedia.org/wiki/Geohash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package galen.service; | |
| import org.springframework.stereotype.Service; | |
| /** | |
| * Service for Geo. | |
| * <p> | |
| * | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System Design Blueprint: | |
| https://blog.bytebytego.com/p/ep56-system-design-blueprint-the | |
| https://github.com/naniroot/naniz-hugo-site/blob/master/content/posts/system_design_interviews_cheatsheet.md | |
| https://vivek-singh.medium.com/system-design-cheat-sheet-318ba2e34723 | |
| https://codingnconcepts.com/system-design-cheat-sheet/ | |
| https://gist.github.com/vasanthk/485d1c25737e8e72759f | |
| http://dimafeng.com/2016/12/04/distributed-systems/ | |
| https://blog.devgenius.io/create-a-distributed-database-with-high-availability-with-apache-shardingsphere-b73bf776592 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cheatsheet of modern C++: | |
| https://github.com/AnthonyCalandra/modern-cpp-features | |
| https://cppcheatsheet.com | |
| https://github.com/muqsitnawaz/modern-cpp-cheatsheet | |
| https://riptutorial.com/cplusplus | |
| https://learnmoderncpp.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Patterns of Distributed Systems | |
| https://martinfowler.com/articles/patterns-of-distributed-systems/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.wga.hu/index1.html | |
| 20 pictures selected at random from the entire collection: | |
| https://www.wga.hu/index1.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Benchmarks. | |
| https://www.baeldung.com/java-microbenchmark-harness | |
| https://linuxhint.com/use-sysbench-for-linux-performance-testing/ | |
| https://github.com/dsyer/spring-boot-startup-bench |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~ def sum(arr, sub): | |
| # ~ con = 0 | |
| # ~ maxi = 0 | |
| # ~ for i in arr: | |
| # ~ if con < sub: | |
| # ~ maxi += i | |
| # ~ con+=1 | |
| # ~ return [maxi, arr[:sub], some] | |
| # ~ return [sub, arr[:sub]] |