Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Aphix

@AphixDev
Fullstack And Game Dev
  • Java u2 Tester I

    Cover page
    Made with Java
    Recent comments (0)
  • Important String Methods 1

    Cover page
    Made with Java
    Recent comments (0)
  • Practice III

    Cover page
    Made with C++
    Recent comments (0)
AphixDev
AphixDev
shared a Post
3 years ago
Golang Gin Quickstart Template
Hey there! I was getting annoyed having to reinitialize gin projects and I finally decided to automate the process. To use this template, you will n
Golang Gin Template
Bash
AphixDev
AphixDev
shared a Post
3 years ago
Hello person looking at this post right now... I am a game developer with experience in Unreal Engine and Unity. I have some game ideas, but I need p
thenullified
thenullified
im a pure python programer, but ive made games before3 years ago
SpaceFire
SpaceFire
Hello! I have experience in Python, HTML, CSS and a little bit of JavaScript can I help?3 years ago
AphixDev
AphixDev
shared a Post
3 years ago
I've been inspired to make my own array class after using unreal engine for a while, but the compiler doesn't see the definitions of each function in
Creating Data Types!
C++
theangryepicbanana
theangryepicbanana
I had this problem a while back for my CS final, and you apparently can't have them in separate files unless you provide specific overloads for each type you use it for in the header file3 years ago
AphixDev
AphixDev
shared a Post
3 years ago
So, I've been doing a lot of coding within Unity and Unreal, but I realized that I really want to try making my own game engine. You might be thinking
SixBeeps
SixBeeps
Ohhh boy. That requires knowledge of how your graphics card and drivers work. However you approach it, it'll be difficult.3 years ago
AphixDev
AphixDev
shared a Post
3 years ago
Hey there. The other day, I gave JavaScript a try to take a little break from game dev in Unity and UE4. I used all the things I learned in an hour in
Klick
HTML, CSS, JS
NoelB33
NoelB33
Make it return a number using the Number(localStorage.youritem) because I think it’s messing up that way. I could be wrong, but I think that’s what’s happening.3 years ago
AphixDev
AphixDev
shared a Post
3 years ago
Hi there replers! I've learned a bunch of other coding languages, other than the ones it says I know, but I don't know how to change that on my profil
Roar123
Roar123
The languages shown are the ones you code with most frequently, so I'd say if you continue to code in your preferred languages, then your profile should reflect that.3 years ago
AphixDev
AphixDev
shared a Post
4 years ago
I guess you can say this is like Pokemon. I was bored, so I made a purely rpg based animal catch game! I hope you enjoy! Btw, the -__- glitches out th
ANIMAL CATCH
C++
Roar123
Roar123
Is this a question? You should move this post to share4 years ago
AphixDev
AphixDev
shared a Post
4 years ago
Hey guys. I want to make a tutorial on replit, but my only really useful skill is game dev in Unity. Does anyone want me to make a quick Unreal Engine
ViplavMaddela
ViplavMaddela
Ya sure can you do a unity 3 years ago
DeaconBurgess
DeaconBurgess
Im TRYING to make a 2d platformer in love2d4 years ago
DeaconBurgess
DeaconBurgess
cool :) ive never seen someone on repl.it that uses unity or unreal4 years ago
AphixDev
AphixDev
shared a Post
4 years ago
Were you ever too lazy to load gmail.com or whatever service you use? Well, you're in luck! Here's a easy, free to use, and forkable, python emailing
Emailer Py
Python
IndyRishi
IndyRishi
does it send more than one email3 years ago
StudentLevi
StudentLevi
not working for me 3 years ago
frostedbutton75
frostedbutton75
Wow.3 years ago
AphixDev
AphixDev
shared a Post
4 years ago
I was playing around with socket.io in python, and I was able to make a server, but I have no clue how to connect to it. Any help?
Server
Python
a5rocks
a5rocks
That's not socket.io... By the way, only http requests can get to your repl, so this won't be possible, so you need to use something like websockets or aforementioned socket.io (though I can't to find how to do a socket.io server in python)4 years ago
AphixDev
AphixDev
shared a Post
4 years ago
This game is fully based around RNGs. This is V. 1.1.0. I'm working on the next update, which will bring new worlds to the game.
ANIMAL CATCH
C++
AphixDev
AphixDev
shared a Post
4 years ago
I've been working on a terminal project, but I can't seem to find out how to encrypt save files and load them into a database. I also need help creati
Terminal 0.5
C++
Highwayman
Highwayman
O.o wait so you want to actually code with sockets and you want to encrypt your files that aren’t even going to save if the ide isn’t open? (Just as a side note: OpenSSL maybe? It’s an encryption lib, but I don’t remember whether it’s c++ or js... kinda a hit or miss, but check it out anyways) I think if you look for it, there are a couple of dbs actually here on repl.it. Also try and find a lib to help with the networking part because c++ was nahht built for networking. Yet. Maybe for the c++204 years ago
AphixDev
AphixDev
shared a Post
4 years ago
I've been working on a program that I want to be like some type of terminal that can be used to access some of my games and chat real time. Here's wha
Terminal 0.5
C++
Highwayman
Highwayman
Nice game. :)4 years ago
AphixDev
AphixDev
shared a Post
4 years ago
I just coded this mystery game as my first ever C++ Game! You guys can check it out and notify me if there are any bugs or if you have any suggestion
The Murders on Ferris Street - Part I
C++
Highwayman
Highwayman
If anything I posted was confusing or unhelpful, please ping me with as many questions as you like.4 years ago
Highwayman
Highwayman
Why do you encapsulate null in eXpo, only to use a global using statement on the eXpo namespace? What is the advantages of the namespace? I feel it is simply code bloat there. I suggest just declaring null as a regular global variable. Also, since you already say using namespace std; just before main on line 31, you do not need to write the using statements on lines 16 to 20. I would however suggest getting rid of line 31 instead of getting rid of lines 16 to 20 because it is generally better t4 years ago
Highwayman
Highwayman
On lines 19, 38, 42, 48, 54, 60, 62, 64, 70, 76, 92, 98, 101, 104, 107, 120, 131, 136, 141, 145, 153, 155, 158, 160, 163, 165, 168, 170, 173, 175, 178, 181, 183, and 186 you use usleep() when you have sleepfor() as well? I suggest using either just sleepfor() or just usleep(). It is probably preferable that you use sleep_for(), actually, since usleep() is coming from a header that is only accessible on Unix systems. So then it could work on a windows os too. I noticed that you are including bot4 years ago
AphixDev
AphixDev
shared a Post
4 years ago
Random color chooser made with simple c++. This is just something I made while practicing.
Master Key
C++