Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.107
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
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
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Numeric /
[ HOME SHELL ]
Name
Size
Permission
Action
%2b%40-i.yaml
255
B
-rw-r--r--
%2d%40-i.yaml
269
B
-rw-r--r--
%3c%3d%3e-i.yaml
301
B
-rw-r--r--
abs-i.yaml
406
B
-rw-r--r--
angle-i.yaml
218
B
-rw-r--r--
arg-i.yaml
255
B
-rw-r--r--
cdesc-Numeric.yaml
1.9
KB
-rw-r--r--
ceil-i.yaml
566
B
-rw-r--r--
coerce-i.yaml
792
B
-rw-r--r--
conj-i.yaml
222
B
-rw-r--r--
conjugate-i.yaml
312
B
-rw-r--r--
div-i.yaml
393
B
-rw-r--r--
divmod-i.yaml
2.04
KB
-rw-r--r--
eql%3f-i.yaml
484
B
-rw-r--r--
fdiv-i.yaml
331
B
-rw-r--r--
floor-i.yaml
507
B
-rw-r--r--
im-i.yaml
248
B
-rw-r--r--
imag-i.yaml
218
B
-rw-r--r--
image-i.yaml
289
B
-rw-r--r--
integer%3f-i.yaml
349
B
-rw-r--r--
modulo-i.yaml
313
B
-rw-r--r--
nonzero%3f-i.yaml
706
B
-rw-r--r--
polar-i.yaml
220
B
-rw-r--r--
quo-i.yaml
329
B
-rw-r--r--
real-i.yaml
254
B
-rw-r--r--
remainder-i.yaml
596
B
-rw-r--r--
round-i.yaml
380
B
-rw-r--r--
singleton_method_added-i.yaml
330
B
-rw-r--r--
step-i.yaml
1.3
KB
-rw-r--r--
to_int-i.yaml
316
B
-rw-r--r--
truncate-i.yaml
388
B
-rw-r--r--
zero%3f-i.yaml
289
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : step-i.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Invokes <em>block</em> with the sequence of numbers starting at <em>num</em>, incremented by <em>step</em> on each call. The loop finishes when the value to be passed to the block is greater than <em>limit</em> (if <em>step</em> is positive) or less than <em>limit</em> (if <em>step</em> is negative). If all the arguments are integers, the loop operates using an integer counter. If any of the arguments are floating point numbers, all are converted to floats, and the loop is executed <em>floor(n + n*epsilon)+ 1</em> times, where <em>n = (limit - num)/step</em>. Otherwise, the loop starts at <em>num</em>, uses either the <tt><</tt> or <tt>></tt> operator to compare the counter against <em>limit</em>, and increments itself using the <tt>+</tt> operator. - !ruby/struct:SM::Flow::VERB body: " 1.step(10, 2) { |i| print i, " " }\n Math::E.step(Math::PI, 0.2) { |f| print f, " " }\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " 1 3 5 7 9\n 2.71828182845905 2.91828182845905 3.11828182845905\n" full_name: Numeric#step is_singleton: false name: step params: | num.step(limit, step ) {|i| block } => num visibility: public
Close