TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL INTERESTINGNESS | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
DrupalCon Nashville 2018: From Homeless Addict to Winning Drupal: How A Community Can Save Lives | https://www.youtube.com/watch?v=5Dh2qexIJns | 1998 | 0.2197 | 0.2197 | 9094 | 9094 | 0 | 0 |
DrupalCon Denver 2012: GROWING A VIRTUAL COMPANY & MAINTAINING TEAM MOXIE | https://www.youtube.com/watch?v=NagGNgVODC8 | 2 | 0.1053 | 0.1053 | 19 | 19 | 0 | 0 |
Dr |
TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL REACTION | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
3 LEAKS et THÉORIES sur POKÉMON SWITCH (Let's Go Pikachu, Let's Go Evoli) | https://www.youtube.com/watch?v=OsCXHMu3SKo | 6240 | 0.0593 | 0.0696 | 104133 | 103301 | 118 | 832 |
LE PROCHAIN JEU POKÉMON EST ANNONCÉ !! | https://www.youtube.com/watch?v=jkgS6mrKR_o | 12421 | 0.0475 | 0.0551 | 256285 | 254972 | 312 | 1313 |
L'HISTOIRE FOLLE DU WEB POKÉMON. | https://www.youtube.com/watch?v=1zWhtBRQ19g | 12891 |
TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL INTERESTINGNESS | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
GopherCon 2018 Lightning Talk: Brad Fitzpatrick - The nuclear option, go test -run=InQemu | https://www.youtube.com/watch?v=69Zy77O-BUM | 60 | 0.0823 | 0.0878 | 733 | 729 | 0 | 4 |
GopherCon 2018 Lightning Talk: Matt Layher - Linux Netlink and Go in 7 Minutes or Less | https://www.youtube.com/watch?v=tw-9fNygYE4 | 11 | 0.0701 | 0.0828 | 159 | 157 | 0 | 2 |
Gopher |
TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL INTERESTINGNESS | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
DrupalCon Nashville 2018: From Homeless Addict to Winning Drupal: How A Community Can Save Lives | https://www.youtube.com/watch?v=5Dh2qexIJns | 1997 | 0.2196 | 0.2196 | 9094 | 9094 | 0 | 0 |
DrupalCon Nashville 2018: Driesnote | https://www.youtube.com/watch?v=8HkOdpNT8Ec | 57 | 0.0033 | 0.0047 | 16314 | 16298 | 3 | 16 |
DrupalCon Nashville 2018: Webcompo |
TITLE | URL | VIEWS | LIKES | DISLIKES | COMMENTS |
---|---|---|---|---|---|
L'ordinateur quantique (D. Rousset) | https://www.youtube.com/watch?v=ciM6xK05t2o | 4690 | 116 | 2 | 5 |
La e residence estonienne et l’entrepreneuriat sans frontieres (A. Castaignet) | https://www.youtube.com/watch?v=qTpKVBZoMs4 | 672 | 8 | 0 | 1 |
Software Heritage Pourquoi et comment preserver le patrimoine logiciel de l'Humanite (R. Di Cosmo) | https://www.youtube.com/watch?v=UqUh02955EQ | 267 | 5 | 0 | 0 |
L'Homme sur Mars Pourquoi ? Comment ? Les défis (R. Heidmann) |
TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL INTERESTINGNESS | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
GopherCon UK 2018: Florin Patan - Production Ready Go Service in 30 Minutes | https://www.youtube.com/watch?v=wxkEQxvxs3w | 106 | 0.0237 | 0.0251 | 4345 | 4345 | 3 | 0 |
GopherCon UK 2018: Kat Zien - How do you structure your Go apps? | https://www.youtube.com/watch?v=VQym87o91f8 | 59 | 0.0262 | 0.0281 | 2173 | 2173 | 2 | 0 |
GopherCon UK 2018: Roberto Clapis |
TITLE | URL | LIKES | POSITIVE INTERESTINGNESS | TOTAL INTERESTINGNESS | GLOBAL BUZZ | VIEWS | DISLIKES | COMMENTS |
---|---|---|---|---|---|---|---|---|
GopherCon 2018: Jon Bodner - Go Says WAT | https://www.youtube.com/watch?v=zPd0Cxzsslk | 88 | 0.0271 | 0.0302 | 3255 | 3245 | 0 | 10 |
GopherCon 2018: Kavya Joshi - The Scheduler Saga | https://www.youtube.com/watch?v=YHRO5WQGh0k | 79 | 0.0356 | 0.0394 | 2135 | 2133 | 3 | 2 |
GopherCon 2018: Filipp |
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
func http_request (url string) ([]byte, int, error) { | |
var httpClient = &http.Client{Timeout: 10 * time.Second} | |
req, err := http.NewRequest("GET", url, nil) | |
if err != nil { | |
log.Fatal("Cannont prepare the HTTP request", err) | |
} | |
// Optional basic authentification |
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" | |
"log" | |
"github.com/spf13/viper" | |
) | |
// Configuration structure for "viper" config management |