Skip to content

Instantly share code, notes, and snippets.

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
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
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
@icarofreire
icarofreire / GeoService.java
Last active June 26, 2023 12:29
Service for geolocalization.
package galen.service;
import org.springframework.stereotype.Service;
/**
* Service for Geo.
* <p>
*
*/
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
@icarofreire
icarofreire / gist:89b92d75fb514c74e7672c09fd4aec8d
Last active September 25, 2023 12:17
Cheatsheet of modern C++
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/
Patterns of Distributed Systems
https://martinfowler.com/articles/patterns-of-distributed-systems/
https://www.wga.hu/index1.html
20 pictures selected at random from the entire collection:
https://www.wga.hu/index1.html
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
# ~ 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]]