Happy things thread!
- Man in Space
- Posts: 1666
- Joined: Sat Jul 21, 2018 1:05 am
Re: Happy things thread!
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.
Re: Happy things thread!
Nice to see something good happening to you once in a while!
Re: Happy things thread!
Nice!
Yaaludinuya siima d'at yiseka wohadetafa gaare.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Re: Happy things thread!
And I'm really happy to hear that!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.
- Man in Space
- Posts: 1666
- Joined: Sat Jul 21, 2018 1:05 am
Re: Happy things thread!
Took a few hours but I alphabetized my record collection this afternoon.
Re: Happy things thread!
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 wohadetafa gaare.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
- Man in Space
- Posts: 1666
- Joined: Sat Jul 21, 2018 1:05 am
Re: Happy things thread!
I’m on the way back to my college town for the Norman Music Festival.
Re: Happy things thread!
Nice!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.
- Man in Space
- Posts: 1666
- Joined: Sat Jul 21, 2018 1:05 am
Re: Happy things thread!
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!zompist wrote:in a rather lovely editionRaphael wrote: a really interesting collection of essays
Re: Happy things thread!
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!sasasha wrote: ↑Fri May 10, 2024 3:00 amI received my copy of The Philosophy Graduate’s Fallacy and other essays (by Raphael Landeck, ed. Mark Rosenfelder) yesterday and am really enjoying it!zompist wrote:in a rather lovely editionRaphael wrote: a really interesting collection of essays
Re: Happy things thread!
So did I, and I'm happy about it too!sasasha wrote: ↑Fri May 10, 2024 3:00 amI received my copy of The Philosophy Graduate’s Fallacy and other essays (by Raphael Landeck, ed. Mark Rosenfelder) yesterday and am really enjoying it!zompist wrote:in a rather lovely editionRaphael wrote: a really interesting collection of essays
Re: Happy things thread!
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:
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.
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
;
Yaaludinuya siima d'at yiseka wohadetafa gaare.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
- doctor shark
- Posts: 443
- Joined: Mon Jul 09, 2018 8:21 am
- Location: The Grandest of Duchies
- Contact:
Re: Happy things thread!
This finally went online! (Took long enough...)
aka vampireshark
The other kind of doctor.
Perpetually in search of banknote subjects. Inquire within.
The other kind of doctor.
Perpetually in search of banknote subjects. Inquire within.
Re: Happy things thread!
Very fascinating and important work!
Conlangs: Scratchpad | Texts | antilanguage
Software: See http://bradrn.com/projects.html
Other: Ergativity for Novices
(Why does phpBB not let me add >5 links here?)
Software: See http://bradrn.com/projects.html
Other: Ergativity for Novices
(Why does phpBB not let me add >5 links here?)
Re: Happy things thread!
Congrats!
Yaaludinuya siima d'at yiseka wohadetafa gaare.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Ennadinut'a gaare d'ate eetatadi siiman.
T'awraa t'awraa t'awraa t'awraa t'awraa t'awraa t'awraa.
Re: Happy things thread!
Great! Do I get this right that in "It is found that perfluoroalkyl diacids and pillar-[5]-arenes rapidly and strongly complex with each other at aqueous interfaces, forming solid interfacially templated films.", "complex" is the verb of the sentence?
- WeepingElf
- Posts: 1482
- Joined: Sun Jul 15, 2018 12:39 pm
- Location: Braunschweig, Germany
- Contact:
Re: Happy things thread!
I am not the author, but I know enough of chemistry to answer the question: Yes, complex is the verb here. You will have guessed it, it means 'to form a complex'.
... brought to you by the Weeping Elf
My conlang pages
My conlang pages
Re: Happy things thread!
Thank you!WeepingElf wrote: ↑Mon May 27, 2024 5:56 amI am not the author, but I know enough of chemistry to answer the question: Yes, complex is the verb here. You will have guessed it, it means 'to form a complex'.
- doctor shark
- Posts: 443
- Joined: Mon Jul 09, 2018 8:21 am
- Location: The Grandest of Duchies
- Contact:
Re: Happy things thread!
And WeepingElf is correct!Raphael wrote: ↑Mon May 27, 2024 5:59 amThank you!WeepingElf wrote: ↑Mon May 27, 2024 5:56 amI am not the author, but I know enough of chemistry to answer the question: Yes, complex is the verb here. You will have guessed it, it means 'to form a complex'.
Thanks! I'm especially proud of the fact that three of my M.Sc. thesis students are coauthors.
aka vampireshark
The other kind of doctor.
Perpetually in search of banknote subjects. Inquire within.
The other kind of doctor.
Perpetually in search of banknote subjects. Inquire within.