
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
github.com/nullboundary/gopenframeworks
Advanced tools
Gopenframeworks (temporary project name) is a proof of concept exploring the possibility of using go to create a graphics framework inspired by openframeworks. All contributions to the framework are welcome, but this framework is NOT ready for use yet.
go get github.com/nullboundary/gopenframeworks
package main
import (
"fmt"
gof "github.com/nullboundary/gopenframeworks"
)
var y float32 = 100
var width float32 = 1024
var height float32 = 768
//--------------------------------------------------------------
func (app testApp) Setup() {
fmt.Println("Hello World")
gof.Background(0, 0, 0.2)
}
//--------------------------------------------------------------
func (app testApp) Update() {
y = y - 1
if y < 0 {
y = height
}
}
//--------------------------------------------------------------
func (app testApp) Draw() {
redTriangle := gof.Triangle(0, 0, 0, width, 0, 0, width/2, height, 0)
redTriangle.Fill(1, 0, 0, 1.0) //r,g,b,a
redTriangle.Draw()
cutOutRect := gof.Rectangle((width/2)-150.0, 0, 300, 300) //x,y,w,h
cutOutRect.Fill(0, 0, 0.2, 0.4) //r,g,b,a
cutOutRect.Draw()
movingLine := gof.NewLine(0, y, 0, width, y, 0)
movingLine.Fill(1, 0, 0, 1.0)
movingLine.Draw()
}

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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.