Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.49
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
pycairo-1.8.10 /
examples /
gtk /
Delete
Unzip
Name
Size
Permission
Date
Action
cairo-demo.py
2.45
KB
-rwxr-xr-x
2009-08-06 12:47
cairo-knockout.py
3.47
KB
-rwxr-xr-x
2009-08-06 12:47
hangman.py
6.54
KB
-rwxr-xr-x
2009-08-06 12:47
lsystem.py
3
KB
-rwxr-xr-x
2009-08-06 12:47
png_view.py
682
B
-rwxr-xr-x
2009-08-06 12:47
text.py
875
B
-rwxr-xr-x
2009-08-06 12:47
Save
Rename
#!/usr/bin/env python import cairo import gtk def expose_event(widget, event): ctx = widget.window.cairo_create() ctx.set_line_width(6) ctx.set_tolerance(.1) ctx.select_font_face('sans-serif') ctx.set_font_size(48) (x, y, width, height, dx, dy) = ctx.text_extents('Hello World') ctx.translate (100, 100) ctx.new_path() ctx.move_to(x-10,y-10) ctx.rel_line_to(width + 20, 0) ctx.rel_line_to(0, height + 20) ctx.rel_line_to(-(width + 20), 0) ctx.close_path() ctx.set_source_rgb(0,0,1) ctx.stroke() ctx.move_to(0, 0) ctx.set_source_rgb(0,0,0) ctx.show_text('Hello World') win = gtk.Window() win.connect('destroy', gtk.main_quit) drawingarea = gtk.DrawingArea() win.add(drawingarea) drawingarea.connect('expose_event', expose_event) drawingarea.set_size_request(400,150) win.show_all() gtk.main()