Search found 141 matches

by ONiX
Thu Apr 09, 2026 11:05 pm
Forum: Active Projects
Topic: BinkleyTerm L/X (Delpih7/Free Pascal)
Replies: 1
Views: 6615

Re: BinkleyTerm L/X (Delpih7/Free Pascal)

Compiled in Delphi 7
(C) 2026 by Brain Patchwork DX, LLC.
(C) 2026 by Brain Patchwork DX, LLC.
2026-04-09_18-01.png (6.13 KiB) Viewed 6225 times
by ONiX
Thu Apr 09, 2026 5:51 pm
Forum: Active Projects
Topic: BinkleyTerm L/X (Delpih7/Free Pascal)
Replies: 1
Views: 6615

BinkleyTerm L/X (Delpih7/Free Pascal)

Nodelist Compiler
(C) 2026 by Brain Patchwork DX, LLC.
(C) 2026 by Brain Patchwork DX, LLC.
2026-04-09_12-49.png (14.41 KiB) Viewed 6615 times
by ONiX
Tue Apr 07, 2026 9:23 pm
Forum: Active Projects
Topic: Delphi Script Engine v2026 (starting at $99)
Replies: 0
Views: 7100

Delphi Script Engine v2026 (starting at $99)

The need for ultimate speed!

With the assistance of 6 different AI models... we have built the fastest script engine for Delphi 7 and above!

✓ First round, build the most robust (and accurate) script engine capable of running Delphi 7 source code.

✓ Next round, surpase the speed of Python ...
by ONiX
Sun Apr 05, 2026 9:45 pm
Forum: Active Projects
Topic: RBBS-PC (Delphi Port)
Replies: 3
Views: 123208

Re: RBBS-PC (Delphi Port)

(C) 2026 by Brain Patchwork DX, LLC.
(C) 2026 by Brain Patchwork DX, LLC.
RBBS_image.png (35.04 KiB) Viewed 20380 times
by ONiX
Fri Apr 03, 2026 1:08 am
Forum: It's all about AI
Topic: How to build your AI using Object Pascal (Part 1)
Replies: 1
Views: 29202

Re: How to build your AI using Object Pascal (Part 2)

The "Next Token" Prediction Test

In AI, the most basic form of intelligence is Probability. We want to see if the dataset "knows" that begin is usually followed by an indented block or a specific command.

Try building this "Probability Checker" in Delphi 7 to test your new files:

procedure ...
by ONiX
Fri Apr 03, 2026 1:01 am
Forum: It's all about AI
Topic: How to build your AI using Object Pascal (Part 1)
Replies: 1
Views: 29202

How to build your AI using Object Pascal (Part 1)

The "Pascal Programmer" AI: Complete Lexer & Dataset Builder

This single program combines the Tokenizer, the Lexer, and a Recursive Directory Scanner to turn your entire codebase into a binary dataset for training.

program PascalAIDatasetBuilder;

{$APPTYPE CONSOLE}

uses
SysUtils, Classes ...
by ONiX
Fri Apr 03, 2026 12:56 am
Forum: It's all about AI
Topic: what are python biggest weaknesses?
Replies: 0
Views: 21356

what are python biggest weaknesses?

Key Weaknesses of Python:
Slow Speed: As an interpreted language, Python is slower than languages like C or C++ because it translates code during runtime rather than beforehand.
Global Interpreter Lock (GIL): The GIL prevents simultaneous execution of multiple threads, making it challenging to ...
by ONiX
Thu Apr 02, 2026 12:02 am
Forum: Turbo Pascal 7 Compiler
Topic: Runtime Error Codes...
Replies: 0
Views: 34869

Runtime Error Codes...


Code Meaning
1 Invalid function number
2 File not found
3 Path not found
4 Too many open files
5 File access denied
6 Invalid file handle
12 Invalid file access code
15 Invalid drive number
16 Cannot remove current directory
17 Cannot rename across drives
18 No more files
100 Disk read error
101 ...
by ONiX
Wed Apr 01, 2026 10:18 pm
Forum: It's all about AI
Topic: Building an AI using Pascal.
Replies: 4
Views: 58519

Re: Building an AI using Pascal.

April Fools Work:

1. Higher-Level API (Keras-style)
• Introduce layer configuration records (activation, kernel init, bias init, dropout rate, etc.).
• Provide builder functions like `DenseLayer`, `ConvLayer`, `RNNLayer`, returning configured `PLayer` instances.
• Add `TModelConfig ...
by ONiX
Wed Apr 01, 2026 9:43 pm
Forum: It's all about AI
Topic: Building an AI using Pascal.
Replies: 4
Views: 58519

Re: Building an AI using Pascal.

Code: Select all

O:\PascalScriptEngine\DevPas>DevPas XORProblem.pas
0, 1, 1, 0
Finished.