Advertisement Β· 728 Γ— 90

Posts by Victor Gutt ✌️

Making A Browser Is Harder Than You Think (Ft Andreas Kling)
Making A Browser Is Harder Than You Think (Ft Andreas Kling) YouTube video by ThePrimeTime

"Luck is, preparedness meets opportunity"

ThePrimeagen dropping wisdom onto us

youtu.be/z1Eq0xlVs3g?...

1 year ago 1 0 0 0

"Input goals are better than output goals".

My take away from this episode πŸ‘Œ

youtu.be/eLWcJTUbcVw?...

1 year ago 0 0 0 0
Ideas for the Laravel Installer
Ideas for the Laravel Installer YouTube video by Liam Hammett

Yes!

youtu.be/rO6bn8GZs0M

1 year ago 0 0 0 0

I know right. Especially if it's supposed to be a gateway to your "personality" or something 😬

1 year ago 0 0 0 0
Preview
How to select your first marketing channel When you’re brand new, how do you select your first marketing channel?

Just published a new article! πŸ‘‡πŸΎ

When you're brand new, how do you select your first marketing channel?

Many thanks for spreading the love with ❀️ and πŸ”!

1 year ago 34 6 3 1

Finally properly putting up a proper website to show I'm a proper professional web developer πŸ‘€

1 year ago 2 0 1 0

Because we like pain, I'd suggest also adding in dark mode support

1 year ago 1 0 0 0
Advertisement
Preview
Larabelles Larabelles is a community for PHP and Laravel developers under-represented due to their gender.

From the recent Jetbrains survey:

"The survey’s gender distribution shows a striking lack of diversity, with the overwhelming majority of respondents identifying as male."

If you have the means to support Larabelles, I strongly urge you to do so: larabelles.com/support-us

1 year ago 36 19 1 0
Preview
Tailwind CSS v4.0 overhaul | From JS/TS to CSS by VicGUTT Β· Pull Request #2 Β· VicGUTT/tailwindcss-opinionated-preset

The Pull Request: github.com/VicGUTT/tail...

1 year ago 1 0 0 0
Going from JavaScript to plain CSS allows this Tailwind opinionated presets package to significantly cut down on lines of codes and files.

Going from JavaScript to plain CSS allows this Tailwind opinionated presets package to significantly cut down on lines of codes and files.

Writing a @tailwindcss.com v4.0 package be like:

1 year ago 1 0 1 0
New JavaScript Set Methods
const set1 = new Set(['wes', 'kait']);
const set2 = new Set(['wes', 'scott']);
Difference
Elements in set2 but not in set1
set2.difference(set1)
> ['scott']
Intersection
Elements that exist in both sets
set1.intersection(set2)
> ['wes']
Symmetric Difference
Elements in either set, but not both
set1.symmetricDifference(set2)
> ['kait', 'scott']
Union
All elements from both sets
set1.union(set2)
> ['wes', 'kait', 'scott']
Is Disjoint From
True if sets share no elements
set1.isDisjointFrom(set2)
> false
Is Subset Of
True if all elements are in other set
set1.isSubsetOf(set2)
> false
Is Superset Of
True if it contains all other's elements
set1.isSupersetOf(set2)
> false

New JavaScript Set Methods const set1 = new Set(['wes', 'kait']); const set2 = new Set(['wes', 'scott']); Difference Elements in set2 but not in set1 set2.difference(set1) > ['scott'] Intersection Elements that exist in both sets set1.intersection(set2) > ['wes'] Symmetric Difference Elements in either set, but not both set1.symmetricDifference(set2) > ['kait', 'scott'] Union All elements from both sets set1.union(set2) > ['wes', 'kait', 'scott'] Is Disjoint From True if sets share no elements set1.isDisjointFrom(set2) > false Is Subset Of True if all elements are in other set set1.isSubsetOf(set2) > false Is Superset Of True if it contains all other's elements set1.isSupersetOf(set2) > false

You should be using JavaScript sets more often

Now in all browsers and Node - these 7 new set methods are key for when trying to compare two arrays or sets of data.

1 year ago 1607 149 51 11

Totally understandable, no worries. Happy new year πŸŽ‰

Exactly. A change of scenery. No matter how radical it is, can do wonders for the mind. Couldn't have said it better πŸ‘Œ

1 year ago 0 0 0 0

Be biased towards shipping.

It's just too common of a story β€” took a long time to build the "perfect" thing, then people didn't want the thing after all. Months β€” years β€” wasted.

That said…

I also think there's a lot of knee-jerk advice of "just ship it."

(1/4)

1 year ago 21 4 2 0

Also, seing things that are portrayed to be absolute are really so depending on some context (trends, politics, etc...) which makes then not absolute at all which then leads to questioning and re-evaluating everything.

2/2

1 year ago 2 0 0 0

Agreed. Came mainly from within, secondly from people, thirdly from a cultural and world point of view change being from HaΓ―ti moving to Germany than France.

1/2

1 year ago 0 0 1 0

I only know how to be me.

The "me" is know reflected in everything I do, either professional or personal, unless a good and thorough reason given as to why that shouldn't be or be changed.

2/2

1 year ago 0 0 0 0

It took me someone, one day, simply asking: "Who is `you`" to start a chain reaction of thoughts in hopes to one day answer the question.

Now many years later, I'm comfortable saying I am someone who lives and lets live, thrives in being and letting others be, regardless of the subject.

1/2

1 year ago 0 0 1 0
Advertisement

Love everything you said ✌️

1 year ago 1 0 0 0

In case the timestamp doesn't work or whatever ever, it's at 59:38

1 year ago 1 0 0 0
63: Unreliable Narrator
63: Unreliable Narrator YouTube video by Mostly Technical

For posterity, it's revealed here : youtu.be/1HN0dAhs1zI?....

Gonna check the app out myself

1 year ago 1 0 1 0

Niiiiiice πŸ‘Œ

1 year ago 0 0 0 0

Everything above! πŸ‘

1 year ago 2 0 0 0

Sounds like a bookmark mixed with notes app? πŸ€”
But linked to your BlueSky?

1 year ago 4 0 0 0

That's what I use soooo, I can attest to it's usefulness 😊

1 year ago 1 0 0 0
Advertisement

Agreed. To simplify things and because I have no kids I like to account for just one person. But of course there is more to account for.

Kids, and relatives to help out definitely changes the amount the FU money needs to be. And I'd say 10M would be it for me too.

1 year ago 2 0 0 0

A spreadsheet?

1 year ago 2 0 1 0

Curious as to what makes you think that?

I find the "why" behind the number much more interesting than the actual number.

Also makes the number adaptable per person

1 year ago 0 0 1 0

Good points

1 year ago 0 0 0 0

I shall than get into it aha.

Thanks for the exchange :)

1 year ago 1 0 1 0