西维蜀黍

【Golang】使用 - 优雅重启/关闭进程

Graceful Exit

func Notify(c chan<- os.Signal, sig ...os.Signal)

Notify causes package signal to relay incoming signals to c. If no signals are provided, all incoming signals will be relayed to c. Otherwise, just the provided signals will.

Package signal will not block sending to c: the caller must ensure that c has sufficient buffer space to keep up with the expected signal rate. For a channel used for notification of just one signal value, a buffer of size 1 is sufficient.

It is allowed to call Notify multiple times with the same channel: each call expands the set of signals sent to that channel. The only way to remove signals from the set is to call Stop.

It is allowed to call Notify multiple times with different channels and the same signals: each channel receives copies of incoming signals independently.

  ...


【macOS】显示进程父进程

$ brew install pstree

  ...


【macOS】远程控制

  ...


【OpenWrt】查看已连接设备

查看通过无线/有线连接的设备

Approach 1

$ cat /proc/net/arp
IP address       HW type     Flags       HW address            Mask     Device
192.168.0.1      0x1         0x2         **:95:**:5c:**:79     *        eth0.2
192.168.1.242    0x1         0x2         **:6c:**:77:**:40     *        br-lan
192.168.0.124    0x1         0x0         **:00:**:00:**:00     *        eth0.2
192.168.1.198    0x1         0x2         **:8d:**:5a:**:3c     *        br-lan
  • Flags标志可以表示是否在线状态,0x0表示离线,标志0x2表示在线
  • Device表示接口的名称
  ...


【Ubuntu】效率

Shutcut

Switch windows

  • Ctrl + `: Switch windows of an app directly
  • Super + `: Switch windows of an application

Move windows

  • Shift + Super + ←: Move the current window one monitor to the left.
  • Shift + Super + →: Move the current window one monitor to the right.
  • Shift + Super + ↑: Move window one monitor up
  • Shift + Super + ↓: Move window one monitor down
  • Shift + Super + Page Down: Move window one workspace down
  • Shift + Super + Page Up: Move window one workspace up

Windows

  • Alt+F4: Close window
  • Super+H: Hide window
  • Super+↑: Maximize window
  • Super+↓: Restore window
  • Super+←: View split on left
  • Super+→: View split on right
  • Alt + Enter: Toggle fullscreen mode

Switch workspace

  • Super+Page Up: move to the workspace shown above the current workspace in the workspace selector.
  • Super+Page Down: move to the workspace shown below the current workspace in the workspace selector.
  • Shift+Super+End: Move window to last workspace
  • Shift+Super+Home: Move window to workspace 1

Getting around the desktop

  • Alt+Esc: Switch between windows in the current workspace. Hold down Shift for reverse order.
  • Super+A: Show the list of applications.

Misc

  • Super+L: Lock the screen.
  • Super+V: Show the notification list. Press Super+V again or Esc to close.
  • Super + D: Show/Display desktop
  • ctrl + alt + T: open a new Terminal window

Common editing shortcuts

  • Ctrl+A: Select all text or items in a list.
  • Ctrl+X: Cut (remove) selected text or items and place it on the clipboard.
  • Ctrl+C: Copy selected text or items to the clipboard.
  • Ctrl+V: Paste the contents of the clipboard.
  • Ctrl+Z: Undo the last action.

Typing

  • Super+Space: Switch to next input source
  • Shift+Super+Space: Switch to previous input source

Accessibility

  • Ctrl + Alt + =: Increase text size
  • Ctrl + Alt + -: Decrease text size

Software

Daily

Software Market

  ...