Hi Everyone,

I’ve gotten a lot of older books on mathematics, physics, chemistry, and dabbled a lot in computational simulation with programs like LAMMPS and GROMACS. I am interested in learning how to make a GUI application that I can use to automate graphing functions, understanding how sensitive a model may be to perturbations in particular parameters, and different ways of visualizing data to help me get an “intuition” on subjects. Numpy, SciPy, Pandas, Matplotlib.pyplot, numba, glob, and os, are libraries I like to use. See Gibbs’/Maxwell’s original envisionment of thermodynamic surfaces from the late 1800s.

However, I am a moron with respect to software development. My interests are in the FOSS-sphere of things, but I have never made a piece of software other than botched code to calculate averages, perform PCA, and typical statistics visualizations with distributions, Monte Carlo simulations, and see how this effects the properties of the underlying system of study. I’ve also glanced at design patterns, know the different paradigms of computing to a basic level, and am willing to suffer for long-term educational gains.

The language I’m most comfortable coding in is Python, but I found it discouraging to start writing a software project, as I assume writing something entirely in Python isn’t the best way to ship quality software.

Julia and Matlab are other languages I’ve written programs in. I’ve tortured myself with the whole gamut of toolchains/editors like Neovim (and my inability to get my lua.init file to ever work properly), and prefer to use FOSS tools. I can navigate in a clunky sense around a terminal, but whenever I try to configure my .bashrc or modify the behavior of my editor, it results in me chasing down a particular filepath for an hour just to change the color of the text, or rearrange how the text is displayed to the terminal so that I actually can read what is saying. Without color-coating, it’s hard to distinguish between directories, file extensions, and so forth, and even more frustrating when you can’t get the changes to work.

Essentially, I am a confused orangutan given a mallet.

When I ditched Word for LaTeX several years ago, it inspired me to take my FOSS journey one step at a time, rather than what I did a year ago, where I chucked every proprietary tool into the trash.

I need to actually be able to do work, as one would prefer to drive their car, rather than get out every 5 feet to fix another busted part.

I would like to eventually develop software that ends up in the FOSS sphere, and write programs that do not take up 100GB of space, or have 100s of bandaid layers, countless dependencies, and the whole gamut of issues that plague certain software packages.

Libraries that I’ve looked at are…

  1. Tkinter
  2. PyQt5
  3. Dear PyGui

I don’t particularly care about modern esthetics for the interface. All I care is that the program functions, uses a relatively low amount of resources, and can educate me further about how to rip open a widget, modify the code associated with that particular button, and get a greater control of visualizing concepts taught in math/physics books.

Thank you!

  • gronjo45OP
    link
    fedilink
    arrow-up
    1
    ·
    4 months ago

    Thanks for the code example. I tried going through web3 awhile back with HTML, but need to go through at least 60% more of the course and examples they provided on the website.

    I’m a bit confused on what a server is, past “someone else’s computer” or “another computer” or “a machine elsewhere that is able to take and receive requests”. When you write a “GET” request, is this pulling from another file on your machine locally, but still using the HTML framework and WASM to have “Piece of code 1” talk to “Piece of code 2”? And this all happens locally on the same machine you’re using?

    Currently I’m using the Kate IDE editor since Neovim made me hurl my lunch. Spyder was what I used for Python, but it can’t be used with more than one language unfortunately. I’d assume programs with functions provided by Electron are able to cache what they retrieve… Is the “server” downloaded alongside the application, therefore not requiring WiFi connection to use the application?

    Hope my questions aren’t too out in left-field and thanks again for your response!

    • Turun@feddit.de
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      Not to talk down the suggestion, but with your experience in writing software I would not recommend adding JavaScript, HTML, CSS and whatever Llibrary you need for plotting to your tech stack.

      Distributing python applications can be a pain (no easy “here’s the .exe, just run it”), but it’s easy to write, you can use matplotlib, numpy, etc. And the graphics libraries are well established.

      I am currently writing an application with PyQT6. It works well. There is a graphical editor to design the layout if you don’t want to write everything in code by hand.