Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cqt /
node_modules /
d3-time /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
day.js
1
KB
-rw-r--r--
duration.js
321
B
-rw-r--r--
hour.js
798
B
-rw-r--r--
index.js
1.39
KB
-rw-r--r--
interval.js
2.03
KB
-rw-r--r--
millisecond.js
633
B
-rw-r--r--
minute.js
768
B
-rw-r--r--
month.js
796
B
-rw-r--r--
second.js
403
B
-rw-r--r--
ticks.js
2.47
KB
-rw-r--r--
week.js
1.98
KB
-rw-r--r--
year.js
1.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hour.js
import {timeInterval} from "./interval.js"; import {durationHour, durationMinute, durationSecond} from "./duration.js"; export const timeHour = timeInterval((date) => { date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond - date.getMinutes() * durationMinute); }, (date, step) => { date.setTime(+date + step * durationHour); }, (start, end) => { return (end - start) / durationHour; }, (date) => { return date.getHours(); }); export const timeHours = timeHour.range; export const utcHour = timeInterval((date) => { date.setUTCMinutes(0, 0, 0); }, (date, step) => { date.setTime(+date + step * durationHour); }, (start, end) => { return (end - start) / durationHour; }, (date) => { return date.getUTCHours(); }); export const utcHours = utcHour.range;
Close