Recent posts

Starting kotlin

1 minute read

Grammar val : read only (like final) var : Mutable

Basic information for proxy

less than 1 minute read

read file # Read and print file = open(gfile, 'r') while True: line = file.readline() if not line: break print(line) file.close()

Checking file status

less than 1 minute read

filechk.py ```python #!/usr/bin/python import time import os, sys from datetime import datetime from commands import *

Basic information for proxy

3 minute read

zcmd.py : command interface with proxy ```python #———————————————- zcmd.py #———————————————- import sys import socket # Import socket modul...