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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: orange; icon-glyph: quote-right; | |
// Thanks to: https://gist.github.com/spencerwooo/7955aefc4ffa5bc8ae7c83d85d05e7a4 | |
/** | |
* query keys for each site | |
*/ | |
const github = "SaoYan" |
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
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
/* | |
This solution uses channels to force each gorountines to wait for its child gorountines to exit. | |
*/ |