Bookmarklet
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
| (async () => { | |
| // ------------------------------------------------------------ | |
| // Load CryptoJS from CDN if it isn't already available | |
| // ------------------------------------------------------------ | |
| if (typeof CryptoJS === "undefined") { | |
| console.log("Loading CryptoJS..."); | |
| await new Promise((resolve, reject) => { | |
| const script = document.createElement("script"); | |
| script.src = "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js"; |
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
| /* Compile with | |
| * g++ -o program main.cpp `pkg-config --cflags --libs gtkmm-3.0` | |
| * | |
| * Original source: http://www.taringa.net/posts/linux/18386145/Gtkmm-3-12-c-subclass-o-class-dependiente.html | |
| */ | |
| #include <iostream> | |
| #include <gtkmm-3.0/gtkmm.h> | |
| #include <gdkmm/general.h> |