Recent content by Teivel

  1. Teivel

    What are you listening to?

    I usually just put my liked playlist on shuffle, there are some weird songs in there... When I want to concentrate I go without music, or with Studio Ghibli's theme songs, I specially like Howl's Moving Castle's Merry go Round of Life when played by Kay the Pianist. To show my inconsistent...
  2. Teivel

    New Glossary + Other Features

    I've thought that you can maybe add a option to set the glossary as after chapter X, and be prompted a spoiler warning, if you haven't bookmarked that chapter or the ones afterwards. To go along with it, you could keep track of the versions, so if the glossary was remade every 10 chapters...
  3. Teivel

    Creating fake Code is hard

    A bit of programming Jargon, more on Tech Terms: I'm using python because it's easy to read for beginners, and I'm also doing some things inefficiently in order to make it obvious what the code is doing. So don't think this is how real code looks like, Python is pretty readable, but not as...
  4. Teivel

    Creating fake Code is hard

    I've read that in JS you can do both: var myVar = 100; let myOtheVar = 200; And (although it is not advised): thisVar = 300; I've heard that it produces to many errors as it declares that variable global, and it is usually not allowed in interpreters, but it's still something you can do in theory.
  5. Teivel

    Creating fake Code is hard

    One example of the trade-off you make with human readable code is this: In C/C++ you need to declare a variable before using it. ie. int myInteger = 0; In Python and JavaScript you can skip that and just say: myInt = 0 Let's say you have a function that adds to the player health when it...
  6. Teivel

    Creating fake Code is hard

    I'd like to add a bit on Linux command prompt code, if you wanted to make very human readable code, the you should really use pseudo code, which is basically a very high level instruction on what the computer should do, ie. Make a Fireball. It isn't code per se, but it conveys the idea of what...
  7. Teivel

    Questions for SSSC!

    Thanks! :)
  8. Teivel

    Questions for SSSC!

    I'd love to but I'm busy enough IRL that I won't be able to cough up anything decent right now :( Will lurk around waiting for next post though!
  9. Teivel

    Questions for SSSC!

    I got in here late :( how can I add myself to a mailing list or something for this?
  10. Teivel

    ScribbleHub's logo not being visible on dark theme

    Although it can be distinguished from the background, I don't know if it's my nearsightedness or the night filter, but I need some time in order to make out the features, I'd love it to have some kind of lighter colored border. Thanks in advance!
  11. Teivel

    Automatic Chapter / Side Story labeling

    Please add a chapter label that lets authors just write the title, or skip it, and stop worrying about which number it is. As an additional feature request tied to the one above, please add the option to declare the chapter as a side story, making it so it doesn't mess up the numbering of the...
Top