Networking: accessed through my Packtpub.com account, 45 minutes:
start of chapter 3 summary in Cherry Tree:
Chapter 3: Network Topologies, Connectors, and Wiring Standards
List of objectives and section 1, Physical media up to beginning of
‘Ethernet Cable Descriptions’ section
Mathematics: Geometry, 1 hour:
finished typing out postulates, theorems and constructions
for chapters 9-14, completing my memorization guide for review of the
aforementioned material through the reaminder of my geometry studies
AWS CCP: tutorialsdojo.com and aws.training.com portal, 4 hours:
Tutorials dojo: Section-based reviews:
- Security
- technology
- billing and pricing
aws training portal: - Module 5: Storage and Databases
- Module 6: Security
Supercollider: From ‘A gentle introduction to Supercollider’: 35 minutes:
Set Tchaikovsky melody with lower counterpoint using example provided in book.
This helped to codify several concepts.
The example code is given here:
(
var myDurs = Pseq([Pn(1, 5), 3, Pn(1, 5), 3, Pn(1, 6), 1/2, 1/2, 1, 1, 3, 1, 3], inf) * 0.4;
~upperMelody = Pbind(
\midinote, Pseq([69, 74, 76, 77, 79, 81, Pseq([81, 79, 81, 82, 79, 81], 2), 82, 81, 79, 77, 76, 74, 74], inf),
\dur, myDurs
);
~lowerMelody = Pbind(
\midinote, Pseq([57, 62, 61, 60, 59, 58, 57, 55, 53, 52, 50, 49, 50, 52, 50, 55, 53, 52, 53, 55, 57, 58, 61, 62, 62], inf),
\dur, myDurs
);
)
(
~player1 = ~upperMelody.play;
~player2 = ~lowerMelody.play;
)
(
~player1.stop;
~player2.stop;
)