A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.
This file contains 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
// my solution to https://go.dev/tour/moretypes/26 | |
package main | |
import "fmt" | |
// fibonacci is a function that returns | |
// a function that returns an int | |
func fibonacci() func() int { | |
a, b := -1, 0 |
This file contains 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
// My solution to https://go.dev/tour/moretypes/23 | |
package main | |
import ( | |
"strings" | |
"golang.org/x/tour/wc" | |
) | |
func WordCount(s string) map[string]int { |
This file contains 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
export const getPermissions = () => { | |
// Older browsers might not implement mediaDevices at all, so we set an empty object first | |
if (navigator.mediaDevices === undefined) { | |
navigator.mediaDevices = {}; | |
} | |
// Some browsers partially implement media devices. We can't just assign an object | |
// with getUserMedia as it would overwrite existing properties. | |
// Here, we will just add the getUserMedia property if it's missing. | |
if (navigator.mediaDevices.getUserMedia === undefined) { |
This file contains 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
### | |
Write code to count how many integers are strictly larger than all the integers to their right. | |
Exclude the last digit since it doesn't have a number to its right. E.g. for [2,3,1] the answer should | |
be 1 while for [12,4,4,2,2,3] the answer is 2. | |
### | |
def larger_than_right(input_list): | |
count = 0 | |
tracker = [] | |
max_length = len(input_list) - 1 |
This file contains 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
contractId | AccountNumber | CreatedAt | Amount | Count | Duration | |
---|---|---|---|---|---|---|
1307022 | 142325110 | 9/1/2017 15:54 | 100 | 0 | 5 | |
1307374 | 92511041 | 9/2/2017 16:31 | 100 | 0 | 5 | |
1307721 | 202399520 | 9/4/2017 11:08 | 100 | 0 | 5 | |
1307764 | 676152506 | 9/4/2017 12:12 | 100 | 0 | 5 | |
1307862 | 698858327 | 9/4/2017 15:00 | 100 | 0 | 5 | |
1308371 | 850930502 | 9/5/2017 16:50 | 200 | 0 | 15 | |
1308652 | 146483814 | 9/6/2017 14:48 | 250 | 0 | 29 | |
1308741 | 258184267 | 9/6/2017 15:32 | 200 | 0 | 15 | |
1309129 | 766122339 | 9/7/2017 12:53 | 100 | 0 | 5 |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |