2021年3月31日水曜日

お酒が好きだ!

 減酒にしたいけど、ダメですね!


1000本ノックで改善しなければ!

今日は、以下のコードに挑戦した、

いろいろやったがダメだった。

残念、残念!




# -*- coding: cp932 -*-

#!python2



import sys

# //-------------------------------------------------------

# //

# //-------------------------------------------------------





# //-------------------------------------------------------

# //キー入力のイベント

# //-------------------------------------------------------

def keyCallback( event ):



    

    print( event.name, event.event_type )

    print( event )

    if event.name == "a" and event.event_type=="up":

        print("aaaaaaaaaaaaaaaa")















# //-------------------------------------------------------

# //マウスのイベント

# //-------------------------------------------------------

def mouseCallback( event ):



    global enX,enY, handle



    print('mouseCallback-Event:', event, type(event))

    if type(event) == mouse._mouse_event.ButtonEvent:

        print("*"*10)

        if event.event_type=='down' and event.button=='left':

            x,y= mouse.get_position()

            mouse.move(0,0)

            # //mouse.move(x-50,y)

            

            print("K"*10, x,y)

            time.sleep(0.5)

            pyautogui.screenshot('my_screenshot.png', region=(x-20,y-20, 50, 50))

            mouse.move(x,y)

            # //sys.exit()

            return False



    

    

    



def timer():

    px,py = pyautogui.position() 

    # //print( '{},{}'.format(px,py) )

    

    handle = win32gui.GetForegroundWindow()

    text     = win32gui.GetWindowText(handle)

    print( text)





    root.after(1000, timer)









# //import Tkinter as tkinter

import tkinter

import pyautogui

import mouse

import keyboard



import threading 

import time,os

import datetime

import ctypes

from ctypes import sizeof

from ctypes.wintypes import RECT



import win32gui

import win32api



from PIL import ImageGrab

from PIL import Image, ImageTk





# //メインウインドウ用



root  = tkinter.Tk()

root.title("")

root.geometry('300x600+10+10')

root.title("ABC-CAP")









# //画面上に部品を配置する



text_widget = tkinter.Text(root)



text_widget.place(x=10,y=400)





handle      = None

handle0     = None

text        =''





timer()

keyboard.hook(  keyCallback     )

mouse.hook(     mouseCallback   )









# バインディングの設定

root.mainloop()

ソースコード

2021年3月11日木曜日

SSL更新

WebページのSSL化だけど、結構、いい加減なのでここで少しだけ

まとめたい!


自分のWebページで使っているのは?

①アパッチ

②トルネード

③noVNC


 diff /root/private.key /etc/ssl/private/wwwsamplecom.key

  564  find / -name wwwsamplecom.key

  565  find / -name "*.key"

  566  diff /etc/ssl/private/wwwsamplecom.key /etc/ssl/private/new.key

  567  diff /etc/ssl/private/wwwsamplecom.key /var/www/html/wwwsamplecom.key

  568  diff /var/www/html/wwwsamplecom.crt /etc/ssl/certs/wwwsamplecom.crt

  569  diff /etc/ssl/private/wwwsamplecom.key /var/www/html/wwwsamplecom.key

  570  diff /var/www/html/wwwsamplecom.key /etc/ssl/private/wwwsamplecom.key

  571  cd


●ファイルのある場所を探す

find / -name wwwsamplecom.key

find / -name "*.key"

  

ディレクトリのみ表示したい場合は

ls -d */



/etc/init.d/boot_init

の内容





 36 su root -c "/var/www/html/netpdb/kidou.sh"

 37 su root -c "/root/vnc-c.sh"

 38 

 39 su root -c "/root/vnc.sh 1"

 40 su root -c "/root/vnc.sh 2"

 41 su root -c "/root/vnc.sh 3"

 42 #su root -c "/root/vnc.sh 4"

 43 su root -c "/root/vnc.sh 5"

 44 

 45 su root -c "vncserver :9"

 46 #su root -c "vncserver :3"

 47