![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/sebogh/dag
Yet another directed acyclic graph (DAG) implementation in golang.
// data structure that will be used as vertex in the graph
type myVertex struct {
Label string
}
// implement the Vertex interface
func (v myVertex) String() string {
return v.Label
}
func main() {
// initialize a new graph
dag := NewDAG()
// init three vertices
var v1 Vertex = myVertex{"1"}
var v2 Vertex = myVertex{"2"}
var v3 Vertex = myVertex{"3"}
// add the above vertices and connect them with two edges
_ = dag.AddEdge(&v1, &v2)
_ = dag.AddEdge(&v1, &v3)
// get children of &v1 -> set (map to bool) containing &v2 and &v3
children, _ := dag.GetChildren(&v1)
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.