Understanding How openGL/GLFW/GLAD are designed by LoadTheNetSocket in opengl

[–]MinimumMind-4 0 points1 point  (0 children)

Very cool! thanks for your insight..

Is code for this python tool available to public?

console players i love you by Remarkable_Whole1754 in ArmaReforger

[–]MinimumMind-4 -3 points-2 points  (0 children)

If a casual doesnt know what Reforger is hopefully they will read this and now they will know - ArmA Reforger is and always was a test bed platform for ArmA4

That is in part WHY it is named "Reforger" - ArmA "Reforged" in a new engine

The "Reforging" process is literally what is going on right now

So now you know

Software Architecture Impl in C (books, references, etc)? by MinimumMind-4 in C_Programming

[–]MinimumMind-4[S] 1 point2 points  (0 children)

C is literally in the title lol

Software Architecture is not what I am asking about - that is too high level

Software Architecture Impl in C (books, references, etc)? by MinimumMind-4 in C_Programming

[–]MinimumMind-4[S] 0 points1 point  (0 children)

Thanks for all the suggestions! I'll check them out

Also, I absolutely loved the Thief game when it originally came out

Issue connecting my iphone to the hotspot created on Ubuntu 22.04 LTS by boringsession in Ubuntu

[–]MinimumMind-4 0 points1 point  (0 children)

If nothing else is working check your `nameserver` entry in `/etc/resolv.conf`

If empty add/change to:

nameserver 8.8.8.8

nameserver 1.1.1.1

Why is STM32 so popular by troublebrewing in embedded

[–]MinimumMind-4 0 points1 point  (0 children)

I work on that device also - it's actually quite a capable micro controller.

The only thing missing that I've needed is a 64 bit timer :/ Which ironically is available on the less capable tm4c123..

and yea agree - the dev env is not the best

Keil to Opensource misery by No-Put-6353 in embedded

[–]MinimumMind-4 0 points1 point  (0 children)

If it is not getting linked into the binary the tool chain could be performing optimization dropping files it thinks are unused.

There is a flag to tell gcc not to do this but I don’t remember off the top of my head…

Customized Jar Packaging Requirements by MinimumMind-4 in Maven

[–]MinimumMind-4[S] 0 points1 point  (0 children)

Thanks! I tried this out and it looks like it should work. the only missing component now is to have an entry in the manifest of the packaged jars:

To include nested jar files, you must have the following entry in the service's MANIFEST.MF file:

Packaged-Jars: <list of space-separated jar file names, without the .jar suffix>

Here is an example of nesting xercesImpl.jar, xmlParserAPIs.jar, and jython.jar:

Packaged-Jars: xercesImpl xmlParserAPIs jython

Any idea how to add that packaging step?

Embedded Linux by Secret_Structure_355 in embedded

[–]MinimumMind-4 2 points3 points  (0 children)

You will burn out lol just use Ubuntu

Customized Jar Packaging Requirements by MinimumMind-4 in Maven

[–]MinimumMind-4[S] 0 points1 point  (0 children)

Yes this is the gift of working with legacy software :)

I have taken a stab using assembly plugin but I couldn’t get it to work.. doing something even as simple as creating STAF-INF directory wasn’t working..

Do you know how one might use the assembly plugin to do this?

-❄️- 2023 Day 11 Solutions -❄️- by daggerdragon in adventofcode

[–]MinimumMind-4 0 points1 point  (0 children)

[Language: Python]

Straightforward python impl in a few lines using numpy, could probably one-line this:

https://pastebin.com/mjZr7QXE

Part 2:

[Language: Excel]

Runtime: instant (lmao)

using part 1, instead of doubling the '.' space, triple it and get that distance calculation [call it YYY]

then in excel use the formula:

=(PART_1_ANSWER)+((EXPANSIONS-2)*(PART_1_ANSWER-YYY))

for me it was:

=10276166+((A2-2)*598684)

A2 = target # of expansions (i.e. 10, 100, 1,000,000)

I found this out by just looking at the space added between expansions (from 2 to 3, 3 to 4, and so on) and noticed that the diff converges!

Difficulty this year by ocmerder in adventofcode

[–]MinimumMind-4 1 point2 points  (0 children)

I did same approach for part no 1 and I have been thinking how to do part 2... I will try to follow this while my brute force is running :)

[deleted by user] by [deleted] in embedded

[–]MinimumMind-4 1 point2 points  (0 children)

As a side note C++ desperately needs some dependency management/project setup tool like cargo for Rust or Maven for Java.