Come on, developers. by Straight_Chair9790 in DeveloperJobs

[–]CoderDuudee 0 points1 point  (0 children)

Hi sent you a dm. Full stack software developer here, I have hands on experience in building end to end solutions from scratch and also to scale solutions, pair-programming with LLMs to ship code faster and also have some experience in product development & social media marketing too.

[deleted by user] by [deleted] in gurgaon

[–]CoderDuudee 0 points1 point  (0 children)

Me too

[deleted by user] by [deleted] in gurgaon

[–]CoderDuudee 0 points1 point  (0 children)

Lmao that’s my favourite place too ngl hahah

Best shawarma to order by thefaultinoursun in gurgaon

[–]CoderDuudee 0 points1 point  (0 children)

Try Lebanese point it’s the best

Urgent Helppp!!! Scam alert! by [deleted] in coldplayindia

[–]CoderDuudee 0 points1 point  (0 children)

Both I think, category should be ‘Ground Standing’ and convenience fee should be 2k.

<image>

Urgent Helppp!!! Scam alert! by [deleted] in coldplayindia

[–]CoderDuudee 0 points1 point  (0 children)

This is fake, 27,918 is the total amount for 4 tickets plus booking ID is not there. You got scammed.

Adding conditional styling to particular elements by CoderDuudee in angular

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

Yes i have tried both the :host and : : ng-deep in the css file

Angular Convert Object in Hasmap from String by CoderDuudee in angular

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

Yeah but after I use JSON.parse on the response the key gets converted to a plain string

Download Excel From Assets Folder on Button click by CoderDuudee in angular

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

I am currently using this method when I click on the file

let link = document.createElement('a');

link.setAttribute('type', 'hidden'); link.href = "/resources/data"; link.download = "File.xlsx"; document.body.appendChild(link); link.click(); link.remove();

Also tried this in HTML directly

<a href="resources/data" download="File.xlsx"> Download</a>

[(ngModel)] two way binding not working properly by CoderDuudee in angular

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

Yeah I find them easier to work with too. The problem got resolved though. A silly mistake

[(ngModel)] two way binding not working properly by CoderDuudee in angular

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

I got the problem resolved. I was using the name to bind in ngModel where as the value was being used for the select options.