Here's a set of links I've curated that have helped me learn more about Golang.
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
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <[email protected]> | |
| # Modified by: alirobe <[email protected]> based on my personal preferences. | |
| # Version: 2.20.1, 2018-07-23 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
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
| import java.util.Random; | |
| import java.util.Arrays; | |
| public class TheBestRandomWeighted { | |
| private static final Random rand = new Random(); | |
| public static void main(String[] argv) { | |
| int low = 0; | |
| int dip = 12; | |
| int peak = 88; |
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
| run: | |
| deadline: 30s | |
| skip-dirs: | |
| - "vendor" | |
| - "go-build" | |
| - "\\.gen" | |
| - ".*/\\.tmp/.*$" | |
| - ".*/go-build/\\.go/.*$" | |
| - ".*/go-build/\\.tmp/.*$" | |
| - ".*/vendor/.*$" |
OlderNewer