shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

292
active users

#array

0 posts0 participants0 posts today
Replied in thread

I am still pissed off about this from last night.
The array[x][y] syntax for indexing an array inside another array, which is standard in Lua, does not appear to besupported by Pico-8 :neobot_scream_angry:

I had to make a dummy variable for some

foo=array[x]
bar=foo[y]

nonsense.

Also, if I used for all i in array, I could not use i to actually index the array. But for i=1,#array do worked fine even though it should be the exact same thing. And it's only as I write this that I realize that it was probably putting each value of the array into i and not the index. But that's fine, there's no method to sort values and I needed to step through them in a specific order, so it's really easiest to just use the numerical index and manually ensure they stay sorted.

And none of this is for any gameplay logic, this is all just the nominally simple code for scrolling that fucking cloud. :neobot_laugh_tears:

Recently Completed Geophysical Survey Will Help Protect Critical Infrastructure From Geomagnetic Storms And Space Weather
--
usgs.gov/news/national-news-re <-- shared technical article
--
[my other ½ is a space weather scientist, until I knew her I was not fully aware of all the risks and associated hazards associated with space weather]
#GIS #spatial #mapping #spaceweather #power #telecom #critical #infrastructure #risk #hazard #geomagnetic #geomagneticstorm #geomagnetism #minerals #geothermal #mining #earth #electricpower #powergrid #impacts #conductivity #USMTArray #magnetotellurics #geology #rocks #geophysics #spatialanalysis #spatiotemporal #array #USA #hazardanalysis #powersystems #transformers #powerfailures #lossofpower #blackouts #overloads
@USGS @NSF @nasa @EarthScope @NOAA

Replied in thread

@drmorr @leobm @mhd The difference in #Perl between $#array as the last index of an array and @array in scalar context is exactly one. In other words:

```
scalar(@whatever) == $#whatever + 1;
```

So using $#whatever for the length of array @whatever *is* wrong unless you take that extra step of adding 1.

Fun fact: You can pre-extend an array @foo by assigning a value to $#foo.

Crazy fact: Earlier versions of Perl let you set $[ to a non-zero index value for the start of arrays.