Date | Description | Time |
---|---|---|
Monday, September 9 | Rehearsals Begin East Rockford MS Bandroom Subsequent rehearsals each Monday evening |
7:00–9:00pm |
Monday, October 21 | Performance at Porter Hills Call time: 6:00pm |
7:00pm |
Monday, October 28 | Performance at Breton Woods Call time: 6:00pm |
7:00pm |
Sunday, December 8 | Holiday Concert Rockford HS Auditorium Call time: 2:00pm |
3:00pm |
Monday, December 9 | Performance at Covenant Village Call time: 6:00pm |
7:00pm |
Monday, January 6 | Rehearsals resume East Rockford MS Bandroom *Subsequent rehearsals each Monday evenin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace MultiDimensionArray | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var x = new int[2, 3]; | |
UseArray(x); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\ohnob>SET _test=this is ab test of abs. | |
C:\Users\ohnob>ECHO %_test:*ab=% | |
test of abs. | |
C:\Users\ohnob>ECHO %_test:ab=% | |
this is test of s. | |
C:\Users\ohnob>ECHO %_test:*ab=% | |
test of abs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Apparently there’s a thing called cycle() for this in python: | |
>>> x = ['a', 'b', 'c'] | |
>>> [x[i % len(x)] for i in range(0, 20)] | |
['a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a', 'b'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH number AS (SELECT | |
CAST(1 AS BIGINT) Value | |
UNION ALL SELECT | |
n.Value + 1 | |
FROM number n | |
WHERE n.Value < 100) | |
SELECT n.Value | |
FROM number n | |
ORDER BY n.Value | |
; |
Adapted as text from French Guy Cooking’s Beef Rendang video.
6-8 servings
- Toasted coconut
- 10tbsp dry shredded coconut
- Dry spices
Transcribed from https://www.youtube.com/watch?v=iBSKWTtzumg and altered:
- mirin is already sweet, so don’t add yet more sugar.
- I don’t add any garnish.
makes one bowl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() | |
{ | |
byte b[] = loadBytes("ih.mid"); | |
for (int i = 0; i < b.length && i < 16; i++) | |
{ | |
if ((i % 10) == 0) | |
{ | |
println(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System | |
Public Module Program | |
Public Sub Main() | |
Dim num = 23 | |
Dim value = "This is some text, but it is free-form and might have double quotes ("") in it" | |
Dim value2 = "Text with a" & Environment.NewLine & "newline" | |
Console.WriteLine(QuoteCsvField(value) & "," & QuoteCsvField(value2) &"," & num) | |
End Sub | |
Public Function QuoteCsvField(value As String) As String | |
Return """" & value.Replace("""", """""") & """" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public static class Program { | |
public static void Main() { | |
var num = 23; | |
var value = "This is some text, but it is free-form and might have double quotes (\") in it"; | |
var value2 = "Text with a\r\nnewline"; | |
Console.WriteLine(QuoteCsvString(value) + "," + QuoteCsvString(value2) + "," + num); | |
} | |
public static string QuoteCsvString(string value) { | |
return "\"" + value.Replace("\"", "\"\"") + "\""; |