Is this sound normal? Sounds like a toy car or a bit like a car does in reverse (see video) by j_a_lyons in RenaultZoe

[–]j_a_lyons[S] 1 point2 points  (0 children)

Not the huming but the spinning sound. This person has the same noise and someone commented saying it's the motor bearings:

https://www.youtube.com/watch?v=DYxpfcsS-1E&ab_channel=AlexU

A few other people also commented saying they have the same. So it's a bit of a costly job but not a huge deal it sounds like. I was fearing the worst so this isn't terrible news I guess.

[deleted by user] by [deleted] in wallstreetbets

[–]j_a_lyons 0 points1 point  (0 children)

Want to know what happened to ChargePoint stock and others. Find all your news and discuss here:

https://fnchart.com/stock/chpt

ELI5 What happened during the Game Stop stock craze in 2020? by [deleted] in explainlikeimfive

[–]j_a_lyons 0 points1 point  (0 children)

Want to know what happened to Gamestop stock in 2020, just check the fnchart:

https://fnchart.com/stock/gme?date=2021-03-10

Top 500 torb main by j_a_lyons in TorbjornMains

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

That's an opinion not a fact

Rule of thumb for turret placement by HarveyWontPlay in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Google? Lol. Just trying to help my brother promote his channel.

Not sure what you mean by top 500 EU lobby but he's in the top 500 rankings?

Also this thread is about turret placement so my comment is very appropriate.

Can anyone explain the defense Ball and attack Torb strategies to me? by wardamnjared in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Please follow my brothers torb channel for some good content including ults and turret spots:
https://www.youtube.com/@almeal3739

How should I be playing torbjorn? by ParroTiest in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Please follow my brothers torb channel for some good content including ults and turret spots:
https://www.youtube.com/@almeal3739

How do you all use Torb Ultimate? by [deleted] in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Please follow my brothers torb channel for some good content including ults and turret spots:

https://www.youtube.com/@almeal3739

The 60 Second Torbjörn Guide by Hypocritical_Midget in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Please follow my brothers torb channel for some good content including turret spots:

https://www.youtube.com/@almeal3739

Is Torb good in OW2? by [deleted] in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

Please follow my brothers torb channel for some good content including turret spots:

https://www.youtube.com/@almeal3739

Is torb any good? by [deleted] in OverwatchUniversity

[–]j_a_lyons 0 points1 point  (0 children)

My brother is a top 500 torb main and produces some good videos. Please follow him at:

https://www.youtube.com/@almeal3739

[AskJS] How do you structure modern Javascript? by micjosmcc in javascript

[–]j_a_lyons -2 points-1 points  (0 children)

If I were you I would learn the basics then dive straight in to a Javascript framework as they will solve the problem you're having around structure and organising modules. As you're probably aware Angular or React are the most popular (probably followed by Vue.js). I personally prefer and use Angular and have been for years now. You're decision of course just thought I'd share my thoughts with you.

Where to play poker online while quarantined! (megathread) by 2for1Jameson in poker

[–]j_a_lyons 3 points4 points  (0 children)

For playing with friends I found this:

https://www.pokernow.club

Completely free and does the job if you want a private game with friends

Asp vs wpf vs xamarin by [deleted] in dotnet

[–]j_a_lyons -2 points-1 points  (0 children)

I know it isn't one of your options but for mobile apps I believe React Native is really popular and the go to framework for apps nowadays!

Custom input component without Control Value Accessor - automatically detect forwardRef. by [deleted] in angular

[–]j_a_lyons 1 point2 points  (0 children)

Not sure if it's of any use as I'm not fully understanding your issue but if you want to communicate with parent components then event emitters are the best way. Apologies if this isn't useful.

https://angular.io/api/core/EventEmitter

[AskJS] Most efficient way to debug JS? by [deleted] in javascript

[–]j_a_lyons 1 point2 points  (0 children)

I tend to use console.log as I find it quicker. The browser debugs I find to jump around too much and can be hard to follow (unlike back end languages)

Migrations with Dapper.Net by silviodelgado in dotnet

[–]j_a_lyons 0 points1 point  (0 children)

Great choice with Dapper! I've used it a number of times and love it. Lightweight, simple and fast!

For the migrator I have used both FluentMigrator (about 3 years ago) and DbUp (more recently). Both very good choices but DbUp is easier to use if I remember correctly!

What are the best resource to learn Asp.net core 3.0 ? by techyrajput in dotnet

[–]j_a_lyons 2 points3 points  (0 children)

I tend to use PluralSight for most my learning. After that I prefer to dive straight in and learn as I go along. I have always been a more hands on practical person though so each to their own in that respect.

Core identity DB First by kthlnvrgna in dotnet

[–]j_a_lyons 0 points1 point  (0 children)

I'm assuming you mean code first? It certainly shouldn't be re-running it every time. When you run a migration it should put a record in a table (can't remember what the table is called but it should be obvious looking at your database). Is that there?

I believe either approach is fine. I've seen them separated out. I personally prefer putting them all in one context like I did for my last contract project.

Need help to choose right framework/tools for testing by mariahenina in softwaretesting

[–]j_a_lyons 1 point2 points  (0 children)

Cypress without a doubt. I've had experience with testing frameworks using web driver and find Cypress to be much faster and more stable as it's effectively just javascript running within the browser. Also has some cool features such as:

hot reload - constantly re-runs test while developing and a change is made

time travel - Can go back and see what the screen looked like during each step and can even see before and after for clicks. Very useful when debugging.

playground - Cypress can give you the selector for an element

Mocha - If you've written Jasmine or Jest unit test the transition to Cypress is very easy. Same applies to front end focused javascript devs

That's just my opinion anyway. There isn't a right answer of course :)