101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

533
active users

#array

0 posts0 participants0 posts today

#array : the whole body of persons thus placed in order

- French: variété

- German: die Anordnung, der Bereich

- Italian: varietà

- Portuguese: arranjo

- Spanish: variedad

------------

Join our new subreddit for language learners @ reddit.com/r/LearnANewLanguage

reddit.comCrowdsourcing Languages • r/LearnANewLanguageWe are in the process of revitalizing this subreddit to help language learners. Thank you for being a part of our community!

☑️ Day 32/100: #Leetcode daily question

🟨 Question: 1671. Minimum Number of Removals to Make Mountain Array

This is a very good difficult question, and I obviously need to look a solution. This was solved using the lowest increasing decreasing subarray method.

🐈‍⬛ Check out my #GitHub where I post all the daily streak 🔥 questions and #LeetcodeContest 🏆 solutions

🔗 Solution Link: github.com/akshatsingh1718/lee

🔗 My Leetcode Github: github.com/akshatsingh1718/lee

I'm obsessed. 50% memory savings with PHP arrays have driven me crazy 🤪

For the past few weeks, my after-work research on PHP arrays has dominated my free time. The 'Never* use arrays' talk by @Crell at PHPKonf 2021 and a misinterpreted statement that you can save ~50% memory with PHP arrays have triggered intensive research on the topic.

[1/2]

#php #php_src #web_development #development #C #array #php_array

lukasrotermund.de/posts/php-ar

lukasrotermund.de · PHP arrays have driven me madLarry Garfield's 'Never* use arrays' talk really confused me. How can it be that objects in PHP save 50% memory? How can every PHP developer not be excited about this? And why don't you hear about it anywhere?

Fiber-Optic Seismic Sensing Of Vadose Zone Soil Moisture Dynamics
--
doi.org/10.1038/s41467-024-506 <-- shared paper
--
[broadly, a 'seismic' listening technique could help researchers map water movement, moisture levels in soil, with these researchers at Caltech have figured out a way to use vibrations from passing cars to see how much water sits directly beneath the ground’s surface…]
#GIS #spatial #mapping #remotesensing #array #survey #soil #regolith #seismic #water #hydrology #waterresources #watersecurity #subsurface #vadose #vadosezone #soilmoisture #moisture #weather #precipitation #rainfall #surfacewater #groundwater #ecology #agriculture #ecosystems #spatiotemporal #model #modeling #spatialanalysis #fiberoptics #fibreoptics #evapotranspiration #insitu #climatechange #drought #extremeweather #watermanagement #semiarid #geophysics

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

sysmod.wordpress.com/
#Excel #dynamic #array #cumulative sum
To calculate a 2-D array where each row is the #cusum of each row in the source table, it’s possible to use the #MMULT function. The #matrix multiplication is done with an upper-right triangular array of 1s. But when you get to 1000 rows, the matrix is a million-cell array, and for 3000 rows or more, #MSExcel is going to go out of memory.
Here is an efficient method of doing this for a dynamic array cusum down columns.

Patrick O'Beirne @ sysmodPatrick O'Beirne @ sysmodSpreadsheet quality and testing
Replied in thread

@Isocat
(I have now remembered to use #hashtags for searchability)

To line up alternate rows using formulas, I have to resort to the latest #Excel #dynamic #array #formulas.

=MAKEARRAY(2000,26, LAMBDA(i,j,IF(MOD(i,2)=1, INDEX(Sheet1!A1:Z1000,(i+1)/2,j), INDEX(Sheet2!A1:Z1000,i/2,j) )))

Use the actual rows you have rather than 1000 (and double it for the 2000) and the actual no. columns rather than 26.

To #conditional #format, see the picture.