devscriptt's profile picture. senior BACKEND PHP - Laravel / Symfony | javascript | VueJs |
@tailwindcss  @LaravelLivewire  Lover

Elmarzougui Abdelghafour

@devscriptt

senior BACKEND PHP - Laravel / Symfony | javascript | VueJs | @tailwindcss @LaravelLivewire Lover

Elmarzougui Abdelghafour さんがリポスト

Career tip. Wanna get more senior with Laravel? Master one feature: QUEUES. Almost all serious projects need them. Think about Forge, Cloud, or Nightwatch. - Server provisioning - Deployments - Email alerts - Custom reports - ... ^ Those are all queued jobs. So, you need to…

PovilasKorop's tweet image. Career tip.
Wanna get more senior with Laravel?

Master one feature:
QUEUES.

Almost all serious projects need them.

Think about Forge, Cloud, or Nightwatch.
- Server provisioning
- Deployments
- Email alerts
- Custom reports
- ...

^ Those are all queued jobs.

So, you need to…

Elmarzougui Abdelghafour さんがリポスト

Laravel Tip 🚀 Have you ever needed to rename a column in production, but got confused on how to do it without creating issues? With this example, you'll be able to do it while having Zero-downtime by applying: Dual-write + backfill + swap. Check the example to learn how! 🔥

wendell_adriel's tweet image. Laravel Tip 🚀

Have you ever needed to rename a column in production, but got confused on how to do it without creating issues?

With this example, you'll be able to do it while having Zero-downtime by applying: Dual-write + backfill + swap.

Check the example to learn how! 🔥

Elmarzougui Abdelghafour さんがリポスト

This is madness. What are we doing!

shadcn's tweet image. This is madness. What are we doing!

Elmarzougui Abdelghafour さんがリポスト

Claude Code pro tip: Add CLAUDE.⁠md files to subdirectories This is the unsung hero of making CC less "dumb". Instead of one giant rule, each dir can have their own: /src/components/CLAUDE.⁠md /src/db/CLAUDE.⁠md Gives Claude more precise context and makes a HUGE difference


Elmarzougui Abdelghafour さんがリポスト

Ext4 vs XFS – Which Filesystem Should You Use Users running a Linux system hardly pay attention to the underlying filesystem. In fact, during the installation of Linux, there’s a tendency to often go with the default filesystem listed without exploring other available options.…

linuxopsys's tweet image. Ext4 vs XFS – Which Filesystem Should You Use

Users running a Linux system hardly pay attention to the underlying filesystem. In fact, during the installation of Linux, there’s a tendency to often go with the default filesystem listed without exploring other available options.…

Elmarzougui Abdelghafour さんがリポスト

LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS! LINUX USERS ARE NOT HACKERS!


Elmarzougui Abdelghafour さんがリポスト

Next.js middleware checking request auth


Elmarzougui Abdelghafour さんがリポスト

One way I'm using the new fluent URI helper in Laravel — adding fragments. Using concatenation to construct a URI can get really messy. With this helper, it's a lot clearer.

teamcodecourse's tweet image. One way I'm using the new fluent URI helper in Laravel — adding fragments.

Using concatenation to construct a URI can get really messy. With this helper, it's a lot clearer.

Elmarzougui Abdelghafour さんがリポスト

Hey Laravel Developers 👩‍💻 Spatie's Query Builder is an amazing package allowing us to add filters to our Rest APIs easily. I recommend trying this package if you haven't yet. A common use case for a filter that I have to build is filtering based on the slug of the related…

magadum_aniket's tweet image. Hey Laravel Developers 👩‍💻

Spatie's Query Builder is an amazing package allowing us to add filters to our Rest APIs easily.

I recommend trying this package if you haven't yet.

A common use case for a filter that I have to build is filtering based on the slug of the related…

Elmarzougui Abdelghafour さんがリポスト

Managing your own mail server? Or need to sign outgoing emails yourself using DKIM? - Listen for the `MessageSending` event - Sign the message using DkimSigner which is part of symfony/mailer that #Laravel depends on. Quite uncommon, but you'll value this when you need it 🧑‍🍳

_newtonjob's tweet image. Managing your own mail server? 

Or need to sign outgoing emails yourself using DKIM?

- Listen for the `MessageSending` event

- Sign the message using DkimSigner which is part of symfony/mailer that #Laravel depends on.

Quite uncommon, but you'll value this when you need it 🧑‍🍳

Elmarzougui Abdelghafour さんがリポスト

Today, we're launching a complete refresh of our introductory Livewire course. "Livewire 3 From Scratch" - 4 Hours of Content - 29 Episodes - 100% Free to All - Ready to watch right now! 📺 laracasts.com/series/livewir…


Elmarzougui Abdelghafour さんがリポスト

Hey Laravel Developers 👩‍💻 Eloquent ORM provides us with casting abilities that help improve the experience and readability of the code we write. A common example of casting which Eloquent comes with by default, is casting the created_at & updated_at attributes to Carbon…

magadum_aniket's tweet image. Hey Laravel Developers 👩‍💻

Eloquent ORM provides us with casting abilities that help improve the experience and readability of the code we write.

A common example of casting which Eloquent comes with by default, is casting the created_at & updated_at attributes to Carbon…

Elmarzougui Abdelghafour さんがリポスト

💡This is a simple service class. Lots of people overcomplicate it, but it's pretty easy. It helps you: - Simplifying your overcomplicated controllers - Extracting out reusable code They can be really useful in smaller projects. 🧵Keep Reading

mmartin_joo's tweet image. 💡This is a simple service class. Lots of people overcomplicate it, but it's pretty easy. 

It helps you:
- Simplifying your overcomplicated controllers
- Extracting out reusable code

They can be really useful in smaller projects.

🧵Keep Reading

Elmarzougui Abdelghafour さんがリポスト

FINALLY web browsers have a native dropdown!! - Hidden by default (no v-cloak/x-cloak or blip) - Light dismiss (click background to close) - Focuses back to button on close - It renders in the "top layer" so no z-index fuss and it won't get cut off by overflow: hidden

calebporzio's tweet image. FINALLY web browsers have a native dropdown!!

- Hidden by default (no v-cloak/x-cloak or blip)
- Light dismiss (click background to close)
- Focuses back to button on close
- It renders in the "top layer" so no z-index fuss and it won't get cut off by overflow: hidden

Elmarzougui Abdelghafour さんがリポスト

Laravel tip: Dynamically create and send a file for user download and automatically delete it afterwards using the `deleteFileAfterSend()` function. Check out an example from the Laravel Excel package here: github.com/SpartnerNL/Lar…

PovilasKorop's tweet image. Laravel tip: 

Dynamically create and send a file for user download and automatically delete it afterwards using the `deleteFileAfterSend()` function. 

Check out an example from the Laravel Excel package here: github.com/SpartnerNL/Lar…

Elmarzougui Abdelghafour さんがリポスト

Laravel Tip Found in the wild! You can use Blade to parse more than HTML! Someone just used it to generate a dynamic shell script having lots of conditionals. He moved the long text from a PHP object to a blade file. You can probably do the same for long text messages etc.

laravelbackpack's tweet image. Laravel Tip

Found in the wild! You can use Blade to parse more than HTML!

Someone just used it to generate a dynamic shell script having lots of conditionals. He moved the long text from a PHP object to a blade file.

You can probably do the same for long text messages etc.

Elmarzougui Abdelghafour さんがリポスト

𝗧𝗼𝗽 𝟭𝟬 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗮𝗹 𝗣𝗮𝘁𝘁𝗲𝗿𝗻𝘀 𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 𝗮𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 is the process of designing the structure and behavior of a software system, which includes making decisions about components, modules, interfaces, and the system's organization.…

milan_milanovic's tweet image. 𝗧𝗼𝗽 𝟭𝟬 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗮𝗹 𝗣𝗮𝘁𝘁𝗲𝗿𝗻𝘀

𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 𝗮𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 is the process of designing the structure and behavior of a software system, which includes making decisions about components, modules, interfaces, and the system's organization.…

Elmarzougui Abdelghafour さんがリポスト

Free resources to learn Linux & DevOps Linux →linuxjourney.com Bash →linuxopsys.com/?s=bash AWS →explore.skillbuilder.aws Azure →learn.microsoft.com DevOps →edx.org/learn/devops Docker →docker-curriculum.com Kubernetes →kubernetes.io


Elmarzougui Abdelghafour さんがリポスト

How does the Domain Name System work?

sysxplore's tweet image. How does the Domain Name System work?

Loading...

Something went wrong.


Something went wrong.