hub
GJSON
Our great sponsors
- Onboard AI - Learn any GitHub repo in 59 seconds
- InfluxDB - Collect and Analyze Billions of Data Points in Real Time
- SaaSHub - Software Alternatives and Reviews
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
hub
-
Pull request Best Practices
Try automating the PR process as much as possible. Make use of tools like hub CLI for speeding up the pull request process. Code quality tools can help you automate the due diligence for coding standards and conventions, and test automation tools can assist in bug discovery, and identifying security vulnerabilities.
- Problem with Docker Hub and submodules
-
[Media] I made a Rust CLI game that tests how fast you can guess the language of a code block!
parse_git_branch() { # Speed up opening up a new terminal tab by not # checking `$HOME` ...which can't be a repo anyway # # For the heck of it, micro-optimize this too: # time (repeat 1000000 { [ "$PWD" = "$HOME" ] } ) == ~4.2s # time (repeat 1000000 { [[ "$PWD" == "$HOME" ]] } ) == ~1.4s [[ "$PWD" == "$HOME" ]] && return # Fastest known way to check the current branch name # (Uses `command` to bypass wrappers like https://hub.github.com/) ref="$(command git symbolic-ref --short HEAD 2> /dev/null)" || return echo " [$ref]" }
- Mais de 10 coisas para fazer antes de solicitar revisão do seu Pull Request
-
Gitea – a painless self-hosted Git service
Which will create a new remote with that name (otherwise origin will be used).
It is also less typing.
-
My Termial Aliases
I alias git to use HUB from GitHub
-
Noob question: Up until now I've always started with creating a repository on github and cloning it to my pc. This time I've already started a project with vs code and am not sure how to get it to github. Do I just use 'Import a Repository' on github?
If you also install Hub https://github.com/github/hub it gives you a git create command, it also has a set of really useful additional CLI utilities.
-
My current Indie Hacking toolkit
SCM: Git + Hub (https://github.com/github/hub)
-
Get lazy with lazygit
This is my favorite feature of this tool. Because every time I commit something and want to create PR/MR, I have to do a bunch of repetitive clicks here and there. On top of that, sometimes I have to work with GitHub, sometimes GitLab. So even if I wanna use the GitHub CLI tool hub or GitLab CLI tool glab, I am ending up using two different tools. So it's nice when I can open PR/MR just by a shortcut within a second or two regardless of what SCM I am on.
-
Apps, Tools, and Gear I Use (2021 edition)
Hub - a wrapper for Git command (Git+Hub=GitHub).
GJSON
-
Rob Pike: Gobs of data (2011)
Someone made a benchmark of serialization libraries in go [1], and I was surprised to see gobs is one of the slowest ones, specially for decoding. I suspect part of the reason is that the API doesn't not allow reusing decoders [2]. From my explorations it seems like both JSON [3], message-pack [4] and CBOR [5] are better alternatives.
By the way, in Go there are a like a million JSON encoders because a lot of things in the std library are not really coded for maximum performance but more for easy of usage, it seems. Perhaps this is the right balance for certain things (ex: the http library, see [6]).
There are also a bunch of libraries that allow you to modify a JSON file "in place", without having to fully deserialize into structs (ex: GJSON/SJSON [7] [8]). This sounds very convenient and more efficient that fully de/serializing if we just need to change the data a little.
--
1: https://github.com/alecthomas/go_serialization_benchmarks
2: https://github.com/golang/go/issues/29766#issuecomment-45492...
--
3: https://github.com/goccy/go-json
4: https://github.com/vmihailenco/msgpack
5: https://github.com/fxamacker/cbor
--
6: https://github.com/valyala/fasthttp#faq
--
-
Jj: JSON Stream Editor
I like jq, but jj is so fast it is my go-to for pretty printing large json blobs. Its parsing engine is available as a standalone google module, and I've used it in a few projects where I needed faster parsing than encoding/json:
```
I don't think there is a way to sort an array, though. However, there is an option to have keys sorted. Personally, I don't think there is much annoyance in that. One could just pipe `jj` output to `sort | uniq -c`.
-
Library to analyze an arbitrary JSON string
I’m using GJSON, so far so good!
-
Any way to convert unknown/dynamic json to generic object structure
https://github.com/tidwall/gjson is a relatively sensible library if this is something you need to deal with and the structure is actually unknowable.
- Need help with getting the grandchild in nested JSON
- Double down on python or learn Go
- Ad hoc JSON parsing
-
Ask HN: Why isn't JSON-RPC more widely adopted?
one way could be you peek method using sth like https://github.com/tidwall/gjson
-
Is there a way to parse unstructured data?
That’s because Go is a statically typed language. If you want to easily access the data, you need to know the structure, if you don’t know the structure, then you’re going to have to jump through hoops to get at the data. I would probably try using https://github.com/tidwall/gjson if I were you.
What are some alternatives?
jsoniter - A high-performance 100% compatible drop-in replacement of "encoding/json"
gron - gron, Cron Jobs in Go.
resty - Simple HTTP and REST client library for Go
go-json - Fast JSON encoder/decoder compatible with encoding/json for Go
ngrok - Introspected tunnels to localhost
goreporter - A Golang tool that does static analysis, unit testing, code review and generate code quality report.
intrinsic
goreleaser - Deliver Go binaries as fast and easily as possible
hystrix-go - Netflix's Hystrix latency and fault tolerance library, for Go
gojson - Automatically generate Go (golang) struct definitions from example JSON
ctop - Top-like interface for container metrics