Happy things thread!

Topics that can go away
User avatar
Man in Space
Posts: 1525
Joined: Sat Jul 21, 2018 1:05 am

Re: Happy things thread!

Post by Man in Space »

Band practice today went fantastic. My collaborator paid me a huge compliment: One of our WIPs ends with a vamped passage for the outro (for the recording it’s supposed to fade out) and I decided to go a little nuts with the ride cymbal, snare, and toms. When we ended it, he had a grin and told me that he really loved what I was doing but he had to fight the urge to smile because doing so would make his earbuds fall out.
User avatar
Raphael
Posts: 4067
Joined: Sun Jul 22, 2018 6:36 am

Re: Happy things thread!

Post by Raphael »

Nice to see something good happening to you once in a while!
Travis B.
Posts: 6150
Joined: Sun Jul 15, 2018 8:52 pm

Re: Happy things thread!

Post by Travis B. »

Nice!
Yaaludinuya siima d'at yiseka ha wohadetafa gaare.
Ennadinutha gaare d'ate ha eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Ares Land
Posts: 2733
Joined: Sun Jul 08, 2018 12:35 pm

Re: Happy things thread!

Post by Ares Land »

Man in Space wrote: Sat Apr 20, 2024 11:48 pm Band practice today went fantastic. My collaborator paid me a huge compliment: One of our WIPs ends with a vamped passage for the outro (for the recording it’s supposed to fade out) and I decided to go a little nuts with the ride cymbal, snare, and toms. When we ended it, he had a grin and told me that he really loved what I was doing but he had to fight the urge to smile because doing so would make his earbuds fall out.
And I'm really happy to hear that!
User avatar
Man in Space
Posts: 1525
Joined: Sat Jul 21, 2018 1:05 am

Re: Happy things thread!

Post by Man in Space »

Took a few hours but I alphabetized my record collection this afternoon.
Travis B.
Posts: 6150
Joined: Sun Jul 15, 2018 8:52 pm

Re: Happy things thread!

Post by Travis B. »

I have written a guide to zeptoscript over the last few days or so and also implemented classes for non-"object" types to enable the implementation of words such as show ( value -- string ), for converting any value into a human-readable string; hash ( value -- hash ), for turning any value into a hash; and equal? ( value1 value0 -- equal? ), for testing the equality of any pair of values.
Yaaludinuya siima d'at yiseka ha wohadetafa gaare.
Ennadinutha gaare d'ate ha eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
User avatar
Man in Space
Posts: 1525
Joined: Sat Jul 21, 2018 1:05 am

Re: Happy things thread!

Post by Man in Space »

I’m on the way back to my college town for the Norman Music Festival.
Ares Land
Posts: 2733
Joined: Sun Jul 08, 2018 12:35 pm

Re: Happy things thread!

Post by Ares Land »

Travis B. wrote: Tue Apr 23, 2024 10:49 am I have written a guide to zeptoscript over the last few days or so and also implemented classes for non-"object" types to enable the implementation of words such as show ( value -- string ), for converting any value into a human-readable string; hash ( value -- hash ), for turning any value into a hash; and equal? ( value1 value0 -- equal? ), for testing the equality of any pair of values.
Nice!
User avatar
Man in Space
Posts: 1525
Joined: Sat Jul 21, 2018 1:05 am

Re: Happy things thread!

Post by Man in Space »

I have successfully acquired a new OtterBox.
sasasha
Posts: 434
Joined: Mon Aug 06, 2018 11:41 am

Re: Happy things thread!

Post by sasasha »

zompist wrote:
Raphael wrote: a really interesting collection of essays
in a rather lovely edition
I received my copy of The Philosophy Graduate’s Fallacy and other essays (by Raphael Landeck, ed. Mark Rosenfelder) yesterday and am really enjoying it!
User avatar
Raphael
Posts: 4067
Joined: Sun Jul 22, 2018 6:36 am

Re: Happy things thread!

Post by Raphael »

sasasha wrote: Fri May 10, 2024 3:00 am
zompist wrote:
Raphael wrote: a really interesting collection of essays
in a rather lovely edition
I received my copy of The Philosophy Graduate’s Fallacy and other essays (by Raphael Landeck, ed. Mark Rosenfelder) yesterday and am really enjoying it!
Oh, thank you very much! I wouldn't have thought anyone would like the book so much that they'd post about it in this thread of all places!
Ares Land
Posts: 2733
Joined: Sun Jul 08, 2018 12:35 pm

Re: Happy things thread!

Post by Ares Land »

sasasha wrote: Fri May 10, 2024 3:00 am
zompist wrote:
Raphael wrote: a really interesting collection of essays
in a rather lovely edition
I received my copy of The Philosophy Graduate’s Fallacy and other essays (by Raphael Landeck, ed. Mark Rosenfelder) yesterday and am really enjoying it!
So did I, and I'm happy about it too!
Travis B.
Posts: 6150
Joined: Sun Jul 15, 2018 8:52 pm

Re: Happy things thread!

Post by Travis B. »

I have gotten FAT32 support (mostly) working in zeptoscript -- and I only say "mostly" because I have not tested files larger than one cluster yet. It took far less to get to this point in zeptoscript than I did in zeptoforth. Of course, that is largely because this was largely a translation of code from zeptoforth to zeptoscript. One thing that is significant, though, is that this is far more user-friendly than the original code was in zeptoforth. Now you can trivially do things like:

Code: Select all

zscript-fs import
zscript-block-dev import
zscript-simple-fat32 import

global my-fs

: init-fs ( -- )
  2 3 4 5 0 make-simple-fat32-fs my-fs!
  true my-fs@ write-through!
;

: list-dir ( path -- )
  my-fs@ open-dir { dir }
  begin
    dir read-dir if { entry }
      cr entry name@ type
      entry entry-dir? if ." /" then
      false
    else
      drop true
    then
  until
  dir close
;
Now executing s" /" list-dir will list the files and directories in the FAT32 filesystem in partition 0 of the SDHC card connected to SPI peripheral 0 through SPI pins 2, 3, and 4 and the chip select pin 5, and for listed directories / will be placed after their names to make their directory-ness obvious to the user.
Yaaludinuya siima d'at yiseka ha wohadetafa gaare.
Ennadinutha gaare d'ate ha eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Post Reply