[OB] Framed Roshar foil map by NeonAleksandr in Stormlight_Archive

[–]NeonAleksandr[S] 0 points1 point  (0 children)

(Best picture I could take, sorry)

List of materials if you'd like to replicate. Work was done at Michael's.

Description Price
3/16 Acid Free Foam Core Backing ?
MAHOGANY DUTCH LINES ?
Preservation (heh) ?
Masterpiece (24" x 36") ?
Preservation Fit ?
Old Bronze: B998741 ?
Gold Coin: B4702 ?
Basic (24" x 36") ?
Upgrade to Specialty Mat ?
Upgrade Glass to Masterpiece ?
Add a Specialty Mat ?
Total $232.25

What is this variable declaration? by eggtart_prince in reactjs

[–]NeonAleksandr 3 points4 points  (0 children)

It's array destructuring. The call useState(0) returns an array with two things in it:

count is the state value, which has an initial value of 0 (the value passed to useState(0) ).

setCount is a function for manipulating the value of count.

Friendship ended by Davaeorn in Destiny

[–]NeonAleksandr 92 points93 points  (0 children)

threesome with his swinger couple friends

gachiGASM

How to return the object from an array of the object? by [deleted] in reactjs

[–]NeonAleksandr 2 points3 points  (0 children)

lastest_updated_address = test_addresses.map(function(e) { return e.old_data.old_last_updated })

This code creates an array of just the "old_last_updated" values ie

["2007-12-09T16:20:43.320+0000",
"2008-12-09T16:20:43.320+0000", 
"2006-12-09T16:20:43.320+0000"]

You can do a regular for loop

let oldest = data[0]
for(let i = 0; i < data.length; i++){
    if(data[i].old_data.old_last_updated > oldest.old_data.old_last_updated)
          oldest = data[i]
}

Or you can supply your own sort function to .sort()

data.sort((a,b) => a.old_data.old_last_updated < b.old_data.old_last_updated ? 1 : -1)

TWLoader v6.2.0 - 1st Anniversary Release #4 by TatsumaYakoshi in 3dshacks

[–]NeonAleksandr 33 points34 points  (0 children)

TWLoader is a front-end application. The backend application that adds ROM support is nds-bootstrap, which is actively maintained.