mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

344K
active users

#array

2 posts2 participants0 posts today

World Map: Array decisions

I’m going back and forth at the moment on the subject of the world array. In The Endless Rooms, there are endless near-identical rooms. For what I hope are obvious reasons, I plan to go with an array of 100 by 100 rooms, which should feel like an unlimited number without actually being unlimited.

This means that there will be 10,000 rooms to explore. If I create an array to map all the rooms, I probably don’t want to load into memory the objects for every room, entity, creature, puzzle, script and so forth. I may need to map where to find those things and include in the active array, completion, changes, narrative progress, and the like.

The question I am currently playing with is how much I need to keep in memory and how much I can defer to files.

This is a key set of choices that I feel I may need to make early, as changing later could be a lot of needless work. I’ve been using ChatGPT as a coding buddy to talk through ideas (I’ll write my own code, thank you chat), which has helped me get some ideas organised in my brain. Not because ChatGPT is particularly helpful but because I have had to codify and explain what I’m trying to figure out.

Any thoughts? I’d love to hear them.

#10000Rooms #array #map #planning #technicalLimits #DevLog

Безопасная работа с массивами? Нет, не слышали

Рано или поздно любому разработчику на С-подобном языке приходит в голову идея использовать двумерный массив как одномерный. Причины для этого всегда разные, а вот результат чаще всего один. В этой небольшой заметке разберём эту сомнительную технику и какие проблемы она может привнести в вашу программу.

habr.com/ru/companies/pvs-stud

#c++ #c #array #массив #программирование #assembler #ассемблер #c++23 #c23

ХабрБезопасная работа с массивами? Нет, не слышалиРано или поздно любому разработчику на С-подобном языке приходит в голову идея использовать двумерный массив как одномерный. Причины для этого всегда разные, а вот результат чаще всего один. В этой...
Continued thread

I started implementing some explorations in #Haskell but I had to ditch `data-memocombinators` because #MicroHs doesn't properly support #RankNTypes yet. Instead I'm doing manual #memoization with #array :

```
import Data.Array

-- memoized function, looks up in array
f :: Int -> Int -> Int -> Int
f = \x y z -> if inRange fBounds (x, y, z) then fArray ! (x, y, z) else 0

-- real algorithm, recursive calls use memoized function
f' :: Int -> Int -> Int -> Int
f' 1 1 1 = 1
f' a b c = sum [ f (a - 1) b c, f a (b - 1), f a b (c - 1) ]

-- array, generated with real algorithm
fArray :: Array (Int, Int, Int) [Bool]
fArray = array fBounds [ (i, f' x y z) | i@(x, y, z)<- range fBounds ]

-- array bounds
fBounds :: ((Int, Int, Int), (Int, Int, Int))
fBounds = ((1, 1, 1), (limit, limit, limit))

-- can be as large as necessary for the real problem,
-- but going too big consumes too much memory
limit :: Int
limit = 45
```

std::array в С++ быстрее массива в С. Иногда

Давайте натрём наши болиды до блеска и посмотрим, как они входят в повороты компиляторных оптимизаций на примере использования std::array . Смогут ли они не только не уступить, но и обогнать встроенный массив? Поехали!

habr.com/ru/companies/pvs-stud

#c++ #c++11 #c++17 #c++14 #c++20 #c++_библиотеки #c++0x #c++23 #массив #array

Хабрstd::array в С++ быстрее массива в С. ИногдаВоу-воу, Джонни, убери пушку! Я могу всё объяснить! В предыдущей статье про std::array мы подробно рассматривали, почему в production-ready коде он ведёт себя так же производительно, как и встроенный...

DB2 JSON Array Extraction: Solving JSON_TABLE Challenges in DB2 v11.5
Master DB2 JSON Array Extraction using efficient techniques like recursive common table expressions (RCTEs)! Learn to handle complex JSON structures &amp; avoid common pitfalls.
tech-champion.com/database/db2
Learn how to efficiently extract array data from JSON stored in DB2 v11.5 using JSON_TABLE and workar...

Power Automate - heiter bis wolkig.
Der verheddert sich bei neuen Flows momentan in , als ob eine simple SharePoint LIste plötzlich nur ein wäre. Häh?. Der/Die/Das CoPilot würfelt noch, wie die ID herauszukriegen ist. Dabei ging das seit 2020 ohne Probleme, vor CoPIlot (BC) Wenn ich jetzt nur EIN Element in einer Liste erstellt habe, ist die ID unauffindbar. Habt Ihr ähnliche Probleme in Flows? Ich bin wohl zu intelligent für diese "Experience". 🙄

J'ai tenté d'explorer le principe des rotations de tableau.

angle bleu / angle rose / ligne droite bleue / ligne droite rose / croisement

Les quatre "côtés" de chaque tuile, représentés par un tableau, sont analysés et pivotés pour garantir la continuité avec les tuiles adjacentes. Sortie vectorielle.

Типобезопасная работа с массивами PHP, часть 3

Всем привет! Расскажу о большом обновлении в пакете sbwerewolf/language-specific . Для тех кто не знаком с этим пакетом коротко опишу его назначение. Допустим вы по API получили JSON с большой вложенностью, и вам нужно достать из JSON какое то значение которое зарыто поглубже. Что делать ? конечно преобразовать JSON строку в ассоциативный массив, а дальше что делать ? Конечно прописать все индексы до искомого элемента, получиться что то такое: response["response"]["GeoObjectCollection"]["featureMember"] [0]["GeoObject"]["metaDataProperty"]["GeocoderMetaData"]["Address"]["formatted"] ?? "Адрес не найден"; Получилась строка кода длиной 200 символов. Не очень удобное такое читать. Самое неприятное, что элемента с индексом 0 может и не быть, то есть сначала надо проверить, что он есть, а потом уже идти по массиву дальше, и каждый раз придётся приписывать весь это хвост из индексов, поэтому код будет заграмождён индексами, работать с таким кодом не удобно. Пакет sbwerewolf/language-specific , позволяет избавить код от сплошного перечисления индексов, замороченных выражений, скобочек и операторов ?? .

habr.com/ru/articles/874688/

ХабрТипобезопасная работа с массивами PHP, часть 3Всем привет! Расскажу о большом обновлении в пакете sbwerewolf/language-specific . Для тех кто не знаком с этим пакетом коротко опишу его назначение. Допустим вы по API получили JSON с большой...

Когда слайсы начинают расти

Я не применяю Go в коммерческой разработке, я недавно начал изучать и применять этот язык для пет-проектов и разного рода опытов. В этой статье мы поговорим о слайсах, принципах работы с ними, а также о том, как они растут, по каким правилам и насколько очевиден их рост.

habr.com/ru/articles/874084/

ХабрКогда слайсы начинают растиВведение Я не применяю Go в коммерческой разработке, я недавно начал изучать и применять этот язык для пет-проектов и разного рода опытов. В этой статье речь пойдёт о слайсах. Пример, который мы будем...