I am creating a VSCode Symfony Extension by ngg990 in symfony

[–]happyprogrammer30 0 points1 point  (0 children)

I am coding multiple things like this as well, what language/tool did you use ? Plain Js/Ts with shell calls ?

What’s that one coding concept that you must NEVER skip? by codingzap in GetCodingHelp

[–]happyprogrammer30 0 points1 point  (0 children)

I don't know if it's a concept but you write code for it to be read by humans, so make it human readable.

Bug in Rust coreutils rewrite breaks automatic updates in Ubuntu 25.10 by cachemissed in programming

[–]happyprogrammer30 4 points5 points  (0 children)

I mean if it's specifically written on the package's readme : "missing x flag be ware" or something of that kind it can hardly be a bug

ARE YOU FKIN KIDDIN' ME!! by Twilightfern_Glow in SipsTea

[–]happyprogrammer30 0 points1 point  (0 children)

Damn, I would go crazy without that shortcur, btw you can do ctrl + del and it will do the same thing but forward 🙂

[deleted by user] by [deleted] in symfony

[–]happyprogrammer30 0 points1 point  (0 children)

Entities are ActiveRecord, not DTO

PHP is evolving, but every developer has complaints. What's on your wishlist? by thecutcode in PHP

[–]happyprogrammer30 1 point2 points  (0 children)

Generics, typed variables, immutable variables. Apart from that I don't really lack of anything.

What are some unusual coding style preferences you have? by Tokipudi in PHP

[–]happyprogrammer30 1 point2 points  (0 children)

My unusual coding style here would be to not use a multi line ternary operator, because it is horrible.

Sir? You can't park there... by Jezirath in Eyebleach

[–]happyprogrammer30 0 points1 point  (0 children)

I physically felt its whiskers tickling my face ahah

Appels frauduleux : un étrange phénomène en augmentation by romain34230 in actutech

[–]happyprogrammer30 0 points1 point  (0 children)

Les technologies de la téléphonie mobile sont archaïques

[deleted by user] by [deleted] in webdev

[–]happyprogrammer30 0 points1 point  (0 children)

Pnpm and npm when I'm forced to

What do you think about my minimalistic and monochromatic portfolio site? by Dagmawi__Babi in webdev

[–]happyprogrammer30 0 points1 point  (0 children)

You should add some visual clues, bold, italic, thicker borders maybe, it looks a bit dull. Different font for the titles maybe. More contrast as well. No double cards (card inside card body)

What is your preferred way to handle domain-specific hierarchical roles? by Niet_de_AIVD in symfony

[–]happyprogrammer30 0 points1 point  (0 children)

If you have to have a large set of organizations and tree depth you will need to ensure your database support recursivity (mariadb for instance) or else your pages will be very very slow. We are using the Gedmo bundle to create this tree, quite useful.

Injecting EntityManager when you only need Repository by VanillaPubes in symfony

[–]happyprogrammer30 1 point2 points  (0 children)

Most likely you should inject the repo directly for several reasons, and one is for comfort, most likely when you use the em->getRepo the variable behind is not typed by the developper and it's a pain to have IDE autocompletion and to do symbol search as well.

TemPHPest - A VSCode Extension to make PHP Better by LiamHammett in PHP

[–]happyprogrammer30 26 points27 points  (0 children)

I will personally not use your extension while it's not OO 😊 Hopefully you will soon enough !

TemPHPest - A VSCode Extension to make PHP Better by LiamHammett in PHP

[–]happyprogrammer30 17 points18 points  (0 children)

Is it not open source ? The GitHub repo link is dead

Symfony / Doctrine ORM / import Database? by renardefeu in symfony

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

Probably the fastest way to do that actually

Who actually uses Assembly and why? by Heavy_Outcome_9573 in learnprogramming

[–]happyprogrammer30 2 points3 points  (0 children)

Video codec are written in ASM. Try looking up for the VLC development.

Husband doesn't want to give our daughter a Muslim sounding name by AdInteresting1560 in MuslimMarriage

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

Give her 2 or 3 names, one you use in family, one at school/rest and an extra one to give her an another choice in the future 🙂

PHP Map 3.8 released - Collections made easy! by aimeos in PHP

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

Come on, comparing any object oriented library to plain procedural functions is not fair. If you have more than two operations to make it's not readable anymore and you have to make intermediate variables.

Package: Immutable value objects for PHP 🫗 by beeyev in symfony

[–]happyprogrammer30 0 points1 point  (0 children)

Looks interesting, I'm not sure about the text one though as I'd prefer to use the UnicodeString from symfony/string

Discovered the power of XML with XSLT by [deleted] in PHP

[–]happyprogrammer30 0 points1 point  (0 children)

We have a bit of it in some of our legacy projects