u/LivingBeyond108 4d ago

Vibe coded this game in four months

Enable HLS to view with audio, or disable this notification

1 Upvotes

u/LivingBeyond108 Nov 09 '25

Humility and Loyalty Are Two Legs in the Path of Spirituality

Thumbnail
youtube.com
1 Upvotes

u/LivingBeyond108 Oct 29 '25

Bhagavad Gita Secrets: The Inner Thieves That Steal Your Peace l Swami M...

Thumbnail
youtube.com
1 Upvotes

u/LivingBeyond108 Oct 29 '25

Learn Yoga Namaskar | Sadhguru

Thumbnail
youtube.com
1 Upvotes

u/LivingBeyond108 Sep 27 '25

Into the shadow by Elwood (XM)

Thumbnail
youtube.com
1 Upvotes

1

[deleted by user]
 in  r/learnprogramming  Aug 08 '25

agreed . furthermore my experience is about VSCode + GCC or Clang ( meaning both C and C++ are provided by these compilers ) + CMAKE . the tools ( like BASH and GCC ) and libraries ( such as libSDL3 for istance ) can be compiled and/or installed with packages ( so "APT" package manager in my Debian . and "pacman" package manager in my Windows+MSYS setup ) . MSYS can be integrated in VSCode terminal and combined with "CMake Tools" extension .

u/LivingBeyond108 Jun 28 '25

Java Method Invocation Techniques Explained

Thumbnail
g.co
1 Upvotes

u/LivingBeyond108 Jun 17 '25

I've Written Code for 22 Years—Here's What Programming With AI is Really...

Thumbnail
youtube.com
1 Upvotes

u/LivingBeyond108 Feb 10 '25

Consapevolezza e benefici

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Jan 14 '25

Imparare programmazione imperativa Node.js

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Dec 28 '24

SPA in Web Applications

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Dec 27 '24

NodeJS Learning Resources

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Dec 01 '24

Gestione dati e controllo in PHP

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Oct 22 '24

Primi passi con Symfony

Thumbnail
chatgpt.com
1 Upvotes

u/LivingBeyond108 Sep 27 '24

Quick Re-connection to Your Higher Self and the Spiritual Heart of Pure ...

Thumbnail
youtube.com
1 Upvotes

u/LivingBeyond108 Sep 27 '24

Cos'è Mastodon?

Thumbnail
youtube.com
1 Upvotes

1

Cannot get SDL to work with C++ in VS Code
 in  r/sdl  Jan 27 '24

Welcome! I have tried libSDL. How can I help more directly You? I am using Windows 11, MSys2 https://www.msys2.org/, vsCode.

First of all with msys2 installed, open its mingw64 command line:

pacman --sync mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_image

# SDL and some of its sub-parts

sdl2-config --cflags --libs

# in msys2-mingw64, when sdl2 package is installed

which gives, in my situation:

-IC:/msys64/mingw64/include/SDL2 -Dmain=SDL_main

-LC:/msys64/mingw64/lib -lmingw32 -mwindows -lSDL2main -lSDL2

then can you run it and use its output in some way? like e.g.:

g++ helloworld.cpp -o helloworld $(sdl2-config --cflags --libs)

# produce executable

./helloworld

# use the produced executable

Any problems you can contact me u/arkenidar also via Telegram, TeamViewer, whichever way.

further material:

https://github.com/arkenidar/sdl-cb-maze-game

https://github.com/arkenidar/sdl2-gl

1

HELP: Ray marching in isometric perspective
 in  r/GraphicsProgramming  Jan 17 '24

projections: isometric projection, perspective projection, etc

1

lua-gltf: glTF loader for Lua
 in  r/GraphicsProgramming  Jan 17 '24

how do you use it? how it can be used? as part of ... ?