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
Add-Type -TypeDefinition @" | |
using System; | |
using System.Runtime.InteropServices; | |
namespace Utilities { | |
public static class Display { | |
private const uint WM_USER = 0x0400; | |
private const uint WM_MSO = WM_USER + 0x0900; | |
private const uint WM_MSO_WPARAM_OMFRAMEENABLESHADOW = 0x0075; |
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
<?php | |
class Map { | |
/* $table = [ | |
* 'encrypt' => | |
* ['A' => 'A', 'B' => 'B', ...], | |
* ['A' => 'B', 'B' => 'C', ...], | |
* ... | |
* 'decrypt' => | |
* ['A' => 'A', 'B' => '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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>User Search</title> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
body { margin: 2em; text-align: center; } | |
form { margin-bottom: 2em; } |
NewerOlder