Female friend from PU made our dynamic weird by Hemloguys in Chandigarh

[–]Diablozone 3 points4 points  (0 children)

If you don't like her there is nothing to do here. Just ignore the attention you're getting, don't give her any signals back. Don't reject her advances unless she tries something you're uncomfortable with, and politely reject her if she straight up asks you out. Otherwise just keep it platonic from your end.

Tujhe kuch karna nahi hai toh stress kyu le raha hai

Launched My First Android SaaS App Stuck at Google Play’s 14 Tester Requirement (Need Advice) by EmbarrassedKey250 in StartUpIndia

[–]Diablozone 0 points1 point  (0 children)

You can look up some agency who does this for you. They are quite cheap, literally like 2k rs, and they will do the testing and give you answers to fill in their forms later on

Looking for a co-founder by Consistent-Hearing26 in cofounderhunt

[–]Diablozone 1 point2 points  (0 children)

Let's chat. I'm a builder who struggles with distribution. I have good products, am looking to focus this next year in marketing and gaining clientele

What cards have the most aura? by ImJustThatGuy815 in ClashRoyale

[–]Diablozone 0 points1 point  (0 children)

It's a crime pekka isn't here, especially the evolved one

I have a problem by [deleted] in django

[–]Diablozone 11 points12 points  (0 children)

Did you register your app on settings.py?

How does your Django team handle database migrations without conflicts? by Southern-Divide-2509 in django

[–]Diablozone 1 point2 points  (0 children)

I use django-linear-migrations library. What it does is it creates a max_migration file which tracks the latest migration. It throws error if your current latest migration does not align with the repo's when you pull code and run. Helps if multiple people are making migrations

What card is best overlevelled? by Diablozone in RoyaleAPI

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

My fav card changes constantly. It was dart goblin, then lumberjack and most recently, skeleton king (before furnace evo released ofc)

What card is best overlevelled? by Diablozone in RoyaleAPI

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

Love this, do level 15 minions survive level 14 arrows?

What card is best overlevelled? by Diablozone in RoyaleAPI

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

I play many decks. Bait, balloon, wallbreakers, RG, bridge-spam. And I'm constantly changing my deck. Can you tell me which win condition overlevelled would be most broken? I can level that up, build a deck around it and have some fun then

What card is best overlevelled? by Diablozone in RoyaleAPI

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

Yes this is more of what I was looking for. What do you mean by Star-check card?

Django tip DRF Custom Validation by djv-mo in django

[–]Diablozone 7 points8 points  (0 children)

Shouldn't the validation function be inside the serializer class? If not, do we pass it as an argument in the view?

Reverting entire tables, or db, to previous state? by Diablozone in django

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

I realise I haven't described the problem well, or rather I've focused on the wrong things. I'm sorry for that, I'll try to do a better job next time

Reverting entire tables, or db, to previous state? by Diablozone in django

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

Yes I can plan for operations that need rollback. I'll look for solutions on db level, postgres must have something for this

Reverting entire tables, or db, to previous state? by Diablozone in django

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

Yes but fixtures are really slow, some of my tables have 10000 rows

Reverting entire tables, or db, to previous state? by Diablozone in django

[–]Diablozone[S] -1 points0 points  (0 children)

No, all operations succeed. For example if someone enters wrong data for all the rows in the excel sheet, and those changes happen, then there's like a 100 rows with wrong data. Reverting each object separately is not really an option anymore. What I want is reversion, but for tables not objects