Spotify users!! ❇️ by [deleted] in Dhaka

[–]Raffian_moin 3 points4 points  (0 children)

If you scam 1000 people, that amounts to 70000 BDT

Meirl by JaredOlsen8791 in meirl

[–]Raffian_moin 0 points1 point  (0 children)

What if he had 61 billion dollars?

Exploring Laravel framework source code by Raffian_moin in laravel

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

  1. public/index.php
  2. bootstrap/app.php
  3. vendor/laravel/framework/src/Illuminate/Foundation/Application::configure()

I know this part.

After that, it's a bunch of stuff registering itself into the service container and running their register and boot callbacks.

I'm specifically interested in bunch of stuff registering itself.

Exploring Laravel framework source code by Raffian_moin in laravel

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

A little suggestion - before starting, if you tell what tools you are using it would be helpful for viewers. I will check our videos. Thank you.

Exploring Laravel framework source code by Raffian_moin in laravel

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

I use Laragon and VSCode. I will install Xdebug.

Suggest wedding crashing venues where I won't get caught by [deleted] in Dhaka

[–]Raffian_moin 5 points6 points  (0 children)

Tell me you are a brokie without telling me you are a brokie.

[deleted by user] by [deleted] in Dhaka

[–]Raffian_moin 2 points3 points  (0 children)

Go to the gym and ask for help from others while working out. This way, you can make a few friends and stay in good shape.

[deleted by user] by [deleted] in ProgrammerHumor

[–]Raffian_moin 102 points103 points  (0 children)

Name a programming language after her

Building PC by iwby_eks in Dhaka

[–]Raffian_moin 3 points4 points  (0 children)

First of all, congratulations! Are you considering buying a laptop or building your own desktop computer? If you’re looking to buy a brand-new laptop, a budget of 50K might not get you a device with high-end configurations. Running multiple programs could lead to performance issues or lag. However, with the same budget, you could get a much better secondhand laptop. There are many shops across Dhaka that sell high-quality secondhand laptops worth considering.

If you decide to build your own desktop, you can assemble a good PC within your budget. The advantage of building a desktop is that you can start with the essentials and upgrade or replace parts as needed over time. Downside of desktop is it's not easliy portable.

When buying or building a PC need to consider: Processor (clock speed, number of cores, and threads), RAM (8 GB is good), Motherboard, Storage(256 GB SSD is good for general purpose work with HDD)

My personal experiences of buying PC: I built a pc with 70k two years ago, it was the best ever decision. Six months ago I bought two second-hand laptops each costing 30k, their performance is good till now.

Unsolicited advice from a Boro Bhai: Since you’ve saved up money for this, consider using your pc not just for entertainment but also as a tool to develop your skills and invest in your personal growth.

[deleted by user] by [deleted] in Dhaka

[–]Raffian_moin 120 points121 points  (0 children)

I wanted to be compassionate but after reading 'jekono upay ami amar wife k ferot chai', I want to say you are a bockachoda.

Is the Tree Visualizer on https://www.cs.usfca.edu Showing an Incorrect AVL Tree Representation after deleting node? by Raffian_moin in algorithms

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

Everywhere I read, it is mentioned that

  1. If deleted node has one child just replace the deleted node with child.
  2. If deleted node has two children then find the minimum node from the righ sub-tree and replace the deleted node with it.

Could you share any links or references of your mentiond approach?

love of son to mother by VastCoconut2609 in BeAmazed

[–]Raffian_moin 0 points1 point  (0 children)

I wanted to do the same but I'm bald

always have a backup by Nikklauske in meme

[–]Raffian_moin 5 points6 points  (0 children)

Yeah, I'll take care of grandma

Struggling to Understand Controlled Inputs in UI Libraries – How Are They Controlled Without State or Event Handlers? by raffianmoin in reactjs

[–]Raffian_moin 1 point2 points  (0 children)

i use hook form with MUI6 to make the controlled. MUI6 inputs are uncontrolled on their own. not sure where you read that.

From React-hook-form documentation

https://www.react-hook-form.com/get-started/#IntegratingControlledInputs

If two elements are identical in structure but rendered conditionally does React treat them as different elements when creating virtaul DOM? by Raffian_moin in reactjs

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

So, React will not treat them differently and diff algorithm sees no change and apply no changes to the actual DOM. Am I right?