Search
1000 results for “array”
-
Today was an interesting array of #ideas and #art. This Hideous Replica at RMIT Gallery #Melbourne had some interesting ideas of reimagining #subcultures on the #web and fashioning new flags to represent #anarchic ideologies & sub genres...
Across onsite galleries and offsite spaces, the work of eight artists and collectives traverses the totally absurd and camp to serious and techy, decoding cultural sticking points that technology brings with it.
-
The term array is pretty overloaded in programming, which is probably why I didn't realize immediately that it wasn't a situation of some sort of 'sized' vs 'unsized' thing... but also, their syntax is really, really similar. And it doesn't help that you can absolutely initialize arrays but specify the type of the variable as what is apparently a slice?
let str_slice: &[&str] = &["one", "two", "three"];
is perfectly legit, it would seem. Hence why I assumed... (I mean, in this example, the variable is named str_slice, but it's on the slice documentation page, so obviously I did not see it before).
#techPosting #rustLang -
Maxar partners with Array Labs to expand 3D imaging technology
-
Maximize non decreasing Array size by replacing Subarray with sum https://www.geeksforgeeks.org/maximize-non-decreasing-array-size-by-replacing-subarray-with-sum/ #TechnicalScripter2022 #TechnicalScripter #subarray-sum #Arrays #Greedy
-
Maximize the Median of Array formed from adjacent maximum of a rearrangement https://www.geeksforgeeks.org/maximize-the-median-of-array-formed-from-adjacent-maximum-of-a-rearrangement/ #TechnicalScripter2022 #TechnicalScripter #array-rearrange #Sorting #Arrays
-
I discovered the ArrayCast #podcast this week and have enjoyed it tremendously.
Fun content for #programming #language nerds; positive and constructive perspectives; and soothingly orderly conversations where folks don’t interrupt each other 😌
-
The team represents an array of professions, interests, and ages, united by shared values and goals. Despite no prior experience, these women now confidently handle multiple tools. #DiverseTeam #SharedGoals #Learning
-
#Day23 : Array Methods Exercices from #30DaysOfJavascript
Source Code : https://github.com/teotimepacreau/Array-Methods-Exercices-Day23-of-100DaysOfCode
- understood the difference between .map() and forEach() method
- used .includes() for first time to verif if the array contains certain letters
- used .filter() for first time
reverse array#WebDev #Frontend #WebDesign #LearnWebDev #Javascript #LearnToCode #CodingDay #FrontendDevelopment #CodingChallenge #LearnCode #WebDevelopment #LearnJavascript #JS
-
CISA Adds Array Networks’ CVE-2023-28461 to KEV List: Critical Patching Urged https://thecyberexpress.com/cisa-adds-cve-2023-28461-vulnerability/ #TheCyberExpressNews #securityadvisory #Vulnerabilities #TheCyberExpress #FirewallDaily #SSLVPNgateway #CVE202328461 #CyberNews #CISA #KEV
-
Destructuring an Array by Indices
Ever tried to get specific items out of an array and ended up feeling like a cat chasing a laser pointer? Fear not! Here’s a neat trick to make your life easier. You can actually destructure an array by its indices. It’s like having a magic wand...
Unlock the full article now 👉 https://bitskingdom.com/blog/javascript-array-duplicate-detection/
-
How to Avoid Array Sort Lying to You
Default sort is lexical, not numeric.
-
Laser Retroreflector Arrays: Enabling Precise Navigation and Ranging in Space
#ApolloProgram #Artemis #DeepSpace #Earth #ESA #GNSS #Government #GPS #Infrastructure #Lunar #Mars #Materials #Moon #NASA #Navigation #RemoteSensing #Satellites #Science #SpaceEconomy #Spacecraft #Technology #GroundSegment #Infrastructure #SatelliteApplications #SpaceEconomy #SpaceSegment #Upstream
https://newspaceeconomy.ca/2024/02/12/laser-retroreflector-arrays-enabling-precise-navigation-and-ranging-in-space/
-
Bounds checking added to array indexing. Surprisingly easy - I just needed to add a call to the GenRangeCheck function, passing in the register, plus from- and to-types.
And a few edge case glitches solved largely around primitive selection, which was affecting the register in which the index was being passed.
-
Soviet American Array VII, 1991 #rauschenberg #neodada https://www.wikiart.org/en/robert-rauschenberg/soviet-american-array-vii-1991
-
Redwire unveils new solar array
https://fed.brid.gy/r/https://spacenews.com/redwire-unveils-new-solar-array/
-
Redwire to provide solar arrays for Axiom space station module
-
2D Jagged Array in PowerShell Tip #13 #Scripting #PowerShellScripting #coding #LearnPowerShell #cloudcomputing #Automation #DevOps #softwareengineering #serveradmin
-
Our antenna array consists of 7 masts spaced about 80 feet apart. Numbers 2, 4, and 6 are 40; tall and have a tri-band beam antenna for 10m, 15m and 20m. Below that are the feed points of 80m and 40m dipoles.
Masts 1, 3, 5 and 7 are 32 feet tall and are used to hold up the ends of the dipoles.
Other bands are placed on tripods within the antenna zone (open only to authorized personnel).
#2025FieldDay #CVARC #ConejoValleyAmateurRadioClub #hamradio
-
TIL: C array subscript operators are handled in such a way that `letters[i]` is equivalent to `*(letters + i)` and because addition is commutative, that expression is identical to `*(i + letters)`, which means that `i[letters]` is the same as `letters[i]`.
```
#include <stdio.h>
#include <stddef.h>int main() {
char letters[3] = "abc";
size_t i = 2;
printf("letters: %p\n", (void *)&letters);
printf("i[letters] (%p): %c\n", (void*)&(i[letters]), i[letters]);
printf("letters[i] (%p): %c\n", (void*)&(letters[i]), letters[i]);
return 0;
}
```Which outputs:
```
letters: 0x7ffc68ec7bb9
i[letters] (0x7ffc68ec7bbb): c
letters[i] (0x7ffc68ec7bbb): c
```Mind blown... :neofox_floof_explode:
#til #clang #pointers #programming -
Discover an Exciting Array of Releases from Signature This June! 🌟 Check out this month's fantastic lineup at Signature. Don't miss out on the latest offerings! 🔗 https://blazingminds.co.uk/selection-great-releases-signature-june-2025/ #SignatureReleases #June2025 #NewArrivals
-
Discover an Exciting Array of Releases from Signature This June! 🌟 Check out this month's fantastic lineup at Signature. Don't miss out on the latest offerings! 🔗 https://blazingminds.co.uk/selection-great-releases-signature-june-2025/ #SignatureReleases #June2025 #NewArrivals
-
🔗 Validating Array Inputs in Laravel Without the N+1
https://daryllegion.com/validating-array-inputs-in-laravel-without-the-n-plus-1
#php #laravel #performance #form #validation -
nourished amply with arrays of comfortable notions
(Detail)
Made with a #V2028 + the #GNUImageManipulationProgram.
#Barcelona #Digital #DoubleExposure #FauxInfrared #StreetPhotography #Urban image.
#MastoArt CC BY-NC-ND 4.0
#Aminus3: https://dabnotu.aminus3.com/image/2022-06-22.html
#Blipfoto: https://www.blipfoto.com/entry/2995734375003328387
-
nourished amply with arrays of comfortable notions
(Detail)
Made with a #V2028 + the #GNUImageManipulationProgram.
#Barcelona #Digital #DoubleExposure #FauxInfrared #StreetPhotography #Urban image.
#MastoArt CC BY-NC-ND 4.0
#Aminus3: https://dabnotu.aminus3.com/image/2022-06-22.html
#Blipfoto: https://www.blipfoto.com/entry/2995734375003328387
-
nourished amply with arrays of comfortable notions
(Detail)
Made with a #V2028 + the #GNUImageManipulationProgram.
#Barcelona #Digital #DoubleExposure #FauxInfrared #StreetPhotography #Urban image.
#MastoArt CC BY-NC-ND 4.0
#Blipfoto: https://www.blipfoto.com/entry/2995734375003328387
-
A Phased-Array Ultrasonic 3D Scanner From Scratch - Who wouldn’t want an autonomous drone to deliver cans of fizzy drink fresh from th... - https://hackaday.com/2021/05/15/a-phased-array-ultrasonic-3d-scanner-from-scratch/ #ultrasonicarray #arduinohacks #ultrasonic #techhacks #3dscanner
-
Reverse Engineering A Phased Array System Reveals Surprising Details - The term “phased array” has been around for a long time, but in recent years we’ve... - https://hackaday.com/2022/07/21/reverse-engineering-a-phased-array-system-reveals-surprising-details/ #patchantenna #phasedarray #radiohacks #radio #wigig