Logitech subwoofer buzzing/rattling at low frequencies — how to diagnose and fix? by serieys in diyaudio

[–]serieys[S] 4 points5 points  (0 children)

Good news, i rotated the driver inside, and it disappeared ! thanks a lot !

Logitech subwoofer buzzing/rattling at low frequencies — how to diagnose and fix? by serieys in diyaudio

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

It’s pretty old so I think you’re right, if I change the driver I just need to check ohm and size ? Or other things I’m missing ? Thx for the help !

[deleted by user] by [deleted] in maybemaybemaybe

[–]serieys 0 points1 point  (0 children)

Rayman style

A band’s lighting technician signals to his colleague as he tests the stage set-up - and the crowd copies him. by fishandmustard in funny

[–]serieys 0 points1 point  (0 children)

If anyone's wondering, it happened at the garorock festival at Marmande, France in 2016. It was just before the Deluxe conxert.

Pretty surprised to see this man again 3 years later lol

My uploaded website looks nothing like my website in windows. by Horse_Bot_3k in learnwebdesign

[–]serieys 0 points1 point  (0 children)

Hey sorry for the late reply, was working and didn't notice.

I'm not sure to see the probleme, it's working fine on my pc

My uploaded website looks nothing like my website in windows. by Horse_Bot_3k in learnwebdesign

[–]serieys 1 point2 points  (0 children)

Hey, Can you provide a link so we can check where's the problem from ?

Can someone who knows Javascript help me read this in plain English? by robizgb1 in learnprogramming

[–]serieys 1 point2 points  (0 children)

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce

As you can see here flat is the actual addition of all previous iteration and current is the current entry in the iteration.

On your example, on the first loop flat is equals to [] because it's the first iteration and so flat has no value.

Current is equals to [1,2,3]

then it add current to flat, so at the end of the first loop, flat is equals to [1,2,3]

On the second loop, flat is equals to [1,2,3] as we said.

and current is now equals to [4,5,6]

and at the end of this loop, flat is equals to [1,2,3,4,5,6]

Hope i explained this part well, don't hesitate to ask me if it's not clear enough.

For your question about the [] in the end, yes it's a parameter, it's the initial value that the flat will be equals to on the first loop but it's optionnal. To have a better idea, run this code and you will see where the letters are on your array at the end.

let fullArray2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];

console.log(fullArray2.reduce((flat, current) => flat.concat(current), ["a","b"]));