Search found 156 matches

by Cedron
Thursday 2nd May 2019 3:17am
Forum: General
Topic: Interpolation Methods Comparison Project
Replies: 5
Views: 6497

Interpolation Methods Comparison Project

InterpolationTesting-0.0.1.tar.gz Here is a quickie project that I whipped up to support answering https://dsp.stackexchange.com/questions/58032/multi-channel-audio-upsampling-interpolation It requires the FFTW library wrapper I wrote which can be found here: https://forum.gambas.one/viewtopic.php?...
by Cedron
Wednesday 1st May 2019 1:43am
Forum: General
Topic: SQLite or MySQL?
Replies: 6
Views: 8163

SQLite or MySQL?

Those seem to be the most common choices.

Which one do most people prefer?

Which one does this site use?

Either one will work for what I want to do. I'm just wondering which is more popular around here.

Postgres???

Ced
by Cedron
Monday 29th April 2019 3:35pm
Forum: General
Topic: Where is the Software Farm documentation?
Replies: 7
Views: 8214

Re: Where is the Software Farm documentation?

Thanks Matt, that is really useful. I'd like to see the Farm utilized as a trove of example code as well as being a source of software. Both purposes would benefit from having a way to find what you are looking for made easy. What I have in mind is a database something like this: *******************...
by Cedron
Friday 26th April 2019 9:57pm
Forum: General
Topic: Where is the Software Farm documentation?
Replies: 7
Views: 8214

Re: Where is the Software Farm documentation?

That list is more convenient, but I don't know what tags to search on, etc. I did leave them blank and display the full list which I then saved to my hard drive. It still seems to be a bit of a mess though. Lots of stuff, some clearly half baked, others looking good. On a positive note, when I did t...
by Cedron
Thursday 25th April 2019 4:19pm
Forum: General
Topic: Where is the Software Farm documentation?
Replies: 7
Views: 8214

Re: Where is the Software Farm documentation?

The code has been pretty much ready for a few weeks now. I've been testing, polishing, and adding some features. I want a pretty complete result when I get done, i.e. nothing pending. I also think there should be good documentation. For a library release there should also be good sample programs inc...
by Cedron
Wednesday 24th April 2019 1:03am
Forum: General
Topic: Where is the Software Farm documentation?
Replies: 7
Views: 8214

Where is the Software Farm documentation?

I can't find it in the Wiki. I can't find any with searches. I've sort of figured it out by playing around, but where is it written about? I am trying to decide whether to post my new gamepad code here or on the Farm. There is an enclosed (project-compiled) shared library in C that has to work corre...
by Cedron
Monday 22nd April 2019 8:46pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 410406

Re: Did you know?

DYK that Gambas also provides for initialization and termination routines at the class level, similar to the _new() and _free() calls for instances. '============================================================================= Static Public Sub _init() ' Print "GamePad._init" ' Print Appl...
by Cedron
Monday 22nd April 2019 8:44pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 410406

Re: Did you know?

DYK that you can comment an entire block of lines by 1) Highlighting them 2) Either press the [Ctrl-k] keys or click on the tiny button with an apostrophe on it above the text editing area. To uncomment the lines, highlight, then press either [Ctrl-u] or click on the tiny button with an apostrophe a...
by Cedron
Sunday 14th April 2019 7:24pm
Forum: General
Topic: Is anyone on a Big-Endian machine?
Replies: 0
Views: 6282

Is anyone on a Big-Endian machine?

Using Gambas, that is.
by Cedron
Thursday 11th April 2019 7:36pm
Forum: General
Topic: Using GOSUB
Replies: 4
Views: 6030

Re: Using GOSUB

GoSubs allow you to completely avoid overburdened control structures. I've seen them, you've seen them, "If" statements that span pages. "If" and "Do" and "Select"s and "For" structures nested way too many levels deep. Suppose a monster like this sta...