• 0 Posts
  • 25 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle







  • For most religious people, religion is a way to be a better person and live a better life.

    Let’s say you struggle with anger issues? How do you deal with it?

    Religions have thousands of years of lessons about anger. Churches will have entire support groups built around helping with anger. You’ll often get sermons about anger. Ways to deal with it. Why it happens. Benefits of not giving into anger etc.

    If you have a slip up with anger, religions have ways of handling it and helping you grow.

    Probably the most visible thing is addiction. Churches have helped soooo many people deal with addiction who otherwise might be dead by now.

    Religion is not for everyone, but there are certainly lots of people who feel they are better off because of it











  • It’s going to be hard to explain to a new person.

    Typescript is a subset of Javascript. All typescript compiles to Javascript.

    There are large class of bugs/faulty logic that occurs in code, you might have noticed this with Javascript if you add the string/text to an integer, something like “5”+1, returns “51”.

    It might not behave how you would expect. Maybe the dev was lazy or tired and forgot to convert the string to an integer.

    Typescript runs some logic checking on the code to make sure we catch these bugs before they make it to a website and cause real problems for users.

    Generally learning either of them is fine, typescript might be harder at first since you need to compile it to Javascript. And there probably are more resources for Javascript as well.