TedDallas | 2 years ago | on: Fine-tuning GPT-3.5-turbo for natural language to SQL
TedDallas's comments
TedDallas | 2 years ago | on: CudaText: Cross-platform, open source code editor written in Object Pascal
TedDallas | 3 years ago | on: Every single time I open your software, I'm asked to download an update
TedDallas | 3 years ago | on: Friendlier SQL with DuckDB
This is very cool though. There are lot of features that would make my life easier. Group By All is noice.
TedDallas | 4 years ago | on: Happy 27th Birthday, Delphi
Recently I used it to create a little SQL editor with syntax highlighting for Maria DB. It only took a few hours which was mostly due to me trying to remember my Pascal syntax.
Lazarus also has a nice online package manager with a 1.5 zillion components available.
Object Pascal can feel antiquated. But Free Pascal remains fast, stable, and reasonably feature rich without much syntax bloat over the years.
TedDallas | 5 years ago | on: Stored Procedures as a Back End
TedDallas | 5 years ago | on: Stored Procedures as a Back End
TedDallas | 5 years ago | on: Introduction to Ada
TedDallas | 7 years ago | on: FizzBuzz in ten languages
Select Case When SomeNumber % 3 = 0 and SomeNumber % 5 = 0 Then 'FizzBuzz'
When SomeNumber % 3 = 0 Then 'Fizz'
When SomeNumber % 5 = 0 Then 'Buzz'
Else Convert(VarChar(10), SomeNumber)
End As Answer
From (
Select Top 100
SomeNumber = Row_Number() Over (Order By [object_id])
From sys.all_objects
) as AnswersTedDallas | 7 years ago | on: Ask HN: What are useful CS theories you actually use at work?