Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
sdkgames
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
sdkgames
1y ago
1. One can use the browser's devtools (press F12 when browsing the site) to figure out the needed files. 2. Create a list of the files (files.txt). https://oe.tradoc.army.mil/oegames/landnav/forest/Build&
2.
▲
by
sdkgames
1y ago
How to play is explained here [1] By the way you can run the games locally. Just download all files. For the forest game you would have a local directory: ├── Build │ ├── Build_7_30_F.asm.code.unityweb │ ├── Build_7_30_F.asm.
3.
▲
by
sdkgames
3y ago
The old version [0] has the correct layout. [0] https://web.archive.org/web/20221010031002/https://www.trito...
4.
▲
by
sdkgames
3y ago
When someone queried Harley-Davidson bikers as to why they don't socialize with youngsters who are avid about the latest racing motorcycles, their response was, "Why should we bother? Every year, they have something new. -- All jo
5.
▲
by
sdkgames
3y ago
> Do you have "open URLs with a browswer" turned off in your OS? But the application works differently. It needs the browser in kiosk mode, which means it should be able to run the browser binary with specific arguments.
6.
▲
by
sdkgames
3y ago
If I understand correctly, it's WebSocket on top of Embedded C/C++ web server (civetweb). Also, the application must find and launch the installed browser. In my opinion, this part is very fragile. On my system, this function (web
7.
▲
by
sdkgames
3y ago
gzip is based on the DEFLATE algorithm, which is a combination of LZ77(1977) and Huffman coding(1952).( https://en.wikipedia.org/wiki/Gzip )
8.
▲
by
sdkgames
3y ago
>The program is smaller than even the 'compressed' form of its output, >and thus represents a new departure in text compression standards. 7z and gzip disagree with this statement.
9.
▲
by
sdkgames
3y ago
Auktyon (a Russian alternative rock band) has an album of songs based on poems by Russian futurist Velimir Khlebnikov. [1] [1] https://www.youtube.com/watch?v=YFDBG7sGDRU
10.
▲
by
sdkgames
3y ago
if you have fmt (a console program from coreutils, on Linux it's usually preinstalled) then 1) mark your lines (Shift+v then move your cursor) 2) press ':' 3) '<,'> !fmt -w 80 In the similar way I also use
11.
▲
by
sdkgames
3y ago
graphviz? [0] [0] https://graphviz.org/gallery/
12.
▲
by
sdkgames
3y ago
The only effective way to raise the confidence level of a program significantly is to give a convincing proof of its correctness. [0] Edsger W. Dijkstra CONTEXT: Argument three is based on the constructive approach to the problem of program
13.
▲
by
sdkgames
3y ago
Is this about Design by contract? [0] But why do they force students to use an imperative language? [0] https://en.wikipedia.org/wiki/Design_by_contract
14.
▲
by
sdkgames
3y ago
>Are there ML models that are trained while being used? https://en.wikipedia.org/wiki/Reinforcement_learning#Explora...
15.
▲
by
sdkgames
4y ago
Cool! I would use a template parameter so that a user can choose between float and double [1]. I would add support for vector arrays (AOS and SOA) [2]. I'm not sure if your angle calculation algorithm is computationally cheap [3]. [1]
16.
▲
How an 18th Century Sailing Battleship Works [video]
(youtube.com)
3 points
by
sdkgames
4y ago
|
0 comments
17.
▲
by
sdkgames
4y ago
Adding a new game object to a game increases its complexity ("combinatorial explosion"). Good tools are needed to deal with this. "Great tools help make great games. Spend as much time on tools as possible" (c) J.Romero.
18.
▲
by
sdkgames
4y ago
>without understanding that the first only adds type declarations https://www.typescriptlang.org/docs/handbook/enums.html
19.
▲
by
sdkgames
4y ago
Regarding Godot 3.x and HTML5 export. Users reported crashes with GLES3. It seems stable rendering is based on GLES2 (WebGL v1.0). Some features don't work in HTML5 (e.g. "Some features are also not supported in WebGL 2.0 specific
20.
▲
by
sdkgames
4y ago
Jonathan Blow has been a huge influence on (independent) game developers. However, The Witness contains puzzles that are impossible for colorblind and hearing impaired people. I'm not sure I can classify this as "a thesis on learn
21.
▲
by
sdkgames
4y ago
>The creators of Tetris saw none of the profits from their creation. Their game was seized by the state as soon as it became popular and they never really profited. Wiki tells a different story
22.
▲
by
sdkgames
4y ago
I want them to support a textual shading language for all render engines. Instead, they cultivate graphical programming. From a programmer's point of view, this is a significant drawback.
23.
▲
by
sdkgames
4y ago
Using analytic geometry methods, I test every new figure, whether it gives a solution. Thank you for the feedback. I will check that.
24.
▲
by
sdkgames
4y ago
That's strange. I have no errors on Firefox 104.
25.
▲
by
sdkgames
4y ago
Thanks for the feedback. I will check the win conditions.
26.
▲
by
sdkgames
4y ago
Thank you! While Euclidea and my game explore the same theme, the approaches are different. It seems Euclidea uses some kind of automated theorem prover to verify a solution. I use numerical verifiers. There are pros and cons for both appr
27.
▲
Show HN: Compass and Ruler construction problems as puzzle game
(sdkgames.itch.io)
125 points
by
sdkgames
4y ago
|
27 comments
28.
▲
by
sdkgames
4y ago
Most popular Linux distributions include Common lisp packages. For example, "sbcl". if you have Debian/Ubuntu you should be able to install it like this: "sudo apt-get install sbcl"
29.
▲
by
sdkgames
4y ago
If you need additional functionality, you must patch the program's source code with diff files. I don't think this principle scales well. If you change the source code, all patches will become invalid. How is it supposed to work?
30.
▲
by
sdkgames
4y ago
>don’t care too much about integrating with web stacks (which is always a chore in C++) Why so? Using Emscripten You can always compile C++/C to WebAssembly (for execution in web browsers).
More ›