https://pkg.go.dev/github.com/mitchellh/mapstructure
https://github.com/coreos?q=&type=all&language=rust&sort=
https://github.com/orgs/coreos/repositories?q=&type=all&language=go&sort=stargazers
# workspace | |
export GOPATH=$HOME/go # mkdir that one | |
export GOROOT=/usr/local/go # native src | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin | |
export GO111MODULE=on | |
# use the network to update the named packages and dependencies |
### Keybase proof | |
I hereby claim: | |
* I am ilovejs on github. | |
* I am ilovejs (https://keybase.io/ilovejs) on keybase. | |
* I have a public key ASBnUVa_C7CXpUUxq24MQ7b20YTLuTZh376rE5GfJk20zgo | |
To claim this, I am signing this object: |
{ | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Courier", | |
"redhat.telemetry.enabled": false, | |
"terminal.integrated.fontFamily": "Courier", | |
"terminal.integrated.lineHeight": 1.2, | |
"terminal.integrated.letterSpacing": 0, | |
"terminal.integrated.gpuAcceleration": "canvas", | |
"workbench.preferredDarkColorTheme": "Visual Studio Dark", | |
"window.autoDetectColorScheme": true, |
import 'dart:convert'; | |
import 'dart:math'; | |
import 'dart:ui'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(ApiCall()); | |
class ApiCall extends StatelessWidget { |
I hereby claim:
To claim this, I am signing this object:
package balance | |
import ( | |
"runtime" | |
"sync" | |
"sync/atomic" | |
"testing" | |
) | |
const MaxCount = 10000 |
silver searcher: https://geoff.greer.fm/ag/
ack: https://github.com/samaaron/ack
ag "pdftk"
grep -R "toUppercase()" *
"""An example of writing an API to scrape hacker news once, and then enabling usage everywhere""" | |
import hug | |
import requests | |
@hug.local() | |
@hug.cli() | |
@hug.get() | |
def top_post(section: hug.types.one_of(('news', 'newest', 'show'))='news'): | |
"""Returns the top post from the provided section""" |