What do you want to save?
Add Code snippet
New code examples in category Go
-
-
-
Phoenix Logan 2022-03-12 11:30:12
using heredoc with kubectl create
# Create multiple YAML objects from stdin cat <<EOF | kubectl apply -f - apiVersion: v1 kind: Pod metadata: name: busybox-sleep spec: containers: - name: busybox image: busybox args: - sleep - "1000000" --- apiVersion... Add solution -
Awgiedawgie 2022-03-08 11:10:05
roblox how to make something go in an elliptical orbit
local center = workspace.Earth; local moon = script.Parent; local ORBIT_TIME = 2; local RADIUS = 10; local ECLIPSE = 0.5 local ROTATION = CFrame.Angles(0,0,0); local sin, cos = math.sin, math.cos; local ROTSPEED = math.pi*2/ORBIT_TIME; ECLIPSE = ECLIPS... Add solution -
-
Awgiedawgie 2022-03-05 05:35:03
golang http set user agent header
import "net/http" req, err := http.NewRequest("GET", "http://httpbin.org/user-agent", nil) if err != nil { log.Fatalln(err) } req.Header.Set("User-Agent", "Golang_Spider_Bot/3.0") ... Add solution
Best helpers
Ranking is empty