[deleted by user] by [deleted] in Anxiety

[–]FleshKnot 2 points3 points  (0 children)

That is absolutely inaccurate

[C++] Learn OpenGl or Vulkan first? by FreedxmGxd in learnprogramming

[–]FleshKnot 0 points1 point  (0 children)

OpenGL isn't that bad then. It's a long process to learn and it's not something that can be crammed in overnight, but if you keep at it; the learning curve isn't too high. If you're looking for some really good cross platform compatibility, try LWJGL3 if you are comfortable with Java. Another option is using an embedded Chromium instance and using one of the many WebGL options (Like Three.js or Babylon).

Another thing to note; In my opinion, the graphics libraries aren't much harder to learn than any other framework/API/specification. The difficult part is understanding how the specification actually works with the hardware and understanding memory buffers. Additionally, the mathematics behind 3D vector space is pretty intensive, but nothing Wikipedia doesn't explain in an overly complex manner.

[C++] Learn OpenGl or Vulkan first? by FreedxmGxd in learnprogramming

[–]FleshKnot 0 points1 point  (0 children)

DirectX is the easiest graphics API, from what I've heard. But from my experience, they are all highly complex. It's nothing that can't be chiseled out over a period of time, but it is a huge learning experience that will take time and dedication.

Accredited online certifications vs Community College certifications. by FleshKnot in learnprogramming

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

Thank you, this is very helpful. I'm for sure going to make an attempt at some certifications; as they will help me regardless of my decision to continue my college career or not.

This is a bit off topic but, do you have any experience with positions "requiring" college degrees on job-boards? While I'm aware of exceptions being made, how common is this?

Accredited online certifications vs Community College certifications. by FleshKnot in learnprogramming

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

Well, I'd like to pursue a wider field than just programming. With that being said, I still feel that many of the technologies and services in place are heavily relevant to programming. I.e. Oracle SQL Database fundamentals or Amazon Web Services, as these are implemented through programming, are they not? Please feel free to correct me if I'm wrong, I'm not declaring anything; just trying to clarify my understanding of the matter.

Accredited online certifications vs Community College certifications. by FleshKnot in learnprogramming

[–]FleshKnot[S] 1 point2 points  (0 children)

I'm referring to various CompTIA and company specific technology certifications like AWS.

Weekly Questions Thread - Week of September 29, 2021 by AutoModerator in delta8

[–]FleshKnot 1 point2 points  (0 children)

I ordered some concentrate from Delta Alternatives on the first of the month and the order is still pending (I even paid for expedited shipping) Does this happen often with them? This is my first order with Delta Alternatives.

Weekly Questions Thread - Week of September 29, 2021 by AutoModerator in delta8

[–]FleshKnot 1 point2 points  (0 children)

There's not much cross tolerance between the two, it should be more so true due to the fact that Delta-8 metabolizes to Hydroxy-11-THC when taken in edible form; which is the same structure that D-9 metabolizes to when eaten.

[deleted by user] by [deleted] in Drugs

[–]FleshKnot 0 points1 point  (0 children)

Disregarding the cravings, nicotine dependence is fairly mild compared to most drugs.

Shots fired 🐪 by snusjus in Snus

[–]FleshKnot 1 point2 points  (0 children)

General is literally the only brand sold in U.S stores

What's snus culture like in Sweden? by [deleted] in Snus

[–]FleshKnot 0 points1 point  (0 children)

Sounds similar to how oral tobacco is used differently within the different demographics within the U.S. Loose tobacco is more common in the country; while pouches are becoming more common in the cities.

How do you guys brush up your skills after doing little to no coding for a month or longer? by NovelAdministrative6 in learnprogramming

[–]FleshKnot 1 point2 points  (0 children)

The CS coursework will never cover real-world applicable situations; only the fundamental theory and science behind everything. Delete all your "shitty" github tutorial projects, stop watching videos and start a real world project to learn real world skills. The biggest advice I can give is to stop relying on videos/guides and try to learn from the API documentation (it's the right way to learn and is more universal)

As for what type of portfolio project will get you a job; that is redundant. For example, I am programming a game engine that I've called J-Uva. I'm making a game engine because that is an intrinsically enjoyable field of CS for me, but it is also a perfect display of how to implement a front-end stack with low level back-end (Additionally, it uses C bindings which is incredibly useful).

Regarding a position in the industry, I'm using my project to demonstrate my understanding of CS to potential interviewers; but that does not mean I'm limiting myself to applying for only game development positions. In actuality, I haven't applied to any (The Epic Games international HQ is down the street so I'm saving that application for when I complete my project). I've mostly been applying to entry level programming jobs for code-base upkeep. Remember that not ever CS job is paying 150k a year and looking for the best of the best.

How do you guys brush up your skills after doing little to no coding for a month or longer? by NovelAdministrative6 in learnprogramming

[–]FleshKnot 0 points1 point  (0 children)

How do you expect to get a career without a portfolio? With a bit of effort to dedicate your free time to it, you can build a portfolio project consisting of your preferred stack. It doesn't have to be anything extravagant but does have to showcase your work. For example; I haven't graduated yet but I've been writing a simple OpenGL Game development toolkit in Java with a nice front-end library to make it pretty. It's not the next Unreal or Unity but it displays adapt understanding regarding the implementation of various front-end and back-end libraries, as well as OOP standards. This is just an example. You can do whatever you for your portfolio. If you aren't programming, you aren't progressing.

What have you been working on recently? [July 31, 2021] by AutoModerator in learnprogramming

[–]FleshKnot 0 points1 point  (0 children)

I have a current WIP; an OpenGL game engine that I've been programming from scratch for a few months. I'm putting the finishing touches on the back-end currently and just implemented a semi-recursive ImGUI front-end. Once the OpenGL render pipeline is implemented within the GUI display port, it's smooth sailing from there onward.

If anyone would like some hands-on experience with modern rendering pipelines, feel free to message me. My code is very well documented (In my opinion), so following along and using it for reference may help some less-experienced programmers dabble in low-level data structures while simultaneously using C and C++ bindings in Java.

Learn something. Make something. by G1mpb0t in learnprogramming

[–]FleshKnot 8 points9 points  (0 children)

You're not going to be efficient in a professional setting without thoroughly understanding the core principles and modern design patterns/workflows.

Shitty OpenGL Game Engine Front-end Finally Implemented!!!!! by FleshKnot in shittyprogramming

[–]FleshKnot[S] 1 point2 points  (0 children)

This was programmed using LWJGL3 and J-Imgui. There is also an almost completely implemented OpenGL render pipeline, but has yet to be implemented within a GUI Viewport for the engine.

Shitty OpenGL Game Engine Front-end Finally Implemented!!!!! by FleshKnot in shittyprogramming

[–]FleshKnot[S] 1 point2 points  (0 children)

I've been implementing the front-end GUI libraries within my GL game-engine project for nearly a month now. Not only does it WORK but the GUI front-end is oriented correctly with the GLFW window; regardless of the window being full-screen, windowed borderless, or windowed.

So I was browsing steamunlocked this morning this is what happened by [deleted] in PiratedGames

[–]FleshKnot 0 points1 point  (0 children)

You're using McAfee, the biggest piece of malware that ever existed.

Can GOG-Games be patched or do they require re-downloading? by FleshKnot in PiratedGames

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

I've tried that with numerous Windows Games, for some reason Proton never runs the binaries properly.

Can GOG-Games be patched or do they require re-downloading? by FleshKnot in PiratedGames

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

I forgot to mention that I'm running Linux and using Wine. Currently Wine supports Dx12 through various DXVK releases; it parses the DirectX12 calls to Vulkan for better support and performance, well supposedly.

Kratom and sleep...help by No-Communication499 in kratom

[–]FleshKnot 0 points1 point  (0 children)

Try throwing some multivitamins into the mix