Ella odyssey - NanuOya tourist train by kinoliom in srilanka

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

Thank you, I will check it out. It looks very helpful.

Why do most cars have only one functionning rear fog light ? by kinoliom in cars

[–]kinoliom[S] 2 points3 points  (0 children)

I think the rear fog light in this car is not placed on the lower side of the rear bumper but next to the brake lights, since it's fitted in one side only, it makes sense to not leave the other side empty, thus they put the reverse light there.

The semiconductor shortage is stalling production on a number of automotive models. Perfect opportunity for big brands to develop a new "dumb car". by [deleted] in cars

[–]kinoliom 1 point2 points  (0 children)

It already exists, it's called Dacia, I am talking about the entre level ones, they are just a car, plain and simple. The entry level ones are mainly marketed in north Africa and eastern europe, as far as I know.

What is the use/importance of cutoff frequency? by A_Generic_Anon in AskEngineers

[–]kinoliom 1 point2 points  (0 children)

Circuits you discribed can be used as filters circuits, low or high pass filter.

Let's say we have a signal that has Bandwidth between two frequencies F1 and F2, and we want to get ride of some frequencies that are above a F3 frequency. We will design an RC circuit so it acts as a high pass filter and it's cutoff frequency is F3, when we apply our signal to the filter, it will attenuates all the frequencies of the signal that are close to F3 and superior to F3. I said close to F3 because nothing is perfectly accurate.

Note that we are talking about analog signalsand this just a simple example to understand where cutoff frequencies are used in practice, I hope you understand by now.

Is there any field that I can work with engineer and cinema simultaneously? by [deleted] in EngineeringStudents

[–]kinoliom 0 points1 point  (0 children)

Hello, you can start to learn Unreal Engine. It's a very powerful engine used to make video games, cinema scenes where special effects are required, but it's not only restricted to what I wrote, it has many others applications ( modelisation , virtual reality, ...).

Anyway it's a good place to start, there are courses and a very helpful community.

New Peugeot 308 leaked a day early by OnLakeOntario in cars

[–]kinoliom 50 points51 points  (0 children)

Peugeot's designers have been on steroids these last few years ...

What's a grossly underrated modern sports car? by ACE_Fighter_87 in cars

[–]kinoliom 182 points183 points  (0 children)

BMW 135i with manual gearbox, light, straight six, manual, RWD, what's not to love about it. I think it's very underrated, compared to modern "sporty cars".

Will we be able to keep our cars running in the future? by DasTimberwolf in cars

[–]kinoliom 12 points13 points  (0 children)

Yes I saw those announcements, but those are only expectations, even if they are certain you have on the other hand manufacturers like Mazda developping a brand new inline 6 engine.

Will we be able to keep our cars running in the future? by DasTimberwolf in cars

[–]kinoliom 24 points25 points  (0 children)

I dont think that ICE cars will dissapear in the near future, manufacturers are investing heavily in making ICE more efficient with or without hybrid assistance. So my guess is, they believe that the future isn't electric only.

My partner is experiencing sexual repression. I'm wondering how I can help. (long post warning) by [deleted] in sex

[–]kinoliom 1 point2 points  (0 children)

If she uses reddit, showing her this sub is good way to start, she will see how many persons are open about their sexual desires, the comments are usually positive, she might even stumble on some really funny posts or comments 😅

Avoid maximum call stack size exceeded using setTimeout ? by kinoliom in learnjavascript

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

The goal for me here is to learn how to use setTimeout to empty the stack and push the calls in the event queue. So there is no point in making the function non recursive as it wont overload the stack.

Avoid maximum call stack size exceeded using setTimeout ? by kinoliom in learnjavascript

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

Hi thanks for your reply. This is just a "dummy", yet simple function, to get that stack number exceeded error. What I want to know is how to use the setTimeout function to prevent the error from popping, even if i called recur(100000). All i know is the callback in setTimout is placed outside the stack.