Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
misc /
cgo /
life /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
c-life.c
1.43
KB
-rw-r--r--
life.go
898
B
-rw-r--r--
life.h
292
B
-rw-r--r--
main.go
827
B
-rw-r--r--
main.out
272
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main.go
// run -tags=use_go_run // Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build test_run // Run the game of life in C using Go for parallelization. package main import ( "flag" "fmt" "cgolife" ) const MAXDIM = 100 var dim = flag.Int("dim", 16, "board dimensions") var gen = flag.Int("gen", 10, "generations") func main() { flag.Parse() var a [MAXDIM * MAXDIM]int32 for i := 2; i < *dim; i += 8 { for j := 2; j < *dim-3; j += 8 { for y := 0; y < 3; y++ { a[i**dim+j+y] = 1 } } } cgolife.Run(*gen, *dim, *dim, a[:]) for i := 0; i < *dim; i++ { for j := 0; j < *dim; j++ { if a[i**dim+j] == 0 { fmt.Print(" ") } else { fmt.Print("X") } } fmt.Print("\n") } }
Close