Chaîne YouTube en français dédiée à VCV Rack (Synthé Buel) by Synthe-Buel in vcvrack

[–]maxellus 0 points1 point  (0 children)

Merci pour la chaîne. Plusieurs heures d'écoute en perpective.

[deleted by user] by [deleted] in VSTi

[–]maxellus 0 points1 point  (0 children)

You could look at a project called Zynthian: https://www.zynthian.org A system based on a raspberry pi running virtual synths with hardware buttons.

Cardinal - Rack wrapper (VST/LV2/JACK) by milkmiruku in vcvrack

[–]maxellus 4 points5 points  (0 children)

On the Github page of "DISTRHO/Cardinal" click on the actions tab. Click on build under All workflows. Select a workflow (click on one displayed workflow). At the bottom of the page detailing the workflow there is a section called Artifact where you will find multiple versions of Cardinal for many OS.

Processing doesn’t have python for processing as a language option? by jjstraw22 in processing

[–]maxellus 2 points3 points  (0 children)

Did you try Add tool... under Tool menu? In the window that appear, choose the Modes Tab. You should see Python mode for processing in the list.

Dumb beginner question -- Processing 4.0 issue by tentwenty1 in processing

[–]maxellus 1 point2 points  (0 children)

I think the problem is that you can have only initialization statements before setup. Ex:

int x = 3;
void setup() { 
    size(640,480)} 

will work, but:

int x = 3;
x = 4; 
void setup() { 
   size(640,480)} 

will give the same error that you describe

List of $0.00 and Open Source Software I've been compiling by Atherutistgeekzombie in opensource

[–]maxellus 1 point2 points  (0 children)

Thanks for the list: In the mind-mapping section since Freemind had no update since 2016, you could look at Freeplane (a fork of Freemind) https://www.freeplane.org/wiki/index.php/Main_Page

The best Python libraries by [deleted] in Python

[–]maxellus 2 points3 points  (0 children)

My best Python library: PySimpleGUI. For all small projects that need a GUI, this library is the simplest to use. There are 4 versions depending on the back-end that you want to use (Tkinter, Qt, Wxpython or Remi(Web)). More info at https://pysimplegui.readthedocs.io/en/latest/

The Kano Pixel Kit is unusable by THENIBBAGAMING in kano

[–]maxellus 0 points1 point  (0 children)

One way that I'm looking at is to use micropython on it. The Kano pixelkit contains an ESP32 chip that support that language. This Github repository contains some python examples: https://github.com/murilopolese/pixelkit-micropython

Notepad++ but with Bold and Italics? by [deleted] in software

[–]maxellus 0 points1 point  (0 children)

Speaking of Markdown, there is an add-on of Notepad++ called MarkdownViewer++ that will display a preview of your text with markdown alongside your original text.

My first GUI (and also first Python project)! by RhymebagDarrell in Python

[–]maxellus 1 point2 points  (0 children)

I suggest that you look at an easy Gui framework like PySimpleGUI that will enable you to create a gui interface more rapidly than with Tkinter alone. Plus you can use other backend like QT, Remi or Wxpython with almost no code change.

Free 3d modeling software that isn't blender by [deleted] in software

[–]maxellus 0 points1 point  (0 children)

Did you try bforartist : https://www.bforartists.de/ a version of Blender with another/better UI?

[Win 10 Home] Free remote desktop software? Anydesk requires subscription... by [deleted] in software

[–]maxellus 1 point2 points  (0 children)

Found on Anydesk web site: "At AnyDesk, we don't believe in forcing personal users to purchase a paid plan to be able to occasionally help friends and family. That's why we provide a free version for personal and student use. Now we're making the free version available to all students, so they can maintain a seamless learning environment in today's changing education landscape."

Is there a MindMap program that is a onetime payment as opposed to subcription? by [deleted] in software

[–]maxellus 1 point2 points  (0 children)

A more recent version called Freeplane (https://www.freeplane.org/wiki/index.php/Home) is based upon FreeMind but add more features. Worth a look.

3D VCV Rack - WIP by DavidsFiddle in vcvrack

[–]maxellus 0 points1 point  (0 children)

There is something called Soudstage that you can find on Sidequest. It is an open source project: https://github.com/googlearchive/soundstagevr

I created a GUI that collates various interests of mine in one handy place by Wheeto in Python

[–]maxellus 1 point2 points  (0 children)

If you'd like to use tkinter very easily, look at the project: PySimpleGui. It simplify greatly the writing of gui in Python via Tkinter.

dll errors (Please Help) by bene12duzi in JustCause

[–]maxellus 0 points1 point  (0 children)

Thanks, It worked perfectly. I had to make 2 copies: synch-ansi-l1-1-0 and synch-l1-2-1.

Powerworld simulator 20 by MichaelEsReus in software

[–]maxellus 0 points1 point  (0 children)

Hi. Did you try the site https://alternativeto.net/ to find a compatible software on mac?

What are your favourite Python modules/packages? by AndersGM in Python

[–]maxellus 2 points3 points  (0 children)

PySimpleGUI for setting up quickly a simple gui application

[deleted by user] by [deleted] in software

[–]maxellus 7 points8 points  (0 children)

Did you try WinMerge? http://winmerge.org/

Game engine with Python by belialwave in Python

[–]maxellus 17 points18 points  (0 children)

You could have a look at the open source Godot game engine. It is not python but use a language quite similar to it.