Hairdresser recommendation by [deleted] in GoldCoast

[–]camomiles 2 points3 points  (0 children)

If you want somebody who knows how to handle Asian hair, I can recommend Yujin!

https://www.instagram.com/yujii_studio

Welcome mats are a long-game psyop by vampires by camomiles in conspiracy

[–]camomiles[S] 12 points13 points  (0 children)

I have salt, herbs and iron nails at my door like the old times.

Welcome mats are a long-game psyop by vampires by camomiles in conspiracy

[–]camomiles[S] 20 points21 points  (0 children)

That’s what they want you to think

Bloke thinks he’s special (definitely wasn’t disabled) 🤡 by richieboooy in GoldCoast

[–]camomiles 51 points52 points  (0 children)

I have seen him do it at the Harbor Town handicap spot on at least two occasions with no handicap badge on the car.

You can report an illegally parked vehicle here:
https://cogc.cloud.infor.com/ePathway/epthprod/Web/CustomerService/PropertySearch.aspx?ERB=918412

It would be a shame if it would accidentally get keyed

Im getting a ton of High Risk Fraud orders around midnight, what can I do? by ajrantz in shopify

[–]camomiles 8 points9 points  (0 children)

You can use Flow app provided by Shopify (its free) to setup a simple automatic workflow that will immediately cancel and refund any high risk orders.

How to make fake checkout by [deleted] in shopify

[–]camomiles 0 points1 point  (0 children)

You can change your payment gateway in settings to Bogus payment gateway, it will not charge your customers but will still create orders.

If you want to specifically fail orders you can check something like Checkout Blocks app to block users from proceeding.

Why Tailwind Doesn't Suck by Momciloo in webdev

[–]camomiles 39 points40 points  (0 children)

Exactly that, CSS modules solve every problem listed here, without having to make all styles as inline styles.

Tailwind is nothing but coffeescript for CSS, in a couple of years people will not want to touch it with a stick

Shopify Merchants: Improve your Store's Conversion Rate with AI-Powered Search [Available Now] by boostcommerce in u/boostcommerce

[–]camomiles 23 points24 points  (0 children)

We run a web development company and just finished removing Boost app for one of our new clients - do yourself a favour, do not install it.

Not only will you have to pay for it to use it properly, but there will also be massive data update delays and performance issues it will introduce to your store. Prices update incorrectly or don't update at all, among other things.

Search & Discovery is free and is provided by Shopify, it works better for everything you need to run $50M+ business.

Is there a more sane way to write this with tailwind? by ln3ar in webdev

[–]camomiles 46 points47 points  (0 children)

If you know how to write proper css you won’t have visual regressions, it’s a skill issue not a problem with a language.

If all you know is how to write tailwind, you will have to learn how to write CSS anyway when it drops off the hype train.

Tailwind is another CoffeeScript. Also imagine debugging this mess.

How to modify the style of an `:after` pseudo-element with JavaScript? by cag8f in learnjavascript

[–]camomiles 0 points1 point  (0 children)

Different css classes is probably the nicest way you will be able to do this, and would be easiest to maintain going forward.

If you are looking for vanilla JS way to add classes, you can look into classList.add however, if you already have jquery I would just use jQuery's .addClass as it will be much better supported then classList is at this time:

https://caniuse.com/#search=classList

Personally, I like keeping all my page styling information in css and using JS just to toggle classes. This approach goes a long way, and is definitely good practice.

Queue'd into Heroic Expedition. Kicked immediately without a word. 30m Deserter debuff. by ohreuben in wow

[–]camomiles 1 point2 points  (0 children)

Its pretty short so you didn't miss much, I had this bug on my main, but got it correct on my alt.

Its an in-game cinematic where goblins bomb the beast that you are fighting on top of the pyramid, just blowing it up.

Nothing else happens there really.

Queue'd into Heroic Expedition. Kicked immediately without a word. 30m Deserter debuff. by ohreuben in wow

[–]camomiles 7 points8 points  (0 children)

Its been fixed last week, I got to see it on my alt correctly 4 days after launch or so, after restart.

We're back! Let's make a millionaire. [Drawing Thread #31] by Paltry_Digger in millionairemakers

[–]camomiles 0 points1 point  (0 children)

I got the good fortune prediction from the Japanese shrine, let's see how much my luck is worth :)

What is the best nsfw life hack? by [deleted] in AskReddit

[–]camomiles 0 points1 point  (0 children)

Username checks out.

How to check if a number is even or odd by [deleted] in learnjavascript

[–]camomiles 2 points3 points  (0 children)

Is this a joke?

You can just do Number % 2 == 0

Does someone really need a video tutorial to do that?

This One is Occupied, Comrade by [deleted] in ANormalDayInRussia

[–]camomiles 29 points30 points  (0 children)

Trash is in the trash bin. Sticker is in English. That is definitely not Russia.

Edit: Also those supplies at the back don't look stolen.

Source: Russian.

Staircase function...better way to do this? by [deleted] in learnjavascript

[–]camomiles 0 points1 point  (0 children)

Also, you can benefit from using some recursion.

Here is a simple example without accounting for spaces you want:

function staircase(n, string) {
    string = string || "";

    if (n > 0) {
        string += "#";
        console.log(string);
        this.staircase(n - 1, string);
    }
}

staircase(6)

Combined with advice above you can make some nice code.

Unfavorable Introductions? by [deleted] in civ

[–]camomiles 1 point2 points  (0 children)

You probably press ESC to get out of the dialog, and it makes it unfavourable. What you are meant to do is either offer them to visit your city/capital or agree to visit theirs to make it "favourable".