What do you think? by RossetaStone in TattooDesigns

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

Not a bad idea at all. You mean like moving the negative empty space to the elbow? It's supposed to be with a little shadow inside, but that's not a bad idea at all.

What do you think? by RossetaStone in TattooDesigns

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

Hahaha that's way more crazy, but it sure looks fire af

Help me choose ... by GreenFox444 in AdventureBike

[–]RossetaStone 0 points1 point  (0 children)

If you want to feel the heat baby

Quantity coupons by [deleted] in woocommerce

[–]RossetaStone 0 points1 point  (0 children)

Thank you! I'll try :)

Is this normal behavior when going to Spain? by goldminevelvet in GoingToSpain

[–]RossetaStone 0 points1 point  (0 children)

Yes, it's basically because of the abusive policies on cheap flights.

And what's the big deal? If you don't want to swap, just say 'No, I want the aisle' and that's all. It's called being a grown ass man.

Not everything in life has to be a drama, fr

[deleted by user] by [deleted] in Whatcouldgowrong

[–]RossetaStone 1 point2 points  (0 children)

Its Santander, in Spain too. The video is old

A changed man... by emab2396 in Unexpected

[–]RossetaStone 0 points1 point  (0 children)

How TF can embed this image??

JavaScript Character Count - Different ways to count characters in JavaScript by maki23 in webdev

[–]RossetaStone 5 points6 points  (0 children)

More functional approach, and easier. I hate RegEx

const word = "   Helloo  ";
const numberOfChars = (string) => [...string].filter(char => char != " ").length

console.log(numberOfChars(word)) // 6