NOTAM Meetups: Spring 2023

:railway_track: :steam_locomotive: :railway_car: :railway_car: :railway_car: :railway_car: :railway_car: We are starting up again with the Online #SuperCollider Meetup at Notam. First meetup is Monday next week, January 9th, at 7PM GMT+2.

As in the past, these will happen at 7pm CET (Oslo time). The meetups are occurring online-only via Zoom , and are graciously organized by Notam .

Free and open to everyone, as usual.

SuperCollider meetup:
Meeting ID: 974 3258 0111
Link: Launch Meeting - Zoom

At these meetups, SuperCollider users of all skill levels get together to share ideas, frustrations, help each other and show off projects and workflows in an inspiring and friendly way.

Follow this post using the bell icon (right) to see updates to the schedule, and more specific information about meetup topics.

If you have accessibility related requests or questions about the meetup, please do not hesitate to contact me ( @eirikblekesaune ) and I will will do my best to address them.

All community events at Notam fall under the NOTAM Code of Conduct to make them as inclusive as possible. Please follow the link and read the full Code of Conduct before joining an event: Notam Code of Conduct - Notam

Looking forward to see friendly faces from all parts of the globe in the Zoom room!:smiley:
:last_quarter_moon_with_face::new_moon: :waxing_crescent_moon: :first_quarter_moon: :waxing_gibbous_moon: :full_moon: :full_moon_with_face: :full_moon::waning_gibbous_moon: :last_quarter_moon: :waning_crescent_moon: :new_moon::first_quarter_moon_with_face:

The meetup dates this fall season are:
2023-01-09T18:00:00Z
2023-02-06T18:00:00Z
2023-03-06T18:00:00Z
2023-05-02T17:00:00Z
2023-05-30T17:00:00Z

2 Likes

This evening 2023-01-09T18:00:00Z is the first NOTAM SuperCollider meetup for 2023!

At the last meetup in 2022 we aimed to get some pulses beating and patterns flowing, but we actually didn’t get to it. So for this evening we will try to re-vamp rhythms, both as a topic and as actual beeps and pops in somewhat organized time structures.

Please don’t hesitate to bring your own rhythmical snippets and/or masterpieces for all of us to enjoy.

And, if you feel like talking about something completely different, a project you have been working on, a problem your stuck with, please do.

Or, if you just wanna hang out and be cool, that is most certainly cool too! :sunglasses: :dancer: :man_dancing:

1 Like

And then the first NOTAM SuperCollider meetup has been wrapped up, and it was supernice hanging out, discussing various tricks and methods for using SuperCollider. :weight_lifting_woman: :biking_man:

For those who could not make it this time, the next meetup is 2023-02-06T18:00:00Z

Over the course of the upcoming meetups we will continue to explore various ways to work with rhythms in SuperCollider.

I have created a GitHub repo where I will put up all contributions from the participants:
https://github.com/eirikblekesaune/notam-meetups

Feel free to follow it on GitHub and stay tuned for upcoming examples, tricks, references etc. If you want to contribute with examples etc. please submit pull request and the like.

3 Likes

I mentioned my weekly(-ish) stream sessions in today’s meetup, but (my wife alerted me to the fact that) I gave the wrong weekday! If I said Thursday, that’s wrong. I currently stream on Tuesdays!

1 Like

Very nice session everyone! I forgot that I also had a problem with array / Pkey selection we discussed about. There is also this solution using @_ operator (don’t know what is the name of it). You can read array’s outside of the pattern with it.

(
~freq=[100, 200, 400, 500, 600];
~amp=[0.1, 0.5, 0.6, 0.3, 0.6];
)

(
~freq=[100, 200, 400, 500, 600].scramble;
~amp=[0.1, 0.5, 0.6, 0.3, 0.6].scramble;
)


(
a=
Pbindef(\a,
	\instrument, \default,
	\choose, Prand([0,1,2,3,4], inf),
	\dur, Pseq([1/16], inf),
	\freq,Pseq([Pkey(\choose).collect(~freq@_)], inf),
	\amp, Pkey(\choose).collect(~amp@_),


);

)

b=a.play;
b.stop;
1 Like

It isn’t an operator. @ is an operator, with different meanings depending on context. _ represents the index (see the help on partial application).

The baseline way to address an array is with the method at. The full way to write out the expression is .collect { |index| ~freq.at(index) }. Partial application makes the index argument implicit, so it doesn’t have to be declared and then used: .collect(~freq.at(_)).

Back in SC2 days, I believe, someone decided .at was too verbose and added the operator @, which for arrays simply redirects to at. So .collect(~freq @ _) is only a shorter way to write the first version, nothing more. (Note that I added spaces around the binary operator, as I normally do in my own code, to make it clear that the two punctuation marks do not fold down into a single operator. They are two distinct syntactic elements. Many users favor a style of minimal whitespace but I don’t fully agree with that.)

SC3 introduced C-style array indexing, do you can also write .collect { |index| ~freq[index] } or .collect(~freq[_]). The brackets simply compile to an at call (that is – key concept – array indexing in SC eventually ends up with at).

Here’s a case, btw, where clever, compact syntax makes it harder for users to understand what is going on.

hjh

1 Like

Yup for sure. I had that Pkey / array problem back in 2017 in when I was enrolled a year long SuperCollider course and my teacher Alejandro Olarte showed that solution. Never really investigated futher what it actually was.

In the meetup redFrik showed this other solution. We discussed about how to select freqs/durs from the same array.


(
Pbind(
	#[dur, freq], Pseq([
		[0.2, 400],
		[0.3, 500],
		[0.4, 600],
		[Rest(0.6), nil],
		[0.7, 700],
		[0.8, 800],
		[0.9, [600, 700, 800]]
	]).trace
).play;
)
3 Likes

Dear Meetup SC people,
I have finally uplaoded some sketches and notes from the previous meetup here at the repo:

Next meetup is next week. I’ll post some more information about it soon. And, if anyone want to present something, please don’t hesitate to contact me.

4 Likes

Today, This evening, This morning, Tonite, wherever you may find yourself on our globe, next NOTAM SuperCollider is starting at 2023-02-06T18:00:00Z :weight_lifting_woman: :man_cartwheeling: :flamingo:

And, since we are meeting on Zoom, anyone from anywhere can join.

We started this season with talking about rhythms, and that led you us sharing many fine tips and tricks. On this second meetup we will continue our discovery of rhythms using SuperCollider. Who knows what it will lead to? :woman_mage: Hopefully total rhythmic enlightenment. :person_in_lotus_position: Or bodies eagerly dancing to coded beats. :dancer: :dancing_women: :dancing_women: :dancing_men: :dancing_men: :man_dancing: :mirror_ball:
In any case we will most definitely have a good time.

Hope to see you on the meetup!

Zoom link to the meetup at the top of this topic.

3 Likes

Today! 7PM CET (I guess? Haven’t heard otherwise. I am not involved any other way than just a regular participater)

Dear NOTAM Meetup people of the world :smiley: :world_map:

I am sad to say that the SuperCollider-meetup will this evening be postponed to 2023-03-27T17:00:00Z
We apologize for this. :cry:
But fear not :disappointed_relieved::relieved:, because we will continue out explorations and discussions in just 3 weeks. :partying_face:
Hope to see you all then!

2 Likes

Today is again time for another NOTAM SuperCollider meetup :smiley:
We will meet at Zoom (link above in the topic) at 7PM GMT+2 2023-03-26T22:00:00Z.

We’ll keep it open for anyone to join, participate, present, ask questions etc. etc.

Hope to see you all there! :dizzy:

:last_quarter_moon_with_face: :woman_technologist: :technologist: :man_technologist: :artist: :man_artist: :woman_artist: :woman_mage: :man_mage: :mage: :first_quarter_moon_with_face:

the time of the meeting is probably then (properly converted to any user that has the timezone set): 2023-03-27T17:00:00Z

Thanks @luka

I guess timezones are right up there along with naming variables and cache invalidation…

1 Like

Will there be a meetup today? On the notam website it shows there will be a meetup on 2nd of May. But looks like nothing is happening in zoom…

Join here: https://meet.jit.si/GuerillaNotamMeetup

1 Like

trying here also, " The meeting has not started" …

The Guerilla Notam Meetup has ended. Our splinter group has decided to revolt, and our tactical forces will airstrike the Notam headquarters in 72 hours unless the SC meetup schedule is updated.

3 Likes

some links from Guerilla!

https://danielmkarlsson.github.io/

https://www.omiindustriies.com/cascading-register

https://magnusgranberg.com/skogen

https://www.instagram.com/p/BcVumVuB_U2/
https://www.ciat-lonbarde.net/ciat-lonbarde/paper/index.html

Ouch!!

Somehow I have mixed up the dates in my calendar, so the culprit is solely me, myself and I, and any well deserved guerilla retaliations should be directed to Trondheim where I live, and not NOTAM’s offices in Oslo.
Really sorry for this, but sincerely happy that the guerilla spirit is strong and full of initiative. :smiley: :mechanical_arm:

We will add a new meetup date on 26th of June to the calendar, in addition to the next meetup on May 30th.

3 Likes