The sources of the project follows this structure:
/src
/app
/{domain}
/actions.ts
/actions.spec.ts
func getProduct(digits string) (product int64, e error) { | |
product = 1 | |
for _, digit := range digits { | |
d, err := strconv.Atoi(string(digit)) | |
if err != nil { | |
return -1, fmt.Errorf("cannot convert %v to int", digit) | |
} | |
product *= int64(d) | |
} |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"strings" | |
) | |
func main() { | |
var s string = "Hello World" |
package main | |
import ( | |
"log" | |
"net/http" | |
) | |
func main() { | |
//root path handles EVERY request received | |
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
#!/bin/bash | |
gource \ | |
-s .03 \ | |
-1280x720 \ | |
--auto-skip-seconds .1 \ | |
--multi-sampling \ | |
--stop-at-end \ | |
--key \ | |
--highlight-users \ |
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: |