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 <gtk/gtk.h> | |
| #include <webkit/webkit.h> | |
| static void destroyWindowCb(GtkWidget* widget, GtkWidget* window); | |
| static gboolean closeWebViewCb(WebKitWebView* webView, GtkWidget* window); | |
| static void | |
| webkit_render_cb(WebKitWebView *webview, |
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
| sudo certbot certonly -d vault.reeactr.com --manual --preferred-challenges dns-01 |
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
| // golang p2p udp client | |
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "log" | |
| "encoding/binary" | |
| "encoding/hex" |
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
| // this file is an example of how to intercept a C++ method by using the | |
| // LD_PRELOAD environment variable of the GNU dynamic linker. | |
| // | |
| // it works like this: | |
| // | |
| // 1) define a method that will have the same symbol as the intercepted | |
| // method when compiled. For example, the method Foo::getValue() | |
| // defined here has the mangled symbol "_ZNK3Foo8getValueEv". | |
| // tools like nm, objdump or readelf can display the symbols of | |
| // binaries. |