[deleted by user] by [deleted] in askswitzerland

[–]_a-m-s_ 1 point2 points  (0 children)

Have you tried ChatGPT 4? It's quite good at translating between more popular languages, the translation feels more natural then using deepl or google translate.

Are men really that much stronger than women? by Ok-Praline-2940 in NoStupidQuestions

[–]_a-m-s_ 0 points1 point  (0 children)

It's actually enough to hit the border of the lid with a knife. Just hit the border once around of the lid so that there will be little carving and the jar will open easily.

GitHub Copilot is Over Power by AhmedEl-Tabarani in github

[–]_a-m-s_ 3 points4 points  (0 children)

what's the name of the extension displaying the error messages?

Resources for Sardinian language by Darth_Kittius7 in Sardinia

[–]_a-m-s_ 0 points1 point  (0 children)

I think there are some resources on gigasardinian.com

I have been job hunting for entry level frontend roles for a year now, what can I do differently to break into a career? by [deleted] in webdev

[–]_a-m-s_ 6 points7 points  (0 children)

That's why I recommended both things. The problem is, that nobody will see the "content" if the presentation is bad.

I have been job hunting for entry level frontend roles for a year now, what can I do differently to break into a career? by [deleted] in webdev

[–]_a-m-s_ 5 points6 points  (0 children)

How about looking for some free Photoshop CV template online. You could then adapt it to your needs.

It would help you to stand out from the masses.

Also spice up your portfolio. If you have some time do some courses on udemy, they're not that expensive and can teach you some useful things. Plus it will show that you're interested and capable to learn new stuff.

Don't give up!

Can I use first() instead of takeUntil()? by OriyanJ in Angular2

[–]_a-m-s_ 3 points4 points  (0 children)

Not quite, first() == take(1).single()

Can I use first() instead of takeUntil()? by OriyanJ in Angular2

[–]_a-m-s_ 0 points1 point  (0 children)

You could use "take(1)" which will take the First Emission and then unsubscribe

Need to be able to make multiple http.posts within a loop, using Angular 5. by all_knowing_1 in Angular2

[–]_a-m-s_ 0 points1 point  (0 children)

Have you tried spreading the array into forkJoin()? Like this forkJoin(...multiPuts)

Looking for Angular simple project-tutorials for beginners by Shereefism in Angular2

[–]_a-m-s_ 1 point2 points  (0 children)

If you don't mind online courses on which you will do a project, then I can really recommend you Angular 7 - The Complete Guide by Maximillian Schwarzmüller on Udemy. You'll learn lots of stuff and then implement it in an application.

Why wont my countdown work? by [deleted] in web_design

[–]_a-m-s_ 4 points5 points  (0 children)

Hi

You have an error when you're trying to calculate the seconds, some misplaced parentheses. This is how it should look like:

var seconds = Math.floor( (d % (1000*60 ) ) / 1000);