HN user

wedesoft

279 karma
Posts25
Comments214
View on HN
www.wedesoft.de 2mo ago

X-Plane 12 Citation-X Checklist

wedesoft
2pts1
clojurecivitas.org 3mo ago

Proximal Policy Optimization with Clojure and PyTorch

wedesoft
2pts1
www.youtube.com 1y ago

The SOLID Principles illustrated using Clojure code examples [video]

wedesoft
2pts0
www.heise.de 1y ago

Mercedes allowed to drive autonomously up to 95 km/h (Level 3)

wedesoft
6pts0
www.wedesoft.de 2y ago

Implement an Interpreter Using Clojure Instaparse

wedesoft
5pts0
www.wedesoft.de 2y ago

Implementing GUIs Using Clojure and Lwjgl Nuklear Bindings

wedesoft
1pts0
www.wedesoft.de 2y ago

Getting started with nREPL server and REPL-y client

wedesoft
2pts0
swarch.blog 2y ago

The Five Principles for Solid Software Design (2017)

wedesoft
2pts0
www.wedesoft.de 3y ago

Procedural Volumetric Clouds

wedesoft
2pts0
www.wedesoft.de 3y ago

Using the Nostr social network via the iris.to web client

wedesoft
3pts0
www.wedesoft.de 3y ago

Blue Noise Dithering

wedesoft
1pts0
www.wedesoft.de 4y ago

Test Driven Development with OpenGL

wedesoft
1pts0
www.docker.com 4y ago

The Magic of Docker Desktop Is Now Available on Linux

wedesoft
5pts0
www.wedesoft.de 4y ago

Reversed-Z Rendering in OpenGL

wedesoft
1pts0
lore.kernel.org 4y ago

Linus Torvalds: “GitHub creates useless garbage merges”

wedesoft
181pts102
www.youtube.com 5y ago

A Chat with Andrew on MLOps: From Model-Centric to Data-Centric AI [video]

wedesoft
2pts0
www.youtube.com 5y ago

The Future of Programming Languages at the Confluence of Paradigms [video]

wedesoft
1pts0
www.wedesoft.de 6y ago

New revamped version of the AnyMeal recipe management software

wedesoft
44pts29
www.wedesoft.de 6y ago

Rigid Body Game Physics Using Sequential Impulses

wedesoft
3pts0
www.wedesoft.de 7y ago

A divide-and-conquer implementation of the GJK algorithm

wedesoft
1pts0
www.wedesoft.de 7y ago

Minimal OpenGL example

wedesoft
2pts0
techcrunch.com 9y ago

Google has an indoor positioning tech in the works, called VPS

wedesoft
1pts0
github.com 10y ago

Control MeArm robot with Vim-like shortcuts

wedesoft
1pts0
wedesoft.de 12y ago

OOP with GNU Guile and GOOPS

wedesoft
1pts0
www.theregister.co.uk 15y ago

Fukushima one week on: Situation 'stable', says IAEA

wedesoft
1pts0

"Switching between Borderless and Exclusive Fullscreen no longer requires restarting the game" Afaik GLFW does not support this. So maybe that is part of the motivation for switching? I use LWJGL3 as well and I think it is really an amazing library!

If you are trying out the Citation-X with X-Plane 12, I can really recommend the XChecklist plugin and the checklist file for the Citation-X. To help you with finding all the different controls, I created this interactive page.

A Clojure port of XinJingHao’s PPO implementation using libpython-clj2, PyTorch, and Quil. PPO is a reinforcement learning method which has become popular because it addresses the problem of stability. The PPO implementation is tested using the inverted pendulum problem.

My Windows gaming graphics performance dropped by 40% after some update. I already was using Linux for everything else except gaming for many years. So I tried out Steam on Linux and I was quite amazed how many games run on Linux via Proton. Just check out protondb.com for compatibility reports.

I did a bit of scripting trying to automate the TDD cycle given a task description. The problem is, that the LLM tends to jump forward and submit a full implementation instead of a minimal change. I guess the problem is, that LLMs are trained on complete solutions instead of minimal steps.

I use a few macros for creating contexts (i.e. with-texture, with-stencil, with-scissors, with-tar). Also I have macros for rendering (onscreen-render, offscreen-render). However I try not to overuse macros.

Try Clojure 2 years ago

Clojure uses immutable lists, vectors, hashmaps, and sets. Also it has syntax sugar such as [1 2 3] for vectors, {"Jan" 31 "Feb" 28} for hashmaps, #{1 2 3} for sets, and much more. Also it has multimethods which are even more generic than CLOS.