| 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
| 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 | |
| ; |
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
| 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
| 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
| // Copyright 2019 Nathan Phillip Brink | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining | |
| // a copy of this software and associated documentation files (the | |
| // "Software"), to deal in the Software without restriction, including | |
| // without limitation the rights to use, copy, modify, merge, publish, | |
| // distribute, sublicense, and/or sell copies of the Software, and to | |
| // permit persons to whom the Software is furnished to do so, subject to | |
| // the following conditions: | |
| // |
This is in reaction to http://www.madhur.co.in/blog/2016/09/05/nodejs-connection-pooling.html
It is critical that you remember to release connections to the pool if you are using pooling with the mysql module.
It is best to use the pool.query() command if you can.
You’ll know if you can’t.
Examples of things which cannot use pool.query() but must use pool.getConnection() followed by connection.release() are:
- Using transactions where you send multiple commands to the server.
- Sharing per-session data objects between subsequent commands sent to the server such as temporary tables.
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
| XDocument.Parse(XDocument.Parse("<x xml:space=\"preserve\">
\n</x>").ToString(SaveOptions.DisableFormatting)).Root.Value == "\r\n" |
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
| XDocument.Parse("<x xml:space=\"preserve\">
\n</x>").Root.Value == "\r\n" |
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
| #!/usr/bin/env python | |
| def my_func(x): | |
| print(x) | |
| def build_my_func_call(x): | |
| def f(): | |
| my_func(x) | |
| return f |