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
| //Generate an RSA key pair, sign a message and verify it using crypto++ 5.6.1 or later. | |
| //By Tim Sheerman-Chase, 2013 | |
| //This code is in the public domain and CC0 | |
| //To compile: g++ gen.cpp -lcrypto++ -o gen | |
| #include <string> | |
| using namespace std; | |
| #include <crypto++/rsa.h> | |
| #include <crypto++/osrng.h> | |
| #include <crypto++/base64.h> |
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
| #include <math.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define RADIX 2.0 | |
| /************************* | |
| * balance a real matrix * | |
| *************************/ |
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
| Below I collected relevant links and papers more or less pertaining to the subject of tetrahedral meshes. | |
| It's an ever-growing list. | |
| ------------------------------ | |
| Relevant links: | |
| http://en.wikipedia.org/wiki/Types_of_mesh | |
| http://en.wikipedia.org/wiki/Tetrahedron | |
| http://en.wikipedia.org/wiki/Simplicial_complex |
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
| /* | |
| * randomize.c -- generate random file name | |
| * Author: Krzysztof Krolikowski <[email protected]> | |
| * compilation: | |
| * gcc -o randomize randomize.c | |
| * running: | |
| * ~$ ./randomize | |
| * dyndns_nBXGV0cW | |
| * | |
| */ |
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
| /* | |
| # How To Get Information from Authenticode Signed Executables | |
| https://support.microsoft.com/en-us/help/323809/how-to-get-information-from-authenticode-signed-executables | |
| ## Summary | |
| You can use the WinVerifyTrust() API to verify an Authenticode signed executable. | |
| Although a signature is verified, a program may also have to do the following: |
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.