Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.124
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
tkextlib /
blt /
Delete
Unzip
Name
Size
Permission
Date
Action
tile
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
barchart.rb
1.78
KB
-rw-r--r--
2023-07-26 18:09
bitmap.rb
2.51
KB
-rw-r--r--
2023-07-26 18:09
busy.rb
1.72
KB
-rw-r--r--
2023-07-26 18:09
component.rb
59.78
KB
-rw-r--r--
2023-07-26 18:09
container.rb
671
B
-rw-r--r--
2023-07-26 18:09
cutbuffer.rb
551
B
-rw-r--r--
2023-07-26 18:09
dragdrop.rb
6.64
KB
-rw-r--r--
2023-07-26 18:09
eps.rb
754
B
-rw-r--r--
2023-07-26 18:09
graph.rb
1.52
KB
-rw-r--r--
2023-07-26 18:09
htext.rb
2.61
KB
-rw-r--r--
2023-07-26 18:09
setup.rb
347
B
-rw-r--r--
2023-07-26 18:09
spline.rb
495
B
-rw-r--r--
2023-07-26 18:09
stripchart.rb
1.68
KB
-rw-r--r--
2023-07-26 18:09
table.rb
9.62
KB
-rw-r--r--
2023-07-26 18:09
tabnotebook.rb
2.91
KB
-rw-r--r--
2023-07-26 18:09
tabset.rb
12.26
KB
-rw-r--r--
2023-07-26 18:09
ted.rb
1.63
KB
-rw-r--r--
2023-07-26 18:09
tile.rb
935
B
-rw-r--r--
2023-07-26 18:09
tree.rb
26.57
KB
-rw-r--r--
2023-07-26 18:09
treeview.rb
27.85
KB
-rw-r--r--
2023-07-26 18:09
unix_dnd.rb
3.96
KB
-rw-r--r--
2023-07-26 18:09
vector.rb
4.92
KB
-rw-r--r--
2023-07-26 18:09
watch.rb
3.63
KB
-rw-r--r--
2023-07-26 18:09
win_printer.rb
1.3
KB
-rw-r--r--
2023-07-26 18:09
winop.rb
2.68
KB
-rw-r--r--
2023-07-26 18:09
Save
Rename
# frozen_string_literal: false # # tkextlib/blt/winop.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tkextlib/blt.rb' module Tk::BLT module Winop extend TkCore TkCommandNames = ['::blt::winop'.freeze].freeze end WinOp = Winop end class << Tk::BLT::Winop def changes(win) tk_call('::blt::winop', 'changes', win) end def colormap(win) Hash[*list(tk_call('::blt::winop', 'colormap', win))] end def convolve(src, dest, filter) tk_call('::blt::winop', 'convolve', src, dest, filter) end def image_convolve(src, dest, filter) tk_call('::blt::winop', 'image', 'convolve', src, dest, filter) end def image_gradient(photo, left, right, type) tk_call('::blt::winop', 'image', 'gradient', photo, left, right, type) end def image_read_jpeg(file, photo) tk_call('::blt::winop', 'image', 'readjpeg', file, photo) end def image_resample(src, dest, horiz_filter=None, vert_filter=None) tk_call('::blt::winop', 'image', 'resample', src, dest, horiz_filter, vert_filter) end def image_rotate(src, dest, angle) tk_call('::blt::winop', 'image', 'rotate', src, dest, angle) end def image_snap(win, photo, width=None, height=None) tk_call('::blt::winop', 'image', 'snap', win, photo, width, height) end def image_subsample(src, dest, x, y, width, height, horiz_filter=None, vert_filter=None) tk_call('::blt::winop', 'image', 'subsample', src, dest, x, y, width, height, horiz_filter, vert_filter) end def quantize(src, dest, colors) tk_call('::blt::winop', 'quantize', src, dest, colors) end def query() tk_call('::blt::winop', 'query') end def read_jpeg(file, photo) tk_call('::blt::winop', 'readjpeg', file, photo) end def resample(src, dest, horiz_filter=None, vert_filter=None) tk_call('::blt::winop', 'resample', src, dest, horiz_filter, vert_filter) end def subsample(src, dest, x, y, width, height, horiz_filter=None, vert_filter=None) tk_call('::blt::winop', 'subsample', src, dest, x, y, width, height, horiz_filter, vert_filter) end def raise(*wins) tk_call('::blt::winop', 'raise', *wins) end def lower(*wins) tk_call('::blt::winop', 'lower', *wins) end def map(*wins) tk_call('::blt::winop', 'map', *wins) end def unmap(*wins) tk_call('::blt::winop', 'unmap', *wins) end def move(win, x, y) tk_call('::blt::winop', 'move', win, x, y) end def snap(win, photo) tk_call('::blt::winop', 'snap', win, photo) end def warpto(win = None) tk_call('::blt::winop', 'warpto', win) end alias warp_to warpto end