Viewing profile — LectronPusher
LectronPusher
HN member- Joined
- Thu, Jul 06, 2023, 1:45 PM UTC
- HN karma
- 61
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About LectronPusher
No profile information was provided.
Recent public activity
-
comment
Comment #42425248
You would likely be interested in Jamie Brandon's work on the Zest language [1] which has planned "lax", "strict", and "kernel" modes for varying levels of performance/safety [1]: …
-
comment
Comment #41833060
Adding a font is just `#set text(font: "besley")` or you can use a list for fallback like `#set text(font: ("jost", "noto sans")`. Then you can select weight, italic/bold, opentype…
-
comment
Comment #40593965
I'm actually currently doing some research on operator precedence and syntax, so it's fun to see such a relevant post! One of my favorite syntaxes for custom operators comes from A…
-
comment
Comment #40441238
I haven't seen a mention of the Oil Shell ( https://oilshell.org ) project's OSH/YSH yet and I'm quite surprised. Oils goal is that OSH is just a new Bash implementation (although …
-
comment
Comment #40079967
Link seems broken?
-
comment
Comment #39663836
The pareto optimal essay?
-
comment
Comment #39559398
I liked a quote from a No Boilerplate video [0] noting how some of the most commonly used Rust libraries hadn't had any git commits in multiple years: "They're not abandoned, they'…
-
comment
Comment #39438250
I initially took the title as asking why diamonds or sapphire are harder than uglier rocks. Guess I'll need to find that link myself ;)
-
comment
Comment #39305328
This is also the reason behind the name XKCD
-
comment
Comment #39263334
I agree with other commenters that paper and pencil are the way to go for true learning, but the other week I left my notebook at home for a lecture, and was able to keep good note…
-
comment
Comment #38975177
This is a major plot point of the book A Beautifully Foolish Endeavor, sequel to An Absolutely Remarkable Thing. The main antagonist uses high quality VR to trick the brain into fu…
-
comment
Comment #38767747
A vector is a position in a dimensional space. In 2D space a vector is a point (x, y) like (1, 3) or (-2.5, 7.39). We can also do simple math on vectors like addition: (1, 3) + (2,…
-
comment
Comment #38653221
I used the same type of deck in Yu-Gi-Oh a few years ago. Something with fusion summoning elemental heroes which banished everything before bringing everything back. Wasn't all tha…
-
comment
Comment #38637098
Reading these comments is starting to feel like an https://xkcd.com/2304/ situation.
-
comment
Comment #38592179
My first thought when seeing the screenshot was that it feels like it should just be a vscode extension.
-
comment
Comment #38541477
It works over wifi, but you might be interested in KDE Connect [1]. It can do clipboard, remote input, file sending, command running, etc. on Windows and Linux. [1] https://kdeconn…
-
comment
Comment #38514267
What are your thoughts on the prql language?
-
comment
Comment #38363725
My university has an infamous project of implementing Euchre (another trick-taking game) in C++ in one of the early programming courses. It's a nice fundamental problem for dealing…
-
comment
Comment #37393469
I'm quite unsure of myself here and might be mistaken, but there's also the chomskyist argument that much of the structure of human language is derived from the structure of our br…
-
comment
Comment #36808491
I assume to stop one dedicated person doing too much of the image. The novelty here is the community aspect.
-
comment
Comment #36803863
This was fun, I forget sometimes how silly all our grade school math worksheets used to be. I always had trouble showing my work for simple additions and multiplication, it's a bit…
-
comment
Comment #36615659
Is this not a form of mutation testing? With the added idea of treating anything you write to sanity-check the output as a test?