(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name PostMessage Tracker | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*/* | |
| // @version 1.0 | |
| // @author Ounissi zakaria (https://twitter.com/zakaria_ounissi) | |
| // @description Each time an event listener is added for `message` it adds a menu command to tha message handler. | |
| // @grant GM.registerMenuCommand | |
| // @run-at document-start | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Medium Paywall Bypass | |
| // @namespace Violentmonkey Scripts | |
| // @run-at document-start | |
| // @match *://*.medium.com/* | |
| // @match *://medium.com/* | |
| // @match *://*/* | |
| // @grant none | |
| // @version 1.4 | |
| // @inject-into content |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Drawing; | |
| using System.Runtime.InteropServices; | |
| using System.Security; | |
| using System.Threading.Tasks; | |
| namespace System.Windows.Forms | |
| { | |
| using Point = Drawing.Point; | |
| /// <summary> |