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. skifli

    Python turtle problem

    The turtle import is below the initialization of the variable penPace.
  2. skifli

    C Beginner Requires Some Help

    Hey, would you mind sending what code you already have? That way I can build on it and fix / expand the code to complete the task.
  3. skifli

    Code Forum now has 5,000 coders on our platform! 🎉

    Congrats! It's been great seeing the growth of CodeForum from when it was a lot smaller.
  4. skifli

    Portfolio Website Feedback

    Yeah, it has to be there for it to show without JS, but I think I could put an element on top of it and remove both if JS can run. That way you wouldn't see the flash. And with the clicking X on the initial message, I was planning to add an easter egg there but you've already worked it out lol...
  5. skifli

    Portfolio Website Feedback

    Thanks, that's a good suggestion for mobile because to be honest I mainly focused on desktop and mobile was a bit of an after-thought. I don't have that much time but if I do get some I'll try implementing something similar to that. Again, thanks.
  6. skifli

    Portfolio Website Feedback

    I just finished re-writing my portfolio website, and I would love some feedback on the UI and whether it is cumbersome to use or not. It is meant to behave a bit like an OS, with windows that can be resized / moved / closed, etc. I wrote it entirely in plain HTML, CSS, and JS without any...
  7. skifli

    Fun activity Share your tech stack 👇

    Frontend: Astro Preact Tailwind HTML / CSS / TS Backend: Go (lang) Msgpack for databases. There's this project called Wails which I use whenever I create any GUI-based projects. It allows me to write the frontend in web technologies (preact, ts, etc.) and interface that with backend code I...
  8. skifli

    They've been alright here. I had a bit of a break from coding for a few months because I've had...

    They've been alright here. I had a bit of a break from coding for a few months because I've had a lot of exams and revision, and I still do, but I've come back to coding some more now. I also do a STEM project in school called F1 in Schools, so that's been taking a lot of my time.
  9. skifli

    Hey, thanks. How have things been? Also, does CodeForum not have a Discord server anymore or am...

    Hey, thanks. How have things been? Also, does CodeForum not have a Discord server anymore or am I really bad at finding the link?
  10. skifli

    Python What is this feature called and what other languages have it?

    https://www.quora.com/Why-is-VB-Net-considered-both-an-interpreted-and-compiled-language Also I meant that it would be extremely hard to implement that functionality in a compiled programming language, but I should have been more specific (read the last line of the last paragraph).
  11. skifli

    Python Check whether a whole number plus Numeric Numbe

    1) I wrote the code because I wanted to challenge myself. The question had already been solved, and so I didn't mean for it to be useful. 2) Yes check isn't the best name. 3) I use pypy which is at Python 3.9 and the feature was added in Python 3.10. But I know what you mean. 4) True, but...
  12. skifli

    Python Check whether a whole number plus Numeric Numbe

    I got bored so I made a one-liner to do it. Sorry in advance (I formatted it to make it look nicer)... from typing import Union def check(num: Union[int, str]) -> str: return ( "Whole number" if ( num == round(num) if type(num) == float...
  13. skifli

    Just finished EOY exams, back to coding!

    Just finished EOY exams, back to coding!
  14. skifli

    Python Feedback on snake game.

    Just finished rewriting the whole program; hopefully the code is easier to understand now. I always find it easier to rewrite a program a second time before expanding the first version as I find I'm able to write much better code the second time.
  15. skifli

    Python Feedback on snake game.

    Lol it's ok, sometimes even the best of us make mistakes.
  16. skifli

    Python Feedback on snake game.

    Thanks for the advice, I have added a note to the README about Unicode support and now the chars aren't hardcoded in the code.
  17. skifli

    Python Feedback on snake game.

    Do you have support for Unicode fonts enabled in Windows settings? It looks like the characters used to display the entities aren't rendering properly.
  18. skifli

    Python Feedback on snake game.

    One was working out how to make the world size automatically fit into the terminal's width and height. The height wasn't that hard, but the width was harder because for every vertex in the world there are two characters printed (e.g. `██` not just `█` because one is rectangular but two make a...
  19. skifli

    Python Feedback on snake game.

    Hey, For fun I challenged myself to make a snake game in Python entirely in the console without any external libraries (apart from `colorama` and `pynput`). I was wondering if anyone might have any feedback on the game's code, specifically in ways to simplify the code. The code isn't that well...
  20. skifli

    Feedback New forum colors

    Just being a bit pedantic here, but on the theme chooser, dark is spelt in all capitals whereas light is not.
Back
Top Bottom