Scene Blocking Language (SBL) is an experimental language for describing the visual content of a scene in a form that a generative AI system can understand and manipulate.
It grew out of The IAKESI Project, where one of the recurring problems with generative image production was not simply creating ...
Search found 62 matches
- Fri Aug 21, 2026 2:48 pm
- Forum: IAKESI
- Topic: The Scene Blocking Language (SBL)
- Replies: 0
- Views: 8507
- Thu Aug 20, 2026 11:34 am
- Forum: IAKESI
- Topic: IAKESI Link
- Replies: 0
- Views: 6950
IAKESI Link
The IAKESI project is now up and running at https://www.iakesi.online/
You can check out the project there.
You can check out the project there.
- Tue Aug 18, 2026 3:17 pm
- Forum: IAKESI
- Topic: The IAKESI Project
- Replies: 0
- Views: 6631
The IAKESI Project
For years, I had this idea for a manga I wanted to create. Not being an illustrator (at least, artistic vs technical illustrator) I could never realize this story. A year, or so, ago, I started playing around with ChatGPT's image generator to create a three-panel poster I had conceived. It worked ...
- Sun Dec 21, 2025 1:57 am
- Forum: Intro to Programming Using Swift
- Topic: An Introduction to Programming Using Swift
- Replies: 0
- Views: 19955
An Introduction to Programming Using Swift
I’ve just released a beta version of a new book I’m working on:
An Introduction to Programming Using Swift.
Because of its size (2,600+ pages) and the fact that the Swift language evolves so rapidly that any printed book would become obsolete almost immediately, I’ve chosen to self-publish this book ...
An Introduction to Programming Using Swift.
Because of its size (2,600+ pages) and the fact that the Swift language evolves so rapidly that any printed book would become obsolete almost immediately, I’ve chosen to self-publish this book ...
- Sun Dec 21, 2025 1:55 am
- Forum: Blog
- Topic: An Introduction to Programming Using Swift
- Replies: 0
- Views: 18920
An Introduction to Programming Using Swift
I’ve just released a beta version of a new book I’m working on:
An Introduction to Programming Using Swift .
Because of its size (2,600+ pages) and the fact that the Swift language evolves so rapidly that any printed book would become obsolete almost immediately, I’ve chosen to self-publish this ...
An Introduction to Programming Using Swift .
Because of its size (2,600+ pages) and the fact that the Swift language evolves so rapidly that any printed book would become obsolete almost immediately, I’ve chosen to self-publish this ...
- Fri Sep 19, 2025 5:32 pm
- Forum: The Book of I2C
- Topic: I2C is Part of a Humble Bundle
- Replies: 0
- Views: 19436
I2C is Part of a Humble Bundle
For the next couple of weeks, The Book of I2C is part of a Humble Bundle. Save $$$!
https://www.humblebundle.com/books/electronics-for-the-curious-no-starch-books?hmb_source=&hmb_medium=product_tile&hmb_campaign=mosaic_section_1_layout_index_1_layout_type_threes_tile_index_3_c ...
https://www.humblebundle.com/books/electronics-for-the-curious-no-starch-books?hmb_source=&hmb_medium=product_tile&hmb_campaign=mosaic_section_1_layout_index_1_layout_type_threes_tile_index_3_c ...
- Sat Mar 15, 2025 6:24 pm
- Forum: Art of ARM Assembly
- Topic: Problem with Listing 5-15 (Listing 5-5-userStack)
- Replies: 0
- Views: 133280
Problem with Listing 5-15 (Listing 5-5-userStack)
Here's a quick correction to Listing5-14 (which appears as Listing5-5-UserStack in the on-line files).
The declaration of the user stack was:
.align 4
smallStk: .fill 256, .-.
endSmallStk:
It really needs to be:
.align 4
smallStk: .space 256, .-. // .fill 256, 1, 0 also works
endSmallStk ...
The declaration of the user stack was:
.align 4
smallStk: .fill 256, .-.
endSmallStk:
It really needs to be:
.align 4
smallStk: .space 256, .-. // .fill 256, 1, 0 also works
endSmallStk ...
- Mon Mar 03, 2025 11:14 pm
- Forum: Blog
- Topic: Humble Bundle 2025
- Replies: 0
- Views: 91920
Humble Bundle 2025
It's that time of the year again!
No Starch Press is offering some great deals on some great books.
Check out the "Computer Science the Fun Way" Humble Bundle.
Running for three weeks, starting March 3, 2025
https://www.humblebundle.com/books/comp ... arch-books
No Starch Press is offering some great deals on some great books.
Check out the "Computer Science the Fun Way" Humble Bundle.
Running for three weeks, starting March 3, 2025
https://www.humblebundle.com/books/comp ... arch-books
- Tue Feb 25, 2025 10:13 pm
- Forum: Art of ARM Assembly
- Topic: Art Of ARM support files
- Replies: 0
- Views: 72707
Art Of ARM support files
Support files for "The Art of ARM Assembly" are now available at:
https://github.com/randyhyde/artofarm
https://github.com/randyhyde/artofarm
- Mon Jan 27, 2025 11:04 pm
- Forum: Art of 64-Bit Assembly
- Topic: What happens with rxc and edx registers during procedure execution? (listing2-2)
- Replies: 1
- Views: 34018
Re: What happens with rxc and edx registers during procedure execution? (listing2-2)
printf uses the Intel/Windows ABI, where register RCX and RDX (among many others) are volatile and can be overwritten by the code being called. That's why you had to reload these registers -- printf is overwriting their values (true for R8 and R9, too).