#ObjectPascal
No one will ever get my sense of humour, for example, just for my own amusement, I made a web application which runs natively compiled C code using a customized 6502 emulator. The C code can draw to a canvas, update DOM elements, and soon hopefully more. It's all glued together using ObjectPascal.
October 15, 2025 at 2:53 AM
I'm developing a new static website framework in the world's most hated programming language, ObjectPascal. Why? None of your business, but I'm making it open source of course. Now, hate it even exists, critize it, it uses an MIT license, so deface it too in a fork. github.com/kveroneau/Ra...
GitHub - kveroneau/RabitHoleFramework: An experiment to see if I can build a web framework in Object Pascal.
An experiment to see if I can build a web framework in Object Pascal. - kveroneau/RabitHoleFramework
github.com
October 6, 2025 at 12:12 AM
MCP/Tool-Usage with PALM - Pascal-native LLM interference engine

youtu.be/lml0V0zooLM

#mcp #ai #llm #objectpascal #delphi #fpc #freepascal
MCP/Tool-Usage with PALM - Pascal-native LLM interference engine
YouTube video by Benjamin Rosseaux
youtu.be
September 16, 2025 at 10:57 PM
youtu.be/K6HY_vxY6a4

PALM - Pascal-native LLM interference engine #ai #llm #pascal #lazarus #delphi #objectpascal Uses "no" llama.cpp or something like that!
PALM - Pascal-native LLM interference engine
YouTube video by Benjamin Rosseaux
youtu.be
September 6, 2025 at 10:15 PM
A short preview demonstration of PALM with llama3.2 1TB as base model - A Object-Pascal-native LLM engine with inline assembler AVX2 SIMD optimizations, running on the CPU.

www.youtube.com/watch?v=LnKC...

#llm #objectpascal #pascal #freepascal #delphi #llama #ai
A short preview of PALM - A Object-Pascal-native LLM engine
YouTube video by Benjamin Rosseaux
www.youtube.com
July 17, 2025 at 10:12 PM
A lot of full-stack developers always need to learn to multiple languages. For web development, that'd be the backend language, and then something like React for the front-end. With ObjectPascal, you only need to know ObjectPascal. Units can be used between backend and front-end.
July 3, 2025 at 10:45 PM
ObjectPascal, each variant, both FreePascal/Lazarus and commercial Delphi do something rather interesting in the industry. While C always says it's portable, it is. With Lazarus, one single codebase can compile on multiple targets, all PC platforms, mobile, and web. "Write once, compile anywhere"
July 3, 2025 at 10:43 PM
If you'd like to educate yourself on ObjectPascal, instead of the older Pascal language the boomers used, please take a look at just the table of contents of this document to understand that ObjectPascal does support most of the modern language features. castle-engine.io/modern_pascal
Modern Object Pascal Introduction for Programmers | Castle Game Engine
Modern Object Pascal Introduction: units, classes, generics, memory management, exceptions and more.
castle-engine.io
July 3, 2025 at 10:26 PM
I'm starting to think that the reason why nobody bothers even trying ObjectPascal, and actually trying to understand it, is because of misinformation online, with a ton of content never talking about ObjectPascal, but instead the no longer used Pascal. Spread truth not lies. youtu.be/O76gpFcpNlc?...
The Programming Paradigms Iceberg
YouTube video by CodeHead
youtu.be
July 3, 2025 at 10:21 PM
Just dropped a new video on callbacks in Free Pascal! 🎥 Learning how to use procedure and method pointers. Go Team!

#FreePascal #ObjectPascal #Programming #FPC #Pascal

youtu.be/harHj2CB5gk
Using Callbacks in Free Pascal (FPC) – Procedure & Method Pointers Explained
YouTube video by The Silver Pascal Coder
youtu.be
June 22, 2025 at 7:26 AM
[Delphi][FMX] 実行時にエフェクトをかける方法 #objectpascal – Qiita

FireMonkey は VCL と比べて表現力が桁違いです。その最たるものが「TEffect」派生クラス達です。 例えば、下記の通常の画像に TGaussianBlurEffect をかけると、下記の様にぼやけた画像になります。 ※画像は DocWiki から拝借 他にも色々な効果がデフォルトで用意されているので、興味のある方は下記のページを観てください。 FireMonkey の画像効果 設計時にエフェクトをかけるのは非常に簡単で、エフェクトの親にエフェクトがかかります。…
[Delphi][FMX] 実行時にエフェクトをかける方法 #objectpascal – Qiita
FireMonkey は VCL と比べて表現力が桁違いです。その最たるものが「TEffect」派生クラス達です。 例えば、下記の通常の画像に TGaussianBlurEffect をかけると、下記の様にぼやけた画像になります。 ※画像は DocWiki から拝借 他にも色々な効果がデフォルトで用意されているので、興味のある方は下記のページを観てください。 FireMonkey の画像効果 設計時にエフェクトをかけるのは非常に簡単で、エフェクトの親にエフェクトがかかります。 ここでは、Image1 の子供として TGaussianBlurEffect を設定することで、Image1 に Gaussian Blur エフェクトがかかっています。 さて、では実行時にエフェクトをかける方法ですが、一々 TImage と TEffect を生成して、Parent を設定するしかないのでしょうか? …もちろん、違います! TEffect とは一体何者なのか? そもそも TEffect とは何なんでしょうか?最初に説明したように「コントロールに効果を付与できるもの」ですが、実は TEffect は単なるラッパーです。実際にエフェクトをかけているのは、TFilter です。 TFilter TEffect は TFilter をコンポーネント化するためのラッパーです。 TEffect は基底クラスで、そこから派生した、例えば TGaussianBlurEffect などが実際に使われるクラスです。 これらのクラスは実行時にフィルタを探します。探す方法は名前探索で、直接文字列を指定したり、先頭の T と最後の Effect を取り払った文字列を使います。 フィルターの名前を直接指定 function TBlurEffect.CreateFilter: TFilter; begin Result := TFilterManager.FilterByName('GaussianBlur'); end; …
inmobilexion.com
May 2, 2025 at 5:40 PM
April 23, 2025 at 10:10 PM
🚀 NEW: libFPC Deep Dive - FreePascal in your pocket! 💻 Discover portable Object Pascal development for rapid prototyping on the go. Perfect for #GameDev #IndieDev!
🎧 Watch now: www.youtube.com/watch?v=USrC...
#Delphi #FPC #ObjectPascal
libFPC - Deep Dive Podcast! 🎧
YouTube video by tinyBigGAMES
www.youtube.com
April 1, 2025 at 8:08 AM
The most famous and successful codebase revamp came in 2001, when Apple rebuilt and modernized MacOS, which was originally written in ObjectPascal and assembly language, in favor of Mac OS X, which was built with Objective C.

More on ObjectPascal here: preserve.mactech.com/articles/mac...
an apple computer with a party hat on top
Alt: an apple computer with a party hat on top
media.tenor.com
March 31, 2025 at 7:00 PM
𝐎𝐧 𝐭𝐡𝐢𝐬 𝐃𝐚𝐲, 𝟱 𝐲𝐞𝐚𝐫𝐬 𝐚𝐠𝐨....🕯️

𝙸𝚗 𝚖𝚎𝚖𝚘𝚛𝚒𝚊𝚖 Larry #Tesler [°Apr. 24, 1945 – Feb. 𝟭𝟲, 2020]🌹😔

#cut #CtrlX #copy #CtrlC #paste #CtrlV #Smalltalk #XeroxPARC #AppleInc #Amazon #Yahoo #NiklausWirth #ObjectPascal #23andMe #StagecastSoftware #MurielKrechmer #LawrenceGordonTesler #LarryTesler
February 15, 2025 at 11:08 PM
So, I'm at a crossroads. I'm contemplating:

- Plough on with #CTRAN unit tests and refactor in #ObjectPascal and #NeoVim, and the write-up
- Try rewriting a different #Psion SIBO SDK tool in #ObjectPascal and #NeoVim
- Try a new project that's been on my mind for a long time, in C but use #VSCode
February 9, 2025 at 9:08 AM
Colin has decided to write a #Psion OPL #LSP in #Pascal.

There is literally nothing that I don't love about this project!

#RetroComputing #RetroDev #ObjectPascal #FreePascal
January 2, 2025 at 12:59 PM
Pointers in Pascal: Example using a Linked List (Part 2)
Here is a hands-on example of implementing a linked list in Pascal! #PascalProgramming #LinkedList #Pointers #ModernPascal #ProgrammingTutorial #FreePascal #ObjectPascal
youtu.be/Dy3ODz7kmmk
Pointers in Pascal: Example using a Linked List (Part 2)
YouTube video by The Silver Pascal Coder
youtu.be
December 9, 2024 at 10:16 AM
My Software Development story continues with the introduction of Object-Oriented Programming, object-oriented languages and Apple's MacApp platform. #MPW #MacApp #OOP #objectoriented #ObjectPascal #inheritance #polymorphism

backtosoftwaredevelopment.substack.com/p/a-life-of-...
A Life of Software Development : Object-Oriented Programming and MacApp
1987-1991
backtosoftwaredevelopment.substack.com
November 18, 2024 at 11:37 AM
Current main projects:

- #CTRAN: Start writing unit tests with FPCUnit. Also, complete a full write-up of what it took to get the thing working. #Pascal #FreePascal #ObjectPascal
- Get my website running #GoHugo
- Rip the batteries out of the Revo I was given last week and assess the damage #Psion
November 15, 2024 at 4:56 PM
I've just released BAScript 2.2.2.

BAScript is a library that allows to add scripting to your #Pascal and #ObjectPascal applications. Right now it works with #FreePascal but I plan to make it work on #Delphi Too. bascript.sourceforge.io
April 21, 2024 at 5:12 PM
Howard Page Clark, author of many books on programming with #Pascal, #ObjectPascal and the #Lazarus_IDE passed away. R. I. P. www.blaisepascalmagazine.eu
February 10, 2024 at 2:04 PM
Issue #110/11 of Blaise Pascal Magazine: Machine-learning in #ObjectPascal with a convoluted neural network, stepping with the #Lazarus debugger, using Lazarus with #Delphi and Visual Studio etc. blaisepascalmagazine.eu
February 10, 2024 at 1:47 PM
The  Macintosh has turned 40. Originally, it was a #Pascal machine, and #ObjectPascal has been developed to evolve its revolutionary operating system.
January 25, 2024 at 7:09 PM
A novel method for early detection and #endotyping of #Diabetes mellitus relies on software written in #ObjectPascal.

Today, this innovative approach is covered by all major press agencies and news channels all over the globe.

news.rub.de/english/pres...
Simple and Reliable Early Prediction of Diabetes
A simple blood test could perform better than a complex test thanks to mathematical modeling.
news.rub.de
January 19, 2024 at 12:37 PM