Search found 1706 matches

by Ivan Denisov
Tue May 19, 2026 4:44 am
Forum: Infrastructure
Topic: redmine upgrade
Replies: 4
Views: 35800

Re: redmine upgrade

Ivan, could you please restart redmine ? As far as I see, it stopped working somehow. And please update our wiki with the new instructions for restarting redmine under Server reboot in https://wiki.blackboxframework.org/index.php?title=Center_Server_Administration_Guide thanks, Josef Restarted and ...
by Ivan Denisov
Thu Oct 16, 2025 2:37 am
Forum: Curriculum vitae
Topic: Lance Schwerdfager
Replies: 2
Views: 91640

Re: Lance Schwerdfager

Hello Lance
recently created a reusable sparse matrix handling component that I hope to bring to market
will you publish it open source?
by Ivan Denisov
Thu Oct 16, 2025 2:26 am
Forum: Infrastructure
Topic: redmine upgrade
Replies: 4
Views: 35800

redmine upgrade

upgraded Redmine issues tracker from 3 to 5 version

https://redmine.blackboxframework.org/projects/blackbox

so review of sources with changes and diffs again available
by Ivan Denisov
Wed Oct 15, 2025 11:40 pm
Forum: Infrastructure
Topic: financial state
Replies: 4
Views: 281879

Re: financial state

Josef Templ wrote: Sun Jun 15, 2025 12:16 pm I have transferred 200 € from our PayPal account Edis.
With 6 € per month this is sufficient until 2028.

Thanks to donors, we still have €335 in our PayPal account.

- Josef
Great! Sometimes I am using this board to find some discussions about steps of development BlackBox
by Ivan Denisov
Wed Oct 15, 2025 11:37 pm
Forum: Curriculum vitae
Topic: Team Freelancing
Replies: 1
Views: 45674

Re: Team Freelancing

Dear Lance
I hope you didn't lose your motivation about Component Pascal. This board are a little frozen, however there are a lot of BlackBox activities. I will write you email.
by Ivan Denisov
Wed Mar 09, 2022 7:37 am
Forum: Infrastructure
Topic: VRS support terminated by hosting provider
Replies: 7
Views: 95862

Re: VRS support terminated by hosting provider

Upgraded Redmine to version 3.4.13, now it works with current Debian 11 and Ruby ruby 2.5.8
Next milestone is to check BlackBox build pipeline :-)
by Ivan Denisov
Tue Aug 18, 2020 1:07 am
Forum: Features
Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
Replies: 4
Views: 403769

Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported

Yes!
Install CPfront, then run commands from Build/build.odc file.
by Ivan Denisov
Sun Aug 16, 2020 10:35 am
Forum: Features
Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
Replies: 4
Views: 403769

Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported

This is used in armBox project
https://community.blackboxframework.org ... f=29&t=252

So Build/build.odc should executed well with CPfront installed

CPfront uses front-end of BlackBox compiler.
by Ivan Denisov
Sat Jul 18, 2020 1:51 pm
Forum: Bugs
Topic: about SYSTEM.ADR(BasicType)
Replies: 11
Views: 115976

Re: about SYSTEM.ADR(BasicType)

The fix of luowy allowing to get descriptor of type.

This is important for such case

Code: Select all

MODULE Test;

IMPORT SYSTEM;

TYPE
	Command* = PROCEDURE;
	
VAR
	adr: INTEGER;
	
BEGIN
	adr := SYSTEM.ADR(Command)
	
END Test.
This is relevant for some lowlevel project.