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.10
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 /
stringex /
localization /
[ HOME SHELL ]
Name
Size
Permission
Action
backend
[ DIR ]
drwxr-xr-x
conversion_expressions.rb
4.81
KB
-rw-r--r--
converter.rb
3.21
KB
-rw-r--r--
default_conversions.rb
2.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : default_conversions.rb
# encoding: UTF-8 module Stringex module Localization module DefaultConversions CHARACTERS = { and: "and", at: "at", degrees: "degrees", divide: "divided by", dot: '\1 dot \2', ellipsis: "dot dot dot", equals: "equals", number: "number", percent: "percent", plus: "plus", slash: "slash", star: "star", } CURRENCIES_SIMPLE = { generic: '\1 dollars', dollars: '\1 dollars', euros: '\1 euros', pounds: '\1 pounds', yen: '\1 yen', } CURRENCIES_COMPLEX = { dollars_cents: '\1 dollars \2 cents', euros_cents: '\1 euros \2 cents', pounds_pence: '\1 pounds \2 pence', } CURRENCIES = CURRENCIES_SIMPLE.merge(CURRENCIES_COMPLEX) HTML_ENTITIES = { amp: "and", cent: " cents", copy: "(c)", deg: " degrees ", divide: " divided by ", double_quote: '"', ellipsis: "...", en_dash: "-", em_dash: "--", frac14: "one fourth", frac12: "half", frac34: "three fourths", gt: ">", lt: "<", nbsp: " ", pound: " pounds ", reg: "(r)", single_quote: "'", times: "x", trade: "(tm)", yen: " yen " } TRANSLITERATIONS = {} # Ordered by denominator then numerator of the value VULGAR_FRACTIONS = { half: "half", one_third: "one third", two_thirds: "two thirds", one_fourth: "one fourth", three_fourths: "three fourths", one_fifth: "one fifth", two_fifths: "two fifths", three_fifths: "three fifths", four_fifths: "four fifths", one_sixth: "one sixth", five_sixths: "five sixths", one_eighth: "one eighth", three_eighths: "three eighths", five_eighths: "five eighths", seven_eighths: "seven eighths", } class << self %w{characters currencies html_entities transliterations vulgar_fractions}.each do |conversion_type| define_method conversion_type do const_get conversion_type.upcase end end end end end end
Close