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

    Read Me How did you find us?

    To be honest, I don't remember how I ended up here originally. My strong guess is Google. Around the time I registered here, I once again got the enthusiasm to dabble in programming. I have a kind of on/off relationship with it. It bothers me a bit, as these traditional forums in the area of...
  2. EkBass

    Form hosting

    I dont need nothing fancy, HTML5 with backend that can handle the inputs is fine. Microsoft Forms would be good, but for some reason it has no direct input for time. For date yes, but no for time. Weird...
  3. EkBass

    Form hosting

    Hi folks. Yes, i could code this myself but due certain factors i rathery do this via some service. I need to host couple of forms. SSL and some easy login system to control who can fill up the form. Mobile friendly front-end and customizable forms. I need results ratherly in xls or odf...
  4. EkBass

    JavaScript Where should const playerManager be placed within the js code?

    Are you doing this for web-browser, nodejs or what? I would write each function on its own file and then import them from there.
  5. EkBass

    Just sayin' Hi

    Hello
  6. EkBass

    Android App Error

    Hard to say nothing sure without much more information. Does that app require SSL?
  7. EkBass

    Navigating the Java Web Development Universe: Crafting an In-Depth Roadmap for Success

    Darn. I just realised, it was 11 years ago...where the heck time flies :D
  8. EkBass

    Navigating the Java Web Development Universe: Crafting an In-Depth Roadmap for Success

    Hi. A few years ago, I completed a professional degree in software development, design and testing in Java. Of course, along the way, I also had to stumble with SQL and HTML5. It was my first bite into the world of object-oriented programming. Until then, I went in an orthodox functional way...
  9. EkBass

    Using C/C++/FreeBASIC etc. dll with scripting languages.

    Nope, nothing so special i could not survive with scripting languages or compiled ones alone. But i am curious mind. But using FreeBASIC gfx library is something i most likely use in future.
  10. EkBass

    How does this become a square instead of a circle?

    You ment something like this? .curtain:before { content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; /*background: blue;*/ -webkit-mask-image: radial-gradient(circle farthest-side, transparent 0% 50%, black 50%); /* 50% value makes it a square */ mask-image...
  11. EkBass

    Using C/C++/FreeBASIC etc. dll with scripting languages.

    Yes, i did some simple tests here. While, as expected pure C/Freebasic code beats scripting languages with ease, when using shared libraries the table is turned. 10000 3D coordinate calculations via shared library were around 5 times slower than stright with scripting language itself. So, even...
  12. EkBass

    Using C/C++/FreeBASIC etc. dll with scripting languages.

    Hi. I thought to try out to write simple FreeBASIC dll. I mostly use the neat GFX library of it with my dll. Via python/nodejs i can use it's power pretty easily. I am just curious, has anyone tested is it possible to gain more calculation speed with such a dll? If we compare scripting...
  13. EkBass

    This is a welcome comment...

    This is a welcome comment...
  14. EkBass

    Current best method for storing uploaded documents (2024)?

    Seems like you are on a good route. For a tip, think a bit forehead of for what the usage is. Tags, categories and such are much easier create from start than after couple of years start editing whole system for them. Good luck with your project.
  15. EkBass

    Java How to learn java

    Free and pretty good Java Tutorial Free or cheap Java Courses & Tutorials | Codecademy
  16. EkBass

    Any idea how to get one like unlimited storage business email address with a lifetime hosting plan?

    Lifetime hosting does not mean your lifetime, but a lifetime of the company you are paying for. And that can be either long, short or very short. Only one thing is for sure, there is no refunds after that lifetime.
  17. EkBass

    Current best method for storing uploaded documents (2024)?

    There is billion things to consider when building a system like this. How many users, how many user levels, local hosting or external hosting, knowledge of programming and servers.... I once created a pretty simple server for images. Me or any of my family could upload images easily from their...
  18. EkBass

    JavaScript Navigation broken in development

    Pretty hard, basicly only guessing can be done without able to either try it out or to see the code. Code 200 means request was ok, but it is just the cover of the book.
  19. EkBass

    HTML & CSS Set minimum with for HTML <dialog> ?

    There is not a built-in CSS property to control the dialog's minimum width like you asked. <dialog id="myDialog"> This is a dialog content! </dialog> <button onclick="document.getElementById('myDialog').showModal()">Open Dialog</button> #myDialog { min-width: 300px; /* Set minimum widht...
  20. EkBass

    Python Do I need someone to make a project for me?

    Maybe someone would, if you tell a bit more what you need. In best case, we can help you to make it yourself.
Back
Top Bottom