Viewing profile — sir_pepe
sir_pepe
HN member- Joined
- Fri, Sep 20, 2019, 1:28 PM UTC
- HN karma
- 107
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About sir_pepe
https://code.movie/
https://mastodon.social/@sir_pepe
https://bsky.app/profile/sirpepe.bsky.social
Recent public activity
- story
-
comment
Comment #46018591
It does not count as "easy" if the features don't stay disabled.
-
comment
Comment #44325710
Why not learn from past failures? Then everybody gets a great user experience, not only those of us who know how to set up a pi-hole. Everybody wins! Apart from the framework-indus…
- story
- story
-
comment
Comment #41376358
I actually tried to shoehorn AI into https://code.movie/ as an experiment once, but it only got unpredictable and of course extremely slow. Hand-tweaked magic numbers plus escape h…
- story
-
comment
Comment #41191671
The bigger ones do more out of the box! Most obviously, they include render functionality, which Ornament does not — you get to pick and choose your building blocks yourself.
- story
-
comment
Comment #40883206
My day job is all about doing presentations, so I obviously wrote my own slide software. It is a pure expression of my workflow, my requirements, and my idiosyncrasies and the way …
-
comment
Comment #40678628
Fortunately it is very easy to opt out of all of this. Nothing stops you from having a backed deliver HTML and then sprinkle some basic JS and CSS on top. In theory at least, in pr…
-
comment
Comment #40487947
The real problem in my experience is that people who consider themselves to be "real" developers don't care about CSS. I do a ton of code reviews and consulting for companies of al…
-
comment
Comment #40405543
Not true, member state's contributions are the largest "money maker": https://www.consilium.europa.eu/en/policies/financing-the-eu...
-
comment
Comment #40153843
When you want to pass an object to a web component without going through JSON or some other stringification procedure.
-
comment
Comment #39677282
Building your own proprietary frontend framework still counts as a framework in my mind. Like how a custom tailored suit is still a suit, just one that is, well, tailored to spec. …
-
comment
Comment #38002691
RE decorators in TypeScript: it is true that TS code does not have to live in classes... in general. But some APIs (eg those for custom elements) _do_ require classes, so one may e…
-
comment
Comment #31899439
Not really a "project", but TypeScript's own type definitions for the DOM are a great example. Eg. document.createElement returns different subtypes of HTMLElement depending on the…
-
comment
Comment #31899373
To try and limit one's use of operations on types, as suggested in the article, is not really great advice in my opinion. Sure, you would not want to actually implement and use a V…
-
comment
Comment #31178229
Not quite! If you have an attribute "onclick" and set the DOM property "onclick", the attribute value stays unchanged, but if you click, the function set by the property gets calle…
-
comment
Comment #31177503
The real fun comes when you consider the interactions between setting an event HTML attribute and the DOM property. If memory serves, setting the DOM property for eg. "onclick" to …
-
comment
Comment #30343603
If just being self-employed counts and raising the bottom line counts as "take off": I should have made my services much more expensive much sooner. I less than 40% percent of pote…
-
comment
Comment #28769775
After many years of following the JavaScript ecosystem, there's one thing I learned: most of the "many things" out there don't stay relevant for long. I personally make a conscious…
-
comment
Comment #27680928
getElementsByClassName and getElementsByTagName return live HTMLCollection objects that update when the DOM changes (or rather get re-computed when you access their contents follow…
- story
-
comment
Comment #24154842
As someone who wrote their last lines oh PHP in something like PHP 5, this list tickles my desire to take PHP for a spin again. Not only does the language appear to be much improve…