2019年6月30日 星期日

每次用docker 指令都要加sudo....

其實這篇早該寫了,因為用完那個指令後就不會再用,因此到新機器就會忘記當時是怎麼用的。


正文開始:

sudo usermod -aG docker $USER

就這麼一行可以省去每次加 sudo 總共五個字的麻煩。

觀眾們,摳過去用吧~~

2019年6月28日 星期五

Python stop looping thread, 跑回圈的 thread 的停止方法

先看Code吧


import threading
import time


def process_1():
counter = 0
t = threading.currentThread()
while getattr(t, "loop_alive", True):
print('process_1counter:', counter)
counter += 1
time.sleep(1)
if counter > 80:
break
print('process_1 thread stop')


p1_thread = threading.Thread(target=p2, args=())
p1_thread.start()

time.sleep(10)

p1_thread.loop_alive = False