from sys import stdout
import time
max = 100
for i in range(max):
time.sleep(0.1)
stdout.write(f'\r{(i + 1.0) / max:>6.1%} 終了しました。')
stdout.flush()
# 最後に改行
print()
IOPub message rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_msg_rate_limit`.
Current values:
ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)
ServerApp.rate_limit_window=3.0 (secs)
端末エミュレータから下記のように kasumi-unicode -a とタイプしても「霞 (単語登録)」のウィンドウを表示することができます。
端末エミュレータからコマンドで霞(かすみ)を起動
ちなみに kasumi-unicode コマンドのオプションは下記のようになっています。
bitwalk@fedora:~$ kasumi-unicode -h
Usage: kasumi [option]
Option:
-h --help Show this message.
-v --version Show Kasumi's version and copyright
information
-m --manage Run Kasumi in Manage mode.
You may abbreviate this option.
-a --add Run Kasumi in Add mode.
-e --exclusive Run Kasumi in Exclusive mode.
--sound val Set default sound entry (only in Add mode)
--spelling val Set default spelling entry (only in Add mode)
--wordclass val Set default word class entry (only in Add mode)
-i --import Import selected text as a spelling
-I --ignore Ignore selected text
-E --eucjp Use EUC-JP encoding for dictionary
bitwalk@fedora:~$
Option Explicit
Public Declare PtrSafe Function SetTimer Lib "user32" (ByVal hWnd As LongPtr, _
ByVal nIDEvent As LongPtr, _
ByVal uElapse As Long, _
ByVal lpTimerFunc As LongPtr) As LongPtr
Public Declare PtrSafe Function KillTimer Lib "user32" (ByVal hWnd As LongPtr, _
ByVal nIDEvent As LongPtr) As Long
Public mTimerID As LongPtr
Sub TimerProc()
If mTimerID = 0 Then End '終了できない時の対策
On Error Resume Next 'デバッグ出すとExcelが固まるので
Range("A1") = Now()
End Sub
Sub TimerStart()
If mTimerID <> 0 Then
MsgBox "起動済です。"
Exit Sub
End If
mTimerID = SetTimer(0&, 1&, 1000&, AddressOf TimerProc)
End Sub
Sub TimerStop()
Call KillTimer(0&, mTimerID)
mTimerID = 0
End Sub
CentOS Stream は、継続的に提供される Red Hat® Enterprise Linux (RHEL) のディストリビューション・アップストリームを、オープンソース・コミュニティのメンバーが Red Hat の開発者と連携して開発、テスト、貢献することができる、Linux® ディストリビューションです。