multiple testing concepts
This commit is contained in:
parent
268cbcf62a
commit
2c6aed01ae
30
cmd/markov/main.go
Normal file
30
cmd/markov/main.go
Normal file
@ -0,0 +1,30 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"cpl.li/go/markov"
|
||||
)
|
||||
|
||||
func main() {
|
||||
var (
|
||||
maxWords int = 100
|
||||
pairSize int = 2
|
||||
)
|
||||
|
||||
c := markov.NewChain(pairSize)
|
||||
|
||||
c.Add(
|
||||
strings.Fields(
|
||||
string(
|
||||
"West's legal representative has now called those accusations baseless and accused Pisciotta of engaging in blackmail and extortion after the star rejected her sexual advances. In response to these baseless allegations, Ye will be filing a lawsuit against Ms. Pisciotta, they added, using the rapper's current preferred name. Pisciotta is believed to have worked for West from 2021 to 2022, initially on his fashion line before becoming his personal assistant on a salary of $1m (£780,000) per year. She has alleged that, during her employment, the star bombarded her with explicit text, some of which included pornographic videos. Pisciotta also claimed that he masturbated while talking to her on the phone and that, on one occasion, pleasured himself in front of her after \"trapping\" her in a private room on his plane. In her lawsuit, the former OnlyFans model said she was abruptly fired in 2022, and never received her promised severance package. West's lawyer challenged the story, saying that Pisciotta \"was terminated for being unqualified\" and \"demanding unreasonable sums of money\", including an annual salary of $4m (£3.13m). They also accused Pisciotta of \"lascivious, unhinged conduct\", claiming that she \"consistently used sexual coercion\" to demand money and material items, including designer handbags and a Lamborghini car. The statement further alleged that, after West rejected her advances, Pisciotta attempted to blackmail him for $60m (£47m). The BBC contacted Ms Pisciotta to request a response, but she did not immediately respond. On Tuesday, she posted a message to her Instagram story that read: \"Your soul becomes aligned with freedom when you allow others the liberty to dislike you, judge you and disagree with you.",
|
||||
),
|
||||
),
|
||||
)
|
||||
|
||||
b := c.NewBuilder(nil)
|
||||
|
||||
b.Generate(maxWords - pairSize)
|
||||
fmt.Printf("Generated: %s\n", b.String())
|
||||
}
|
13
cmd/name-generator/main.go
Normal file
13
cmd/name-generator/main.go
Normal file
@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
namegen "gitea.smoothnet.org/nhyatt/go-predictive-name-generator"
|
||||
)
|
||||
|
||||
func main() {
|
||||
n := namegen.New()
|
||||
|
||||
fmt.Printf("GeneratedName: %s\n", n.GetRandom())
|
||||
fmt.Printf("GeneratedName: %s\n", n.GetPredictive("this is a seed string"))
|
||||
}
|
34
cmd/unix/main.go
Normal file
34
cmd/unix/main.go
Normal file
@ -0,0 +1,34 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"unsafe"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
const (
|
||||
RNDGETENTCNT int = 0x80045200
|
||||
)
|
||||
|
||||
func main() {
|
||||
var (
|
||||
fd int
|
||||
err error
|
||||
)
|
||||
|
||||
if fd, err = unix.Open("/dev/random", unix.O_RDONLY, 0); err != nil {
|
||||
fmt.Printf("Error: %v\n", err)
|
||||
}
|
||||
defer unix.Close(fd)
|
||||
|
||||
var (
|
||||
ent int
|
||||
)
|
||||
_, _, errno := unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(RNDGETENTCNT), uintptr(unsafe.Pointer(&ent)))
|
||||
if errno != 0 {
|
||||
fmt.Printf("Error: %v\n", errno)
|
||||
}
|
||||
|
||||
fmt.Printf("Available Entropy: %v\n", ent)
|
||||
}
|
6
go.mod
6
go.mod
@ -1,3 +1,9 @@
|
||||
module example.com/examples
|
||||
|
||||
go 1.20
|
||||
|
||||
require (
|
||||
cpl.li/go/markov v1.0.0
|
||||
gitea.smoothnet.org/nhyatt/go-predictive-name-generator v0.0.0-20240604173427-044aaf6ed361
|
||||
golang.org/x/sys v0.22.0
|
||||
)
|
||||
|
10
go.sum
10
go.sum
@ -0,0 +1,10 @@
|
||||
cpl.li/go/markov v1.0.0 h1:egPmFvrV67SQ3tj637UppFxQNIa2KM0rFaA10QinD8k=
|
||||
cpl.li/go/markov v1.0.0/go.mod h1:Z39P2wmro2JTko2/aR38x6wGUc+4l6yyasvP7KRkr9s=
|
||||
gitea.smoothnet.org/nhyatt/go-predictive-name-generator v0.0.0-20240604173427-044aaf6ed361 h1:vvSzUyHZDkKRZWDCOdkRWLDiuXKwCJipAG0L9IJjkpg=
|
||||
gitea.smoothnet.org/nhyatt/go-predictive-name-generator v0.0.0-20240604173427-044aaf6ed361/go.mod h1:9JyyHo++j9CrqFYMKUny/q2d+5shQGAR8FWJlL9JvAg=
|
||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
||||
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
|
||||
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
Loading…
x
Reference in New Issue
Block a user