diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-16 19:32:18 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-17 01:28:57 +0300 |
commit | 239d68f94c6250276850fbe95eaa6cdd5c38fb26 (patch) | |
tree | c576da169afc442f51eae6213ad0ff749ed86589 /content/post/2022-05-31-golang-1.md | |
parent | 8e79098193fd0a8b65305dd8054cf7c424c60bc5 (diff) |
Своя тема, полностью всё переделал
Diffstat (limited to 'content/post/2022-05-31-golang-1.md')
-rw-r--r-- | content/post/2022-05-31-golang-1.md | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/content/post/2022-05-31-golang-1.md b/content/post/2022-05-31-golang-1.md deleted file mode 100644 index 9872ebc..0000000 --- a/content/post/2022-05-31-golang-1.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -author: NeonXP -categories: -- Без рубрики -date: "2022-05-31T01:00:00Z" -id: 56 -tags: -- go -- it -title: Golang подборка 1 -draft: false ---- - -Просто собираю подборку интересных ссылок по гошке на почитать потом. - -<figure class="wp-block-image">![Golang links](/img/go.jpg)</figure>- [Extra](https://github.com/neonxp/extra) — Моё. Пакет с разными полезными функциями без дополнительных зависимостей. -- [Серия видосов про создание игры в стиле Animal Crossing на golang с помощью raylib](https://www.youtube.com/watch?v=iWp-mCIQgMU&list=PLVotA8ycjnCsy30WQCwVU5RrZkt4lLgY5&index=1) -- [Самописный распределенный типа Postgres](https://notes.eatonphil.com/distributed-postgres.html). Под капотом raft от hashicorp, boltdb и самое интересное — парсинг SQL -- Рассчет расстояния между двумя Geo точками: - -``` -import "math" -... -// https://en.wikipedia.org/wiki/Haversine_formula -func GetDistance(lat1, lon1, lat2, lon2 float64) float64 { - lat1 *= math.Pi / 180 - lon1 *= math.Pi / 180 - lat2 *= math.Pi / 180 - lon2 *= math.Pi / 180 - return 12742 * math.Asin(math.Sqrt(math.Pow(math.Sin((lat2-lat1)/2), 2)+math.Cos(lat1)*math.Cos(lat2)*math.Pow(math.Sin((lon2-lon1)/2), 2))) -} - - -``` - -- [god](https://github.com/pioz/god) — Утилита подгатавливающая демоны из go программы. Для меня ценное — что генерит systemd конфиги.
\ No newline at end of file |