#purebasic — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #purebasic, aggregated by home.social.
-
Heute Vormittag war Housekeeping angesagt. Recompile, Testing und Pflege der Dokumentation meiner #Purebasic basierten #OpenSource Projekte auf #Codeberg
https://blog.jakobs.systems/micro/20260425-housekeeping/
Ein sonniges Wochenende!
-
Gedanken zu systemnaher Software, exotischen Programmiersprachen und warum nicht jedes Problem ein Framework braucht.
https://blog.jakobs.systems/micro/20260115-warum-purebasic-freebasic-lazarus/
#Developer #Purebasic #freepascal #lazarus #Framework #Software #Softwareentwickler
-
The European Football Simulator project has been discontinued due to lack of development help from team members. I will however, hold on to the code incase development starts again.
#purebasic #programming -
It has been awhile since I have posted. I didn't mean it to be that way, but I have been hard at work with my European Football Simulator game. I have decided that I will make it 3D. Here is a couple of images of my progress with the 3D objects. The stadium is not finished yet.
#Basic #basic #PureBasic #programming -
I decided I will be doing some final testing of the print outs of lists to make sure things are good since I added 2 columns
#PureBasic #purebasic #programming #basic -
Meds Companion is complete for now. A few changes/additions will come later.
#programming #purebasic #basic #PureBasic -
I will center the text of the entered information. #purebasic #programming #basic
-
My next important project, maybe the most important one, due to my wife's health, I have been inspired to develop a program called "Meds Companion".
"Meds companion" is a program you can keep a list of medications including the name, dosage strength, daily doses, what it was proscribed for, usages and some personal notes for each medication. You can choose to skip any of the item fields that you don't want to fill in if you want to leave it blank.
You can search any medication in the list on the internet to get more information about it, such as side effects", all the uses of the medication etc.. Also you can search any medication that is not in the current list by using the search bar on the top right. You can also print lists out to your printer to keep with you or take to the doctor to show them a up to date medication list. You can search brand name or generic by checking to respective check box.
Meds Companion currently supports up to 15 medications per list for printing out. Lists can be longer than 15, but only 15 will print out currently. My wife has 8 currently she is taking, I think.
Features not working yet:
*Status bar doesn't update correctly.
*Adding a new medication to the list adds it to the first item slot even if there is a medication in that slot already. I need to fix that.
#programming #purebasic #basic -
My major project is called "European Football Simulator". It is based on the real leagues around the world today, but all names of players, managers, coaches and clubs are fictional.
The game is being developed in PureBasic. I have numerous screens complete. I hope to get finished with all the screens for the game in the next few months to be able to start working on the mechanics of the game.
Below is one screen I just finished yesterday.
#basic #purebasic #programming -
I will be posting updates to software projects here soon.
#purebasic #basic #programming -
Ich habe ein Faible für exotische Programmiersprachen. Diesmal ist es #purebasic Und ich muss sagen, es ist schön, wie schnell und einfach sich damit eine #HTTP #REST #API hochziehen lässt. Multi-threaded, RFC-konform, crossplatform, modular und robust. Das Skeleton steht auf #Codeberg. Die Single-File Binary ohne Abhängigkeiten ist nur 100 KB groß Have fun!
https://blog.jakobs.systems/micro/20250409-rest-api-skeleton/
-
CW: long introduction post
#introduction
Since I've just moved (thanks to the Sunny Garden admins/mods for this place, and Cup of Tea people for my old home)🔃
🌍 I'm Enne (ɛn), punny full name: Aily Enne Bee, they/them, e/em/eir/emself, a trans/non-binary/polygender, neurodivergent, bilingual, omni-demisexual human who happens to be visually impaired.
I have 12 years of experience in:
✔ Music production and sound design (mixing, editing, sample creating, synth programming, synthesis…).
✔ Audio game/software/web development (AngelScript, PHP, JavaScript, HTML, PureBasic, some (C and Python)).
I like nature, pets (especially cats), wind chimes, light rain, music (especially EDM), poetry, Critical Roll, Doctor Who, Formula1, audio dramas, technology, books (especially fantasy and romance), mental health, etc.
I believe in peace, treating everyone equally (with respect), and using one's privileges to benefit people who aren't as fortunate.
The rights of marginalized minorities are basic human rights.
I'm accepting of BIPOC, LGBTQIA+, ND and DID people, as well as everyone else.
#sunnyGarden #cupOfTeaSocial #trans #nonBinary #polygender #neurodivergent #bilingual #omnisexual #demisexual #visuallyImpaired #musicProduction #soundDesign #reaper #gamedev #angelScript #php #javaScript #html #pureBasic #python #nature #pets #cats #windchimes #rain #music #EDM #poetry #criticalRoll #doctorWho #f1 #audioDrama #tech #books #fantasy #romance #mentalHealth #peace #lgbtqia #bipoc #did #woke -
@Verfassungklage #PureBasic ist keine #OpenSource Software, sondern kommerziell. Und #Basic ist keine Alternative zu #C oder #Python. -
#PureBasic has a non standard way of declaring data types by suffixing a dot.letter at declaration time. Less verbose than VB and no sigil.
Dim myString.s = "FOO"
Dim myInt.imyString = "BAR"
myInt = 123This also ran to function return types too:
Procedure MyProc.s
MyProc = "abc"
End ProcedureI may have the syntax slightly wrong as I've not looked at it in a while.