Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. splaq

    Fun activity Looking to work on a project with a team.

    Lol that usually presents a problem
  2. splaq

    Fun activity Looking to work on a project with a team.

    I want to work on a project with a team. I don't have anything in particular in mind, but I always get overloaded I guess you can say, trying to keep up with front end, backend, database, organization all at the same time I just end up growing board of the project and it sits and does nothing...
  3. splaq

    Hello everyone..

    I'd recommend following some of the youtube courses available. Get an understanding of the syntax and flow of the language. I've found that some frameworks help to drill those things in for you, while still allowing you to accomplish a task fairly quickly allowing you to see the fruits of your...
  4. splaq

    Python Load Game problem with my game

    I think it's fairly intuitive that python does it that way. Most people will read from the top down instead of from the bottom up. So if the most recent call is last it logically follows the order that the code is running in. IMO anyways.
  5. splaq

    Python Load Game problem with my game

    I can't seem to replicate the error. I'm using python 3.8 It all seems to work pretty good, I've been able to save, it's auto saved and I've been able to load the savegame file. Also I see that in the code on Github has been updated since your post. When I load the game I just type in 'SaveFile'...
  6. splaq

    Hello everyone..

    Honestly no, the last time I used C# desktop app's were still all the rage. However, I would look into the Godot game engine. Here's a link to they're documentation where they talk about using different languages for the scripting. I've seen that you enjoy writing games which I unfortunately...
  7. splaq

    Hello everyone..

    I'm always working on something. I have a bunch of stuff listed on my github account. None of it's finished or honestly very impressive as far as I'm concerned, but feel free to check it out. I'm currently working on learning the google api with python and writing an app that collects your...
  8. splaq

    Python Load Game problem with my game

    What type of DB are you using? The error states that it can't determine the DB type. Something is amiss with how you're loading the DB. Best I can tell from available info anyways. Do you have the full code on github or anything?
  9. splaq

    Something I'm working on.

    Here's a little project I'm working on. It's nothing fancy, just trying to familiarize myself with the google api's. At the moment it just connects to gmail, gets a list of emails and fills a spreadsheet with the from email address and the subject of the email address. There's a small bug where...
  10. splaq

    Python System Tray Python app issue with building a list.

    I am working on an app right now that is basically google calendar in your system tray, I'm running into the issue in the build_calendar_list() method. I'll post the code below, but everything works the way I would expect until I choose a calendar from my list of calendars. When I choose a...
  11. splaq

    Hello everyone..

    @EkBass Do you watch the coding train videos on YouTube? He doesn't have anything pertaining to 2d side scrollers specifically but he's got plenty of videos on the various physics included in video games
  12. splaq

    Hello everyone..

    Always the way it ends up. I was working on a web game awhile back where the objective was to back a semi truck into parking spots.. I got about as far as creating the semi and making it follow the mouse.. didn't even add a backdrop for the whole thing then got busy with life and forgot about it
  13. splaq

    Hello everyone..

    😂 Well if you're writing code for the Tesla AI bot I would certainly switch to p5. If you're writing a basic web app with some creative art I'd stick to C#.
  14. splaq

    Hello everyone..

    I mean knowing may be a bit emphasized 😂. I haven't used PHP since 5.3, VB since ver. 6, Delphi since hell I don't even know what version etc etc lol.. I've mainly been using python for the last 4 years or so with some js, HTML and CSS mixed in.
  15. splaq

    Fun activity Say hello... in a coding language!

    class Hello: def __init__(self, name): self.name = name def say_hello(self): print(f'Hello {self.name}') if __name__ == '__main__': hello = Hello("Servin_Laughter") hello.say_hello()
  16. splaq

    Hello everyone..

    What's going on? Just wanted to introduce myself and say hi. I mostly just code for fun and the enjoyment of figuring stuff out. I've been coding pretty constantly throughout my life, just never got into the industry. If the opportunity were to ever arise, I'd take it in a heartbeat. But...
Back
Top Bottom