Hugh Jass
@Arabica
My GitHub is github.com/PeriodGamingYT.
I'm more active on there.
Just kidding I lied.
I made a Terraria Ripoff in a week!
Nothing too special, I made it in like a week.
HTML, CSS, JS
It is incomplete and I am still working on it.
I've managed to get a few things done.
Go ahead and fork it and make your own creation!
Python
ChristineMoore Thank you for sharing this amazing python project about Game Engine development. I hope it will be an inspiration to many people who are trying to develop such projects. Actually, I am a student of computer science who has passionate about game development. I often play some online pokies games from this resource https://pokieslab.com/free-online-pokies/ where they reviewed top Australian pokies that can help to win real money for players. I m also trying to learn python to create such types of 10 months ago
DynamicSquid Nice! But why doesn't the program just stop and wait for the user to press a key? I don't see any threads here...2 years ago
If you want a guess a number game, (to the ten thousands). Then this post is for you! This relies on an asm() command called "rdtsc". Which is used fo
C
wynnepaton Hi,
A really stupid question here!
Does any of the code specify the range of the random number generated?
Thanks,
Catherine2 years ago
C Language, using the newline trick, worked before, now it does not at all!
mwilki7 Which repl are you referring to?
If you are talking about the Interpreter (in C)
https://repl.it/@Arabica/CCP-001
try:
#include /* For printf() */
#include /* For tokenizing and comparing */
#include /* For getline() */
int main()
{
printf("Enter character or somethin idk\n");
// Create input with size 50
char input = (char)malloc(sizeof(char) * 50);
// Get input (maximum 50 characters)
fgets(input, 50, stdin);
// Make sure terminator is inside string
input[504 years ago
One thing is that I am having buffer overflow for no reason at all. Even "%c" overflows.
C
Klokat I've changed your code a bit. First and foremost char input[] = "" won't allocate any space I think. I think I fixed the while loop as well. I don't know where you wanna go with this after. But good luck! Also check your twitch chat for help next time! :D
#include /* For printf() */
#include /* For tokenizing and comparing */
#include /* For getline() */
int main() {
char input[256];
fflush(stdin);
scanf("%s", input);
/*
const char *delim = " ";
const char *delim1 = "(";
const char *de4 years ago