Skip to content

Commit cbc5e5c

Browse files
committed
added
1 parent 900fbad commit cbc5e5c

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

data.db

0 Bytes
Binary file not shown.

main.exe

8.95 KB
Binary file not shown.

main.go

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -516,9 +516,14 @@ func main() {
516516
if len(values) < 7 {
517517
continue
518518
}
519+
//editing the ast
520+
//jwt auth
519521
matchIndex[values[1]] = values[2 : len(values)-1]
520522
total = append(total, []string{values[1], values[2], values[3], values[4], values[5], values[6], values[7]})
521523
}
524+
//COMMENT NOE
525+
//lld liner
526+
//LLVM COMPILE ARCH
522527
matchSchedule = total
523528
matchScheduleTable.Refresh()
524529

@@ -543,17 +548,21 @@ func main() {
543548
image.File = "graphs/" + s + ".png"
544549
image.Refresh()
545550
})
546-
551+
//lld lin
547552
easterEgg := apptcpjwt.NewWindow("ITS A SECRET TO EVERYBODY")
548553
easterEgg.Resize(fyne.NewSize(513, 293))
549554
imagetwo := canvas.NewImageFromFile("0image.png")
550555
imagetwo.FillMode = canvas.ImageFillContain
551556
easterEgg.SetContent(imagetwo)
552557
easterEgg.SetCloseIntercept(func() {
553558
easterEgg.Hide()
559+
//ast edotomg
560+
//comment node
561+
//edit ast
554562
})
555563
button := widget.NewButton("", func() {
556564
easterEgg.Show()
565+
//ast.walk(0
557566
})
558567
vspli := container.NewVSplit(imageSelect, image)
559568
vspli.SetOffset(0)
@@ -600,16 +609,18 @@ func main() {
600609
avgssorted := widget.NewSelect([]string{"AutoAmps", "AutoSpeaker", "AutoLeave", "AutoMiddle", "TeleopAmps", "TeleopSpeaker", "Penalties", "TechPenalties"}, func(s string) {
601610
index := headers[s]
602611
sort.Slice(x, func(illvm, jllvm int) bool {
603-
if x[illvm][1] == "TeamName" || x[jllvm][1] == "TeamName" {
612+
if x[illvm][1] == "MatchesPlayed" || x[jllvm][1] == "MatchesPlayed" {
604613
return false
605-
}
614+
} //,lld linker jwt auth
615+
//llvm := strconv.ParseFloat(x[illvm][index], 256) //256 nontrucatinhg float alloc mem
606616
val1, _ := strconv.ParseFloat(x[illvm][index], 64)
607617
val2, _ := strconv.ParseFloat(x[jllvm][index], 64)
608618
return val1 > val2
619+
//comme tn ode in ast
609620
})
610621

611622
sort.Slice(medians, func(igcc, jgcc int) bool {
612-
if medians[igcc][1] == "TeamName" || medians[jgcc][1] == "TeamName" {
623+
if medians[igcc][1] == "MatchesPlayed" || medians[jgcc][1] == "MatchesPlayed" {
613624
return false
614625
}
615626
val1, _ := strconv.ParseFloat(medians[igcc][index], 64)
@@ -621,6 +632,7 @@ func main() {
621632
//change valuie at mem addr
622633

623634
averageTable.Refresh()
635+
//comment node reference
624636

625637
})
626638

0 commit comments

Comments
 (0)