Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
gjs /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
calc.js
3.59
KB
-rw-r--r--
dbus-client.js
4.73
KB
-rw-r--r--
dbus-service.js
3.43
KB
-rw-r--r--
gettext.js
630
B
-rw-r--r--
gio-cat.js
733
B
-rw-r--r--
glistmodel.js
3.73
KB
-rw-r--r--
gtk3-template.js
1.54
KB
-rw-r--r--
gtk3-template.ui
1.61
KB
-rw-r--r--
gtk4-template.js
1.59
KB
-rw-r--r--
gtk4-template.ui
1.61
KB
-rw-r--r--
gtk-application.js
3.65
KB
-rw-r--r--
gtk.js
2.53
KB
-rw-r--r--
http-client.js
1.4
KB
-rw-r--r--
http-server.js
1.19
KB
-rw-r--r--
README
77
B
-rw-r--r--
test.jpg
35.55
KB
-rw-r--r--
test.jpg.license
158
B
-rw-r--r--
timers.js
434
B
-rw-r--r--
webkit.js
485
B
-rw-r--r--
websocket-client.js
1.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gtk3-template.ui
<!-- SPDX-License-Identifier: MIT OR LGPL-2.0-or-later --> <!-- SPDX-FileCopyrightText: 2021 Andy Holmes <andyholmes@gnome.org> --> <interface> <!-- Template * class: must be the `GTypeName` given in the class definition, or the class name prefixed with `Gjs_` if not given (eg `Gjs_ExampleWinow`) * parent: the GType name of the derived class --> <template class="ExampleWindow" parent="GtkWindow"> <property name="default-width">480</property> <property name="default-height">320</property> <child> <object class="GtkBox" id="box"> <property name="visible">True</property> <child> <object class="GtkButton" id="button"> <property name="label">Button</property> <property name="halign">center</property> <property name="hexpand">True</property> <property name="valign">center</property> <property name="visible">True</property> <!-- Signals * name: the signal name * handler: the name of method on the subclass to call when emitted * swapped: must always be "no" in GJS applications * object: the object bound to `this` in the callback. This is usually the template class (eg. `ExampleClass`) but may also be an object ID (eg. `box` or `button`). --> <signal name="clicked" handler="_onButtonClicked" swapped="no" object="ExampleWindow"/> </object> </child> </object> </child> </template> </interface>
Close