Skip to content

Instantly share code, notes, and snippets.

@Doarakko
Doarakko / main.go
Created December 30, 2020 21:43
validate number of digits by golang validator
package main
import (
"fmt"
"os"
"strconv"
"github.com/go-playground/validator/v10"
)
@Doarakko
Doarakko / print_all_kaggle_competitions_info.py
Created October 6, 2019 10:15
Print kaggle competitions information using kaggle api.
import time
from kaggle import KaggleApi
def new_kaggle_api():
api = KaggleApi()
api.authenticate()
return api