the_ocs

joined 1 year ago
MODERATOR OF
[–] the_ocs@lemmy.world 8 points 1 week ago

Matching supply with demand, as it should be, rather than screwing both buyer and seller..

[–] the_ocs@lemmy.world 1 points 2 weeks ago (1 children)

A poorly regulated pid loop..

[–] the_ocs@lemmy.world 20 points 2 months ago (1 children)

If it's hosted in a public repo, anyone can clone it, that's very much part of most git flows.

What you can do with the software, how you can use it, that's another matter, based on the licence.

That of course assumes China will respect the copyright..

 

Changelog

v1.24.4 - 2024-06-24 - Flat Sun

Focus in this release has been on improving and refactoring frontend code, adding UI features such as column and row hiding and locking through Visibility and Position meta classes. Other UI related features, such as supporting the height and width of individual cells have also been implemented, allowing for column and row span functionality.

Additional frontend changes include adding a marker, which allows cells to be selected and improves the way input is passed on to underlying UI cell content. This allows for better widget and chart functionality among other improvements for code that wishes to extend the frontend functionality.

Finally, a more flexible approach is now supported around providing custom HTML/CSS/JS allowing for alternative styling and other such changes to the frontend rendering. Two view configs are provided out of the box to illustrate this, the compact and the spacious, with compact being the default choice when using show(..).

It is expected that this will be the final alpha release of v1.

Added

  • Add a cell marker, allowing cells to be selected with input passed to underlying cell content
  • Add functionality to position columns to the left or right and rows to the top or bottom
  • Add functionality to hide columns and rows
  • Add support for custom UI config with custom HTML/CSS/JS
  • Implement cell height and width rendering when these are defined on cell

Fixed

  • Nothing

Changed

  • Rename init parameter to receiver for on(..) functions and process to processor on related for improved API intuition
  • Change HTML structure of cells, also harmonize this with column and row headers
  • Update widgets and charts to work with frontend changes
  • Various documentation updates relating to changes

Removed

  • Nothing
 

Changelog

v1.24.4 - 2024-06-24 - Flat Sun

Focus in this release has been on improving and refactoring frontend code, adding UI features such as column and row hiding and locking through Visibility and Position meta classes. Other UI related features, such as supporting the height and width of individual cells have also been implemented, allowing for column and row span functionality.

Additional frontend changes include adding a marker, which allows cells to be selected and improves the way input is passed on to underlying UI cell content. This allows for better widget and chart functionality among other improvements for code that wishes to extend the frontend functionality.

Finally, a more flexible approach is now supported around providing custom HTML/CSS/JS allowing for alternative styling and other such changes to the frontend rendering. Two view configs are provided out of the box to illustrate this, the compact and the spacious, with compact being the default choice when using show(..).

It is expected that this will be the final alpha release of v1.

Added

  • Add a cell marker, allowing cells to be selected with input passed to underlying cell content
  • Add functionality to position columns to the left or right and rows to the top or bottom
  • Add functionality to hide columns and rows
  • Add support for custom UI config with custom HTML/CSS/JS
  • Implement cell height and width rendering when these are defined on cell

Fixed

  • Nothing

Changed

  • Rename init parameter to receiver for on(..) functions and process to processor on related for improved API intuition
  • Change HTML structure of cells, also harmonize this with column and row headers
  • Update widgets and charts to work with frontend changes
  • Various documentation updates relating to changes

Removed

  • Nothing
 

Changelog

v1.24.3 - 2024-04-06 - Aged Moon

The theme of this release is about stabilizing core APIs, cleaning them up, improving type safety and other related refactorings where needed. These changes make it clearer what types are accepted and removes some approaches that previously could be confusing to the API user, such as with contains(..) and invoke(..).

As part of this change, Unit, rather than null, is encouraged when clearing values (be that in a table/view or in meta classes). Nulls are still supported most places to clear values, but must now have a specified type.

The core APIs are unlikely to change drastically after this release, but new data types and new features are expected.

Added

  • Tighten equals checks with added support for contains across Table, Column, Row, Cell, and meta classes
  • Add source to tableView and make source on Table public
  • Cache transformed tables obtained via tableView[Table]
  • Various test case improvements, better coverage
  • Various related documentation improvements
  • Add asBoolean and asString on Cell

Fixed

  • Fix issue with BasicFunctions on cell clear + added tests
  • Tidy up some edge cases on Table related iterators
  • Avoid accidental column create when not wanted

Changed

  • Simplified registry interactions and how tables/views are initially created and then obtained again through Table[..]
  • Refactor transformer APIs and add support for TableTransformer, ColumnTransformer, and RowTransformer
  • Update column filter on load functions to match column transformer function
  • Change setters to accept nullable types, encourage use of Unit to reset
  • Simplify class structure by removing BaseTable, BaseColumn, and BaseRow
  • Change Cells constructor API to better match overall API with Cells[..]
  • Refactor invoke(..) for better type safety and a more intuitive API
  • Tighten acceptable types in contains(..) functions
  • Allow columns to recreate themselves if needed

Removed

  • Nothing
[–] the_ocs@lemmy.world 2 points 5 months ago

Yep, exactly that.

 

I've had a long time fascination with Conway's Game of Life, and with the Sigbla APIs starting to stabilize I thought it would be fun to play around a bit and implement it as an example.

You can find the Conway example code here, and it should hopefully, even if you're unfamiliar with Sigbla, be fairly straight forward to understand.

It's using various core features, such as views, batching, transformers and cloning, with about 100 lines of code to get it all working. It's not really what I would envision Sigbla being used for, but it's a fun little example..

Conway's Game of Life in Sigbla

[–] the_ocs@lemmy.world 1 points 6 months ago

Just need better moderation

[–] the_ocs@lemmy.world 8 points 6 months ago (2 children)

I'm keen to join another tech focused community, with less non-tech spam, any recommendations?

[–] the_ocs@lemmy.world 14 points 6 months ago

I think that's unfair on third world countries

[–] the_ocs@lemmy.world 23 points 6 months ago

Yep, and everyone understands a QR code these days

[–] the_ocs@lemmy.world 2 points 7 months ago* (last edited 7 months ago)

'+ oil isn't exactly the commodity of the future

 

Sigbla is a framework for working with data in tables, using the Kotlin programming language. It supports various data types, reactive programming and events, user input, charts, and more.

[–] the_ocs@lemmy.world 4 points 8 months ago (1 children)

Open source also includes viral licenses like the GPL. Without copyright, the GPL is not enforceable.

[–] the_ocs@lemmy.world 8 points 8 months ago (3 children)

There's no open source without copyright, only public domain

 

Changelog

v1.24.0 - 2024-01-02 - Still Rice

Added

  • swap(..) function to swap rows or columns
  • sort(..) function to sort a table by rows or columns
  • Enhance TableListenerEvent and TableViewListenerEvent for easy access to event source details
  • Allow setting the host/IP with TableView[Host] or SIGBLA_HOST

Fixed

  • Fix issue with on ref/name mismatch in UI for table views
  • Ensure only Row[at X] can be used in row subscriptions
  • Ensure valid CellRange, ColumnRange, and RowRange within constraints
  • Support for view/table replacement when reusing existing view reference

Changed

  • Changed Dexx collections dependency with Sigbla PDS (no functional change)
  • Tidy up implementation of RowRange and ColumnRange
  • Documentation improvements and additions
  • Various improvements to toString functions
  • Various minor code cleaning

Removed

  • Nothing
 

I've for a good while been using an excellent port of Scala's persistent data structures in my Kotlin code known as Dexx. This also works well from Java code.

However, while the project is what I would call feature complete, it's no longer maintained, resulting in outdated dependencies. It would also become problematic should any bugs or issues pop up.

Hence I decided to fork it as Sigbla PDS and tidy it up a bit, with v1.0 now released and ready for use.

 
 

It supports various data types, reactive programming and events, user input, charts, and many other things.

view more: next ›