Jump to content

david berneda

Members
  • Content Count

    16
  • Joined

  • Last visited

  • Days Won

    2

david berneda last won the day on June 2

david berneda had the most liked content!

Community Reputation

26 Excellent

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. david berneda

    TeeBI free full sources released

    Python and R plugin units are now published: https://github.com/Steema/TeeBI/tree/master/deprecated/sources/algorithms License is MIT: https://github.com/Steema/TeeBI/blob/master/LICENSE
  2. david berneda

    TeeBI free full sources released

    Yes, the features that needed Python have been deprecated and are no longer needed. The documentation will be updated to reflect this. I can upload the deprecated units at a separate folder just to archive them. Maybe in the future if there is demand it can be restored.
  3. david berneda

    TeeBI free full sources released

    Oops, you mean plugin units, or demos?
  4. david berneda

    TeeBI free full sources released

    Yes ! it will be posted soon, most probably MIT
  5. david berneda

    TeeBI free full sources released

    Full free sources of TeeBI data-mining and visualization components for RAD Studio 12.3 released. Includes also installer tool and demos. https://github.com/Steema/Steema-BI-Samples
  6. david berneda

    Making both vertical axis visible at all times in TeeChart

    We're adding a new property to axes to achieve this functionality: Chart1.Axes.Left.AutoHide := False; By default AutoHide is True, meaning the axis will be automatically made invisible when all of its associated series are also invisible. Setting it to False will always paint the axis as if all of its series were visible. If the axis min and max are set to be automatic, they will be calculated using all associated series. If you wish to beta test I'll be glad to email you the latest sources, just email me at david@steema.com This new property will also allow adding multiple custom axes anywhere, without the need of creating series, among other things. regards ! david
  7. david berneda

    Funny Code in System.Types

    Overflow compiler checking is lost here.
  8. david berneda

    IsNullOrWhiteSpace???

    I wish a compiler option to warn when calling class methods on instances instead of using the class type. Another one, hint when methods can be safely converted to class or class static.
  9. david berneda

    Creating FMX controls in a background thread

    I recently did a TeeChart fix to avoid creating its Windows Handle when just drawing it to a image without showing on screen. https://www.steema.com/bugs/show_bug.cgi?id=667 We posted a beta yesterday available for download, let me know if your colleague is interested in testing I'll provide a license. regards ! david
  10. If you need a Grid fmx/vcl to connect to TList of records etc, TeeGrid does it, without TDataset: https://github.com/Steema/TeeGrid-VCL-FMX-Samples/tree/master/demos/VirtualData/TList
  11. david berneda

    memory paging or segmentation

    69999
  12. david berneda

    Beep for Firemonkey

    Needed a "Beep" equivalent function for Android, capable of playing a sound at a specific hertz frequency, and ended up porting and adapting a Java snippet. Its freely available, hope it might help: https://github.com/davidberneda/FMX_Tone_Beep regards ! david
  13. Hi ! I've just published the source code in Pascal/Delphi of "Vidi Language" v0.2-alpha: https://github.com/davidberneda/Vidi It includes a parser/compiler and a simple ide/debugger for a new programming language (Vidi). This is a toy-experiment project in a very early stage. Attached pdf reference, same here: https://github.com/davidberneda/Vidi/blob/master/documentation/Vidi_Language_Reference.md regards david Vidi_Language_Reference.pdf
  14. david berneda

    Open Type Arrays?

    Some languages offer union types to do this, for example in Typescript: https://www.typescriptlang.org/docs/handbook/advanced-types.html#union-types
×