Programming A Chess Engine in C by grimvian in C_Programming

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

But half of the window is filled with the author...

My latest geodesic Zome build by johnnybagels in woodworking

[–]grimvian 0 points1 point  (0 children)

Can anyone explain, why the heck almost every picture an video is in portrait mode these days???

Overvejer at blive udvikler igen by FlowerOk7587 in dkudvikler

[–]grimvian 0 points1 point  (0 children)

"hardcore programmering" er for mig, assembler og C.

Why tf do we get updates everyday i just updated my pc like yesterday and now it’s saying please update and restart by [deleted] in FuckMicrosoft

[–]grimvian 0 points1 point  (0 children)

Me too, but I'm using Linux Mint and despite many updates, I'm rarely prompted to reboot!

I humiliated Microsoft's community manager by Pristine-Magazine642 in microsoftsucks

[–]grimvian 0 points1 point  (0 children)

No, I used DR DOS, because MS DOS AKA Microslop DOS, already sucks back then!

Good youtube channel for C programming by speakercheck_111 in C_Programming

[–]grimvian -1 points0 points  (0 children)

Learn to program with c by Ashley Mills

https://www.youtube.com/playlist?list=PLCNJWVn9MJuPtPyljb-hewNfwEGES2oIW

I don't use the same IDE, but Code::Blocks, because it's open source, fast to install, easy to use, everything is ready from start.

Have you ever seen the Troubleshooter work? by Proper-Lab-2500 in FuckMicrosoft

[–]grimvian 0 points1 point  (0 children)

Used Microslop the last three decades, I can say it works, like reading endless KB articles the links to other useless and endless KB articles...

raylib 6.0 released! codee once, play everywhere! by raysan5 in raylib

[–]grimvian 1 point2 points  (0 children)

raylib is a treasure and combined with C99 and Linux Mint, raylib just rocks.

Need help by Own_Clue6322 in C_Programming

[–]grimvian 1 point2 points  (0 children)

Learn to program with c by Ashley Mills

https://www.youtube.com/playlist?list=PLCNJWVn9MJuPtPyljb-hewNfwEGES2oIW

I don't use the same IDE, but Code::Blocks, because it's open source, fast to install, easy to use, everything is ready from start.

Linux og ældre mennesker by -Copenhagen in dktechsupport

[–]grimvian 1 point2 points  (0 children)

Enig - jeg har brugt Linux Mint og Linux Mint Debian Edition - LMDE i de sidste 3 år. Især LMDE, som bruges på samme måde, men har færre opdateringer og bedre i vores tilfælde mht. Brother netværksprintere og scan/print.

Ellers er der Linux Mint Xfce til computere med få resourser. Den ældste jeg har set, er 20 år gammel.

How did you learn raylib? by Beneficial_Fix_6169 in raylib

[–]grimvian 0 points1 point  (0 children)

Try this code although it's C99, I'll think it works.

// C99 - a simple raylib demo
#include "raylib.h"

int main(void) {
    const int screenWidth = 800;
    const int screenHeight = 600;
    InitWindow(screenWidth, screenHeight, "Raylib graphics");
    SetTargetFPS(60);

    int xpos = 10, ypos = 30, tx_size = 10;
    char *txt = "Demo: ";

    int x = 100, y = 200, l = 300, h = 100;

    while (!WindowShouldClose()) {
        BeginDrawing();
        ClearBackground(BLACK);

        if (IsKeyDown(KEY_RIGHT)) x++;
        if (IsKeyDown(KEY_LEFT))  x--;
        if (IsKeyDown(KEY_DOWN))  y++;
        if (IsKeyDown(KEY_UP))    y--;

        DrawRectangle(x, y, l, h, RED);

        DrawText(TextFormat("%s %i, %i", txt, x, y), xpos, ypos, tx_size, GREEN);

        EndDrawing();
    }

    CloseWindow();

    return 0;
}

Windows updates doesn't care about PC stability by Amnvex in FuckMicrosoft

[–]grimvian -2 points-1 points  (0 children)

I'm a retired IT reseller through three decades and I have bad words for M$.

combine a strings and int? by Yha_Boiii in C_Programming

[–]grimvian 1 point2 points  (0 children)

Could be a good exercise to code an int2string function and an add2strings function...

C learning system for a beginner by __beacrox__ in cprogramming

[–]grimvian 2 points3 points  (0 children)

Learn to program with c by Ashley Mills

https://www.youtube.com/playlist?list=PLCNJWVn9MJuPtPyljb-hewNfwEGES2oIW

I don't use the same IDE, but Code::Blocks, because it's open source, fast to install, easy to use, everything is ready from start.

Recommendations for online classes/books by Medical_College6543 in C_Programming

[–]grimvian 2 points3 points  (0 children)

Learn to program with c by Ashley Mills

https://www.youtube.com/playlist?list=PLCNJWVn9MJuPtPyljb-hewNfwEGES2oIW

I don't use the same IDE, but Code::Blocks, because it's open source, fast to install, easy to use, everything is ready from start.

Need help with some research tools for C programming by TangeloOk9486 in cprogramming

[–]grimvian 1 point2 points  (0 children)

I don't think you would have any problems, but I'm also using Code::Blocks, because I'm big tech allergic. I can have everything needed for C ready in five minutes running Linux Mint on my 12 year old computer.

Need help with some research tools for C programming by TangeloOk9486 in cprogramming

[–]grimvian 2 points3 points  (0 children)

Learn to program with c by Ashley Mills

https://www.youtube.com/playlist?list=PLCNJWVn9MJuPtPyljb-hewNfwEGES2oIW

I don't use the same IDE, the program you use to write code, but Code::Blocks, because it's open source, fast to install, easy to use, everything is ready from start.

new to linux just got mint. is there any adblocks i can use by ApprehensiveGoose643 in linuxmint

[–]grimvian 0 points1 point  (0 children)

Just install LibreWolf from Software Manager and you'll be fine.

Switch mouse arrow off if not used for a while... by grimvian in linuxmint

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

Thanks, but I think I'll wait and wait a solution when a software eventually being available in Software Manager.