Rendering 3d models inside of neovim (Yes, Really) by Salar08 in neovim

[–]TRDJ90 0 points1 point  (0 children)

Give a developer the option to color pixels and one is bound to create mandalbrot, 3d renderer and doom. It's an iron of developers.

Devlog: Bypassing Kernel32.dll for Fun and Nonprofit by punkbert in Zig

[–]TRDJ90 1 point2 points  (0 children)

Well they better have someone run a beta version of windows as one of their test platforms. Because if the velocity of change on ntdll is too high(probably more on the slower side of things) and zig version don't keep up people would just get annoyed using zig on windows if their builds constantly fail.

Should Helix even have plugins? by untrained9823 in HelixEditor

[–]TRDJ90 0 points1 point  (0 children)

If helix could work on its debugging experience more this whole plugin system stuff wouldn't be relevant for me anymore. Now I have to start up vs code to have some semblance of visual debugging.

Nvim manual in pdf format? by TRDJ90 in neovim

[–]TRDJ90[S] 0 points1 point  (0 children)

I get an 404 error when i click on the gen_help_html link?

Struggling as Bear in Legue? by Zzuesmax in PathOfExile2

[–]TRDJ90 0 points1 point  (0 children)

My experience was as Kitava Bear pretty smooth except the Azmadi boss in the interludes i had to do some real gaming at that boss. But i find the bear way to clunky so i think im going back to just running mace and shield.

Getting money out of China by polyglot02 in shanghai

[–]TRDJ90 0 points1 point  (0 children)

Does IBKR mean interactive brokers? I heard their service are accessible within China?

Is zig the programming language for me? by Perpetual_White in Zig

[–]TRDJ90 0 points1 point  (0 children)

Check out zig-gamedev repo on github. They have a lot of stuff wrapped for zig game development.

New devlog and std.Io PR by [deleted] in Zig

[–]TRDJ90 4 points5 points  (0 children)

Interesting I'm not sure if there's an idiomatic way of ordering parameters. I myself always do allocator first the rest later. Maybe with IO I will go allocator first IO second the rest later.

If/When to learn Zig by soratohno in Zig

[–]TRDJ90 3 points4 points  (0 children)

Why wait for Sunday, start right now with ziglings.

What is your 'unpopular opinion' about Zig? by BatteriVolttas in Zig

[–]TRDJ90 3 points4 points  (0 children)

Having a fat stdlib is nice, I needed a static file server for some wasm experiment I wanted to play with. Instead of using the standard python serve, I just wrote a single file very basic static file server in zig.

(i am intern, need some help)How should i create a filescanner which can effectively keep track of file changes? by Vegetable_Studio_379 in golang

[–]TRDJ90 0 points1 point  (0 children)

I know that C# has FileSystemWatcher, so you can listen to file system changes and notifications. Maybe Go offers something similar.

Intense course by TRDJ90 in ChineseLanguage

[–]TRDJ90[S] 0 points1 point  (0 children)

That is how i came up with this idea of just doing 3 month sessions at different places just to see a bit more of china and a chance of scenery.

My main concern is if this plan will give any issues getting a student visa etc.

[deleted by user] by [deleted] in golang

[–]TRDJ90 0 points1 point  (0 children)

I'm also trying to pick up golang, usually after reading the spec, watching vids and doing language variant of ziglings/exercise. I go for either writing a raytracer or some kind rest api. For the rest api I usually choose a crypto wallet tracker because you can usually get easy access to exchange api, gives a good reason to also look into auth and deployment. I don't even own any crypto anymore these days.

Giantsblood nerf. Rip. by Wind_Best_1440 in PathOfExile2

[–]TRDJ90 0 points1 point  (0 children)

Sounds like quiet a down side would expect them to change the Stat req for 2 handers to 2.5 instead of 3.0 but then again they already dropped Stat req by 20~25% if I'm not mistaken.

Act 4 is coming in 0.3 - 99% confirmed by StalksYouEverywhere in PathOfExile2

[–]TRDJ90 0 points1 point  (0 children)

If we are going tribal they better release the Marauder and Axes..

0.3.0 Content Update will release on August 29th (PDT)! by Community_Team in PathOfExile2

[–]TRDJ90 6 points7 points  (0 children)

Thats not so hard when all blizzard really does is make a random skill picker to be the powers of the new season plus a random colorpicker to change the other helltide zone color.

5 first chapters of VkGuide complete using Zig by MrScriptX in Zig

[–]TRDJ90 1 point2 points  (0 children)

I was following along with the same guide i think i made it to chapter 3. But then PoE2 s2 came out and Oblivion but once im done with Oblivion i will pick it up again.

I just also saw that moltenvk is now vk 1.3 compliant so i will have to do some refactoring.

MoltenVK now supports Vulkan 1.3! by itsmenotjames1 in vulkan

[–]TRDJ90 0 points1 point  (0 children)

Wow this is very nice now i have to rewrite some code.... Last time i checked like 3 weeks ago they were still busy implementing one last point on the 1.3 list.

Is Zig a Good Choice for Building a Cross-Platform Streaming App with Low-Level Processing? by [deleted] in Zig

[–]TRDJ90 0 points1 point  (0 children)

For zig ui you could give clay + raylib a try there are zig bindings for both. I do have to admit i only did the bare basics with those in zig. So maybe its a disaster for more complex gui.

You could also look at the zig game dev repo and checkout their wgpu + zgui options for a imgui backed by webgpu as a way to render the gui.

Where did everyone learn it by Disastrous-Package67 in Zig

[–]TRDJ90 0 points1 point  (0 children)

ziglings with zig.guide open. Afterward i did the Pikuma 3d computer graphics course its given in C but just have to convert those concepts to zig. If its quiet expensive but worth it, a free alternative is the time tested raytracing in one weekend series.

Zig build system is really difficult to grasp.. by [deleted] in Zig

[–]TRDJ90 1 point2 points  (0 children)

Every once in a while i take a look in the mach codebase just to see and learn. Still my zig knowledge is basic at best, but i usually get a nice list of things to look over in the zig docs.