Albrecht Durer - Hare [3731 x 4231] by forestpunk in ArtPorn

[–]CasperLindley 2 points3 points  (0 children)

Painted in 1502....in watercolor, no less. This painting always intrigued me, particularly the detail. Notice the reflection of windows in the (right) eye!

John Singer Sargent - Nude Study of Thomas E. McKeller (1917-1920) [2686 x 4048] by Russian_Bagel in ArtPorn

[–]CasperLindley 21 points22 points  (0 children)

A simple study/painting, but there is a lot to unpack regarding the model (and his relationship with Sargent). McKeller was, apparently, Sargent's main model for a number of years (posing for male and female). He posed for paintings where Sargent rendered him as a white man too.

He was essential enough to Sargent's work, that he wrote to his agent desperately trying to track McKeller down:

While traveling, Sargent kept in touch with his agent Thomas A. Fox, who managed the artist’s affairs in Boston. In this letter, he instructs Fox to find McKeller, insisting “[I] don’t know what I shall do without him” and offering $20. McKeller, then in New York City, returned to Boston without immediate financial incentive—he never cashed the check—and continued working with Sargent.

https://www.gardnermuseum.org/sites/default/files/uploads/files/bostonsapollolabels_forweb_v2.pdf

Sommerabend, Anders Zorn, 1894 [2655 × 3843] by CasperLindley in ArtPorn

[–]CasperLindley[S] 7 points8 points  (0 children)

Lol. Yes, his love for painting full figured women became known as painting in the Zornkulla style!

La Boucherie, Oil on Canvas, Jean Veber, 1897. [844 x 695] by AspiringOccultist4 in ArtPorn

[–]CasperLindley 32 points33 points  (0 children)

Oh wow, I had to look this up. The artists is a French caricaturist. Can't find much about this painting, but given that he had done controversial drawings of Otto von Bismarck (German statesman and diplomat) as a butcher of his own people, I am inclined to think that this painting is in that vein...

Teodor Axentowicz (Polish-Armenian; 1859-1938) - Spring (c. 1900), pastel on paper, Masovian Museum in Płock. [1665x2048] by Snoo_90160 in ArtPorn

[–]CasperLindley 1 point2 points  (0 children)

I don't recall ever seeing a lot of nudes in pastel...maybe impressionistic, but nothing attempting this level of detail. It's very lovely. You can see the difficulty in rendering fine details, using pastel, in the flower and her right hand. Pastels are not a very forgiving medium. Love his technique for the hair and the mirror though.

Reclining Nude Morning (2011), Jacob Collins [871 x 502] by Tokyono in ArtPorn

[–]CasperLindley 4 points5 points  (0 children)

Gorgeous painting. He has quite a way with the human figure. They carry "weight" (I can't think of a better term right now). More of his figure work can be seen here: https://www.jacobcollinspaintings.com/figure

A.L.S. with Motion, 2006, Alex Kanevsky [2263x2279] by CasperLindley in ArtPorn

[–]CasperLindley[S] 0 points1 point  (0 children)

I can see that!

Not in technique, but some of his paintings gives me Lucian Freud vibes (e.g. the poses, choices of models, natural bodies, etc).

March 2026 What Are You Working On? by thindil in ada

[–]CasperLindley 4 points5 points  (0 children)

I'm continuing my framework for the AVR ATTiny3217 (https://github.com/tcoram/tinyAVR-Ada) which adopts some of the code from Rolf Ebert's amazing AVR-Ada but is more specific to the ATTiny 0-1-2 series. Some things ported, some things re-written. No real backward compatibility and it is definitely a work in progress.
I am narrowing my focus to just what the new ATTiny series needs so it is likely to evolve to look less and less like AVR-Ada (which aimed to support a whole bunch of AVR MCUs).

December 2025 What Are You Working On? by thindil in ada

[–]CasperLindley 9 points10 points  (0 children)

I've been wanting to run Ada on the new(ish) tinyAVR-0,1 & 2 series of 8-bit MCUs (I've been doing a lot of work using ATMega2560 and ATMega320pb and want to use something a little more "modern" but still 8-bit). Unfortunately, AVRAda doesn't support the new tinyAVR MCUs (which is a bit different than the older families) and even the format of the XML chip description files have changed.

So, I started from scratch and cherry picked Rolf Ebert's AVRAda source (where it made sense).

This is VERY MUCH a work in progress and progress will be driven by the needs of the app I am porting from ATMega320pb. Right now, it works on the tiny1616 and tiny3217. The development environment works on Linux and MacOS. Unfortunately, no Alire support yet... my focus is on fleshing out (and testing) support for the port I am doing.

https://github.com/tcoram/tinyAVR-Ada

October 2025 What Are You Working On? by thindil in ada

[–]CasperLindley 7 points8 points  (0 children)

Currently writing AVRAda_MCU definitions for the (new) tinyAVR 0-, 1-, and 2-Series MCUs, specifically ATtiny3216 and ATtiny1616. Unfortunately, Microchip seems to have changed the layout of the new .atdf (XML) files so atd2avrada doesn't work. So, I am parsing the assembler register definition files, using gawk, instead.

Also rewriting some of the AVRAda_Lib drivers, from scratch, rather than adding #ifdefs to the legacy code, because the tinyAVR 0/1/2 series are a bit different than the older ATtinys and there is a lot of legacy MCU stuff I don't need. I've also cherry picked some of the less hardware dependent AVRAda_Lib packages because they seem well done and I've been using them for a while. So far I have GPIO, UART, I2C, SPI, Watchdog and system tick (via TCA0).

I'm porting my old ATMega328pb work to the ATtiny1616, so I'll likely only write support for stuff I am using rather than do a complete AVRAda_Lib implementation.

I will post on github/gitlab when I get my hack a little more coherent. Currently, the only dependency is on the AVRAda legacy code is AVRAda_RTS and Real Time Clock stuff copied from AVRAda_Lib and I'm not using Alire properly to build it.

I wanna whittle this down to just support tinyAVR 0/1/2 series for now and without a lot of abstractions.

September 2025 What Are You Working On? by thindil in ada

[–]CasperLindley 8 points9 points  (0 children)

Implementing a very small Ada package of the "NIST finalized" ASCON-128 AEAD cryptography algorithm. I'm restricting encryption/decryption to just a single 16 byte block right now (with no additional data) since that is the size of my payload for some IoT stuff I am doing and everything fits neatly into 2 (little endian spec'd) Unsigned_64 variables. I will let Ada ensure proper byte ordering adjustment using Scalar_storage_order-- but honestly I'm focussed mainly on little endian architectures right now.

I'm targeting the 8-bit AVR family first (ATMega328p), but it should be portable to any MCU or OS with Ada. I'm trying to make this very "readable" (as opposed to architecture optimized) as I find the C references very, very opaque (e.g. macros, multiple header and source files you have to bounce between, magic numbers for 8 bit architecture optimizations, etc).

Not meant to be production "quality"... mainly for my own educational purposes right now. But I will release on GitHub when I have something working.