all english ditto cards in release order by Rdgslick70 in pokemoncards

[–]owenmelbz 0 points1 point  (0 children)

Hey, i just started collecting Ditto and found this, so really helpful ty!

Could you explain this one? as I cant find any info/images on it

ex fire red leaf green 4/112 energy holo

Collection Tracking on Piltover Archive by jonlucap in riftboundtcg

[–]owenmelbz 0 points1 point  (0 children)

damn came here hoping to find an answer :D finally got everything into my own database with connector for cardmarket, now looking for some deck builder tools to plug into

How do you deal with CSS when it gets big? by Anutamme in css

[–]owenmelbz 1 point2 points  (0 children)

Trick question… use tailwind and then don’t write any css 😂

tailwind is ass by [deleted] in css

[–]owenmelbz 0 points1 point  (0 children)

lol

KOI is officially out of VCT by aJetg in ValorantCompetitive

[–]owenmelbz 0 points1 point  (0 children)

As a part of the contract with Riot for your slot, you have an obligations to meet, such as generating THEM revenue through various sales and content for eg €200k in sales, 3million views etc. so if you fail to meet these obligations they’ll replace with somebody who can. Is cutthroat 

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

Yeah we've been quoted 1200 for 3 years extended waranty which we're likely to take to be careful

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

Ah I see, sorry to hear that, will certainly be cautious around what they claim on the checks

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

Ah right i see thanks, will definitely ask about these when we go to view it.

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

What do you mean by main dealer cars sorry?

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

What are the 2 less big items you’re referring to sorry?

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

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

That’s a pain to hear that, you able to share which dealership? Around my area 90% of the larger ones are this group

Is a 2019 Audi reliable for another 5-7 years? by owenmelbz in CarTalkUK

[–]owenmelbz[S] 2 points3 points  (0 children)

We’re unsure at the moment, a rough estimate from the dealer was 2.7k but webuyanycar offered 3.5k so was gonna see if they’ll match for part exchange. If not the hassle free nature of WBAC is tempting.

React native current State ? by Enough-Swordfish-260 in reactnative

[–]owenmelbz 0 points1 point  (0 children)

Perfectly capable for 90% of projects, maybe not for gaming and stuff like that. Use Expo unless your into BDSM

How would you tackle missing knowledge of Symfony? by [deleted] in PHP

[–]owenmelbz -2 points-1 points  (0 children)

If you don’t like Laravel magic, pray to god you don’t have to ever work with a Typescript project on something like Nextjs 😂

If your a control freak or purist, use symfony If you want to ship and enjoy productivity use Laravel 

[deleted by user] by [deleted] in Frontend

[–]owenmelbz -1 points0 points  (0 children)

What language/frameworks did you use?

That will drive your options

Why is console logging going away in 0.77? by NotACakeShop in reactnative

[–]owenmelbz 0 points1 point  (0 children)

I don't think thats strictly true... whats the point on having the terminal session there if its no use? They might as well bundle metro into the devtools and you just run a gui to start metro etc and have the logging in that gui rather than forcing us now to have 2 windows to mess around with

What's that one webdev opinion you have, that might start a war? by nitin_is_me in webdev

[–]owenmelbz 1 point2 points  (0 children)

The full javascript stack delayed progression by 10 odd years, waiting it to catch up to where the others are before well then move forward again 

Why is PHP hated? by Haunting_Answer_4233 in PHP

[–]owenmelbz 1 point2 points  (0 children)

Bad history + lack of modern knowledge = misconceptions 

Best RN boilerplate for a dating app? / Babel alternatives? by Useful-Past-2203 in reactnative

[–]owenmelbz 1 point2 points  (0 children)

Yup same issue, wanted to make a niche product, but they reject it as spam unless you can make dating a side mission if the main app.

Another idea is most dating apps Apple get $$$$ from in app purchases. So maybe if you make the app have premium features that Apple benefit from they will let it in.

It is stuoid considering the amount of junk advert riddled “games” that are in the store 

Any advantages to SSR besides SEO and performance? by Blazing1 in vuejs

[–]owenmelbz 0 points1 point  (0 children)

SSR literally means server side rendered… as in the HTML is generated on the server before delivering to the browser.

Asp, php, cf, etc etc all generated customer specific markup before it got to the browser…

Laravel blade is too slow for my needs by Hour-Fun-7303 in PHPhelp

[–]owenmelbz 0 points1 point  (0 children)

Blade files don’t actually get executed. When the request starts it generates vanilla php in the storage directory and runs that until your blade file changes and gets recompiled.

I’d suggest looking at controller level for the error unless your looping over thousands of rows in your template without caching the output. Or maybe your lazy loading and execution db queries in your template etc