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
| /* | |
| * Simple MD5 implementation | |
| * | |
| * Compile with: gcc -o md5 md5.c | |
| */ | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include "md5.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 <iostream> | |
| class MyClass { | |
| private: | |
| int my_private_member; | |
| public: | |
| static int MyClass::* p; | |
| int member_val() { | |
| return my_private_member; |
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
| template <class Clock, class Duration = typename Clock::duration> | |
| class atomic_time_point { | |
| public: | |
| using clock = Clock; | |
| using base_time_point = typename std::chrono::time_point<Clock, Duration>; | |
| using duration = Duration; | |
| using rep = typename duration::rep; | |
| constexpr atomic_time_point() {} | |
| constexpr explicit atomic_time_point(const duration& d) |
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
| RewriteEngine On | |
| RewriteCond %{HTTPS} off | |
| RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ | |
| RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/(?:\ Ballot169)? | |
| RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ | |
| RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
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
| tilda_config_version="1.3.1" | |
| # command="" | |
| font="Ubuntu Mono derivative Powerline 12" | |
| key="<Primary>grave" | |
| addtab_key="<Shift><Control>t" | |
| fullscreen_key="<Primary>Return" | |
| toggle_transparency_key="F12" | |
| toggle_searchbar_key="<Shift><Control>f" | |
| closetab_key="<Shift><Control>w" | |
| nexttab_key="<Control>Page_Down" |
OlderNewer