Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
pjtr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
pjtr
2y ago
Is "let-over-lambda" (variable capture / closure) not possible in F#? Is that not a form of implicit dependency injection?
2.
▲
by
pjtr
2y ago
This seems fine within a file, but isn't this problematic across files? Now the file order is significant, so not only is the Visual Studio XML project file is an essential part of the language semantics, you also can't organize y
3.
▲
by
pjtr
3y ago
Is there a specific reason why Windows is not supported?
4.
▲
by
pjtr
4y ago
I don't think Microsoft invented it: > On the CDC CYBER, an interlock register is available ... Operation of this interlock register is similar to TEST AND SET Concurrency in Operating Systems, October 1976 https://www.co
5.
▲
by
pjtr
6y ago
OBS is very good software, thanks for working on it! Recording the screen works much better than any other screen recording software I tried. For this use case the preview can be a bit confusing. If the resolution does not match (because of
6.
▲
by
pjtr
7y ago
A short article titled "Voxel Landscapes 2D and 3D By Scout/C-Lous" described most of the tricks, but I can't find the text anywhere. A similar article by the same author on another topic I found here https://
7.
▲
by
pjtr
7y ago
The one I remember was "voxel.pas by Steven H Don". A Delphi port survived here: http://tothpaul.free.fr/sources.php?dprgrp.voxel Searching for "voxel" in https://github.com/nickelsworth&
8.
▲
by
pjtr
7y ago
Even drawing front-to-back you don't need the y-buffer, if you switch the loops: for x ... for y ... Another trick I now remember was to interpolate the color values on such a y-segment, to reduce the pixelated look.
9.
▲
by
pjtr
7y ago
Same with leaning. Add one more line of code and tweak the draw call: var ylean = (input.leftright*(i/screenwidth-0.5) + 0.5) * screendata.canvas.height / 4; DrawVerticalLine(i, heightonscreen+ylean, hiddeny[i]+ylean, ma
10.
▲
by
pjtr
7y ago
There were also tricks to extend this simple rendering algorithm to allow limited rotations around the other two axes, to look up / down slightly (just move everything up / down; also implemented in the demo here) and to "lea
11.
▲
by
pjtr
7y ago
You are correct, thanks.
12.
▲
by
pjtr
7y ago
purge is a third-party extension; it removes untracked files as you wrote. But ~purge~ prune is also a command of the evolve extension, that is conceptually similar to strip, as GP wrote.
13.
▲
by
pjtr
7y ago
Fortunately "transplant" is just an old extension, so you can just forget entirely about it. "Graft" copies; "Rebase" moves. Alternatively just forget about graft also, and use "rebase --keep" to copy
14.
▲
by
pjtr
7y ago
I don't understand the reasons. What is the actual problem in this "even-odd problem"? How do all the other languages that have an equivalent function (Perl quotemeta, PHP preg_quote, Python re.escape, Ruby: Regexp.escape, Ja
15.
▲
by
pjtr
7y ago
And WORD 16 bits: https://docs.microsoft.com/en-us/openspecs/windows_protocols... (QWORD 64 bits)
16.
▲
by
pjtr
7y ago
Targhan maybe? https://archive.org/details/msdos_Targhan_1989
17.
▲
by
pjtr
7y ago
Are there options for machine local IPC over pipes in .NET Core?
18.
▲
by
pjtr
7y ago
"Python 3’s approach is unambiguously the worst one" No rationale for this seems to be included in the article.
19.
▲
by
pjtr
7y ago
TurboGears 2 https://turbogears.org/
20.
▲
by
pjtr
7y ago
I did see the screenshots. That's what triggered my comment. I did not see any branch names. Now I see "nh-scroll-fix" and "origin/fix-simulate-na..." in the conflict dialog, but not in the merge dialog. Branch
21.
▲
by
pjtr
7y ago
Why do merge tools pretend that "their" and "our" or "remote" and "local" are good labels? Can they not show the commit message and hash? Nowadays with history editing often both sides are local and m
22.
▲
by
pjtr
7y ago
Coffee, religion, cigarettes, facebook, anger
23.
▲
by
pjtr
7y ago
Can't you use this "alternative rust compiler. Capable of building a fully-working copy of rustc" https://github.com/thepowersgang/mrustc and a trusted C++ compiler instead?
24.
▲
by
pjtr
7y ago
> you're making the same mistake I assume you mean the "generic you", as it was the article quoting the NASA report that suggested the comparison.
25.
▲
by
pjtr
7y ago
"there is a huge amount of text, more than 100 words" "PowerPoint briefing slides instead of technical papers" Would technical papers have fewer than 100 words? If people can't be bothered to read 13 slides, what wo
26.
▲
by
pjtr
7y ago
So the real slide was actually quite different from the one presented in the article. The article shows various errors not present in the real slide (vaires, e.?g., Ln, hanrd). The real slide also use different font weights and bullet symbo
27.
▲
by
pjtr
8y ago
The list of members is here: https://www.wettbewerbszentrale.de/de/institution/mitgliedsc... It includes for example Audi, BMW, Daimler, Ford, Opel, Volkswagen, the VDA (Verband der Automobilindustrie; German Asso
28.
▲
by
pjtr
8y ago
Especially for things like Python's embedded SQLite. Packaging and loading an extension module cross-platform with an otherwise pure Python script seems difficult.
29.
▲
by
pjtr
8y ago
Similar Javascript feature existed for a long time: Link to first occurrence of "pseudo" on page: https://trac.edgewall.org/wiki/TracLinks#/pseudo Link to last occurrence of "highlight" on page
30.
▲
by
pjtr
8y ago
1) In the Windows ecosystem almost every version has 4 parts. (e.g. file headers in exe, dll, assembly etc.) So it's impossible to use semver which only allows 3 parts. This seems like a major unnecessary roadblock. 2) IMO packaging to
More ›