- Microsoft Network Monitor: Native supproted by Microsoft, maybe it's more easily and visualize to use than Wireshark for Windows.
- HTTP Debugger: A quite light web debugger for Windows, pretty good compares to Charles or Fiddler, and easier to use.
| #!/bin/bash | |
| wget "https://updates.insomnia.rest/downloads/ubuntu/latest?&app=com.insomnia.app&source=website" -O /tmp/insomnia.deb \ | |
| && sudo apt install /tmp/insomnia.deb -qqy \ | |
| && rm -f /tmp/insomnia.deb |
This is mostly for my own benefit when I invariably format a computer using these adapters and forget how to get wifi working again:
Plug device in and ensure it is detected via lsusb:
For the T3U Plus, the ID is 2357:0138.
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
From this article you’ll learn how to measure an input/output performance of a file system on such devices as HDD, SSD, USB Flash Drive etc.
I’ll show how to test the read/write speed of a disk from the Linux command line using dd command.
I’ll also show how to install and use hdparm utility for measuring read speed of a disk on Linux Mint, Ubuntu, Debian, CentOS, RHEL.
Take the average result: To get the accurate read/write speed, you should repeat the below tests several times (usually 3-5) and take the average result.
| int main() { | |
| float A = 0, B = 0; | |
| float i, j; | |
| int k; | |
| float z[1760]; | |
| char b[1760]; | |
| printf("\x1b[2J"); | |
| for(;;) { | |
| memset(b,32,1760); | |
| memset(z,0,7040); |
| #!/bin/bash | |
| ## One-way, immediate, continuous, recursive, directory synchronization | |
| ## to a remote Rclone URL. ( S3, SFTP, FTP, WebDAV, Dropbox, etc. ) | |
| ## Optional desktop notifications on sync events or errors. | |
| ## Useful only for syncing a SMALL number of files (< 8192). | |
| ## (See note in `man inotifywait` under `--recursive` about raising this limit.) | |
| ## Think use-case: Synchronize Traefik TLS certificates file (acme.json) | |
| ## Think use-case: Synchronize Keepass (.kdbx) database file immediately on save. | |
| ## Think use-case: Live edit source code and push to remote server |
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps:
