Rukhsar Manzoor (@rukhsardev) 's Twitter Profile
Rukhsar Manzoor

@rukhsardev

Fullstack Web Developer, Machine Learning Student, Tweets on PHP, Laravel, React and VueJS.

ID: 1046354676625608704

calendar_today30-09-2018 11:02:50

770 Tweet

4,4K Followers

113 Following

Rukhsar Manzoor (@rukhsardev) 's Twitter Profile Photo

Thinking of building a Nuxt.js SaaS starter template, ai, auth, payments, admin panel, user roles, landing page & more. Would you use it? Vote below!

Rukhsar Manzoor (@rukhsardev) 's Twitter Profile Photo

🚨Friendly Reminder: Don’t let AI rot your brain. Think for yourself, stay curious, and use tech to grow, not zone out.

Rukhsar Manzoor (@rukhsardev) 's Twitter Profile Photo

Struggling with GPT-5 or Claude code? You’re likely overloading context. Keep it clean: 1 chat per feature, <50% context, only needed files Restart when quality dips. Clean context = production apps, not messy outputs.

Dries Vints (@driesvints) 's Twitter Profile Photo

🧵We had some terrible performance issues on Laravel.io until... just now. I managed to fix them by diving in deep and it's incredible to see how just the tiniest of fixes made the whole forum way faster. PR: github.com/laravelio/lara… Thread below 👇

Newton Job (@_newtonjob) 's Twitter Profile Photo

When writing commands, if you're going to write some info text to the terminal, what do you do? $this->info(...) right? But you can get a much better output if you instead use: $this->components->info(...) There's also error(), warn(), and a bunch of other nice methods as well.

When writing commands, if you're going to write some info text to the terminal, what do you do?
$this-&gt;info(...) right?

But you can get a much better output if you instead use:
$this-&gt;components-&gt;info(...)

There's also error(), warn(), and a bunch of other nice methods as well.
Rukhsar Manzoor (@rukhsardev) 's Twitter Profile Photo

🚨AI brain rot is real. Don’t let it dull your spark. Stay curious, question everything, and keep your mind sharp.

Wendell Adriel (@wendell_adriel) 's Twitter Profile Photo

Laravel Tip 🚀 Did you know about the pingOnSuccess() and pingOnFailure() methods when scheduling tasks on Laravel? They are pretty handy in many situations! In the example, after a nightly ETL completes, we can start a reindex job in another service by hitting its webhook, but

Laravel Tip 🚀

Did you know about the pingOnSuccess() and pingOnFailure() methods when scheduling tasks on Laravel? They are pretty handy in many situations!

In the example, after a nightly ETL completes, we can start a reindex job in another service by hitting its webhook, but