- https://codepen.io/mladen___/pen/gbvqBo
- https://codepen.io/towc/pen/mJzOWJ
- https://codepen.io/jackrugile/pen/kMWyeM
- https://codepen.io/ph1p/pen/BpRWWM
- https://codepen.io/jlong/pen/Dzaxby
- https://codepen.io/neilcarpenter/pen/DJopeR
- https://codepen.io/aderaaij/pen/BapYONL
- https://codepen.io/mediapipe/pen/RwGWYJw
- https://codepen.io/creativeocean/pen/qBbBLyB
- https://codepen.io/goodkatz/pen/LYPGxQz
I hereby claim:
- I am dkrutsko on github.
- I am dkrutsko (https://keybase.io/dkrutsko) on keybase.
- I have a public key ASBNrsTzx2CiVNZb72TrzX8NxibTWWSxEoq6UlwcCJuS_wo
To claim this, I am signing this object:
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<typename type> | |
static bool IsStrEq | |
(const type* a, const type* b) | |
{ | |
// Handle potential null cases | |
if (!a || !b) return !a && !b; | |
// Perform standard comparison | |
while (*a != '\0' && *a == *b) | |
{ |
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
// Link with psapi.lib | |
#define NOMINMAX | |
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
#include <Psapi.h> | |
int main (void) | |
{ |
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
; (function ($, window, document, undefined) | |
{ | |
"use strict"; | |
//////////////////////////////////////////////////////////////////////////////// | |
var PLUGIN_NAME = "passwordMeter"; | |
//////////////////////////////////////////////////////////////////////////////// |
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
void Mystery (PRINTF p) | |
{ | |
const char text[] = | |
{ | |
'H', 'e', 'l', 'l', 'o', ' ', | |
'W', 'o', 'r', 'l', 'd', '!', | |
'\n', '\0', | |
}; | |
p (text); |
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
//////////////////////////////////////////////////////////////////////////////// | |
// -------------------------------------------------------------------------- // | |
// // | |
// Copyright (C) 2013 David Krutsko // | |
// // | |
// -------------------------------------------------------------------------- // | |
//////////////////////////////////////////////////////////////////////////////// | |
//----------------------------------------------------------------------------// | |
// Prefaces // |