This file contains 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
using System; | |
namespace MontyHallProblemSimulation | |
{ | |
public class Program | |
{ | |
private static Random _rnd = null; | |
private static char[] _arrDoors; | |
private const char DOOR_WITH_CAR = '*'; |
This file contains 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
# A self elevating PowerShell script | |
# https://blogs.msdn.microsoft.com/virtual_pc_guy/2010/09/23/a-self-elevating-powershell-script/ | |
# Get the ID and security principal of the current user account | |
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent() | |
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID) | |
# Get the security principal for the Administrator role | |
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator | |
This file contains 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
// ----------------Compare versions - start ------------------ | |
// source: http://www.arvydas.co.uk/2015/04/compare-version-strings-with-innosetup/ | |
// Procedure to split a string into an array of integers | |
procedure Explode(var Dest: TArrayOfInteger; Text: String; Separator: String); | |
var | |
i, p: Integer; | |
begin | |
i := 0; | |
repeat | |
SetArrayLength(Dest, i+1); |
This file contains 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
# ========================================================================================================= | |
# if you like to reset your DPI Scaling to the DEFAULT, you can use the registry (Option five) from here: | |
# https://www.tenforums.com/tutorials/5990-change-dpi-scaling-level-displays-windows-10-a.html#option5 | |
# | |
# But, since the default value is different on various monitors, if you like to force 100%, | |
# you need the following trick: | |
# for each monitor - set DPIValue to 0xFFFFFFFF (which is -1 in DWord) | |
# | |
# Last update: 18 December 2018 | |
# Created by: Itsho |
This file contains 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
// ---------------------------------------------------- | |
// Notice, this code is using BouncyCastle NuGet: | |
// https://www.nuget.org/packages/BouncyCastle/1.8.4/ | |
// Created by: Itsho | |
// Creation Date: 20 December 2018 | |
// ---------------------------------------------------- | |
using Org.BouncyCastle.Asn1.Pkcs; | |
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.Crypto.Generators; |
This file contains 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
<Window x:Class="TabletKeyboardAutoOpen.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:local="clr-namespace:TabletKeyboardAutoOpen" | |
mc:Ignorable="d" | |
FontSize="30" | |
Title="MainWindow" | |
WindowStartupLocation="CenterScreen" |
This file contains 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
using System; | |
using System.Runtime.InteropServices; | |
using System.Windows.Interop; | |
namespace HostingAppTest | |
{ | |
// based on https://stackoverflow.com/q/30186930/426315 | |
public class HwndHostEx : HwndHost | |
{ | |
private readonly IntPtr _childHandle; |
This file contains 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
# Enable -Verbose option | |
[CmdletBinding()] | |
Param( | |
[string]$dllsFolder = "$PSScriptRoot", | |
[string]$txtWithFileList = "$PSScriptRoot\ListOfFilesToUseInThemida.txt", | |
[string]$themida32Path = "C:\Program Files\Themida\Themida.exe", | |
[string]$themidaProject = "D:\ThemidaProject.tmd", | |
[int]$totalProcesses = 8 | |
) |
This file contains 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
#requires -version 4.0 | |
[cmdletbinding()] | |
Param([Parameter(Position=0,ValueFromPipeline,ValueFromPipelineByPropertyName)] | |
[string]$Path ) | |
Process { | |
Write-verbose "Creating hash for input file..." | |
$hash = (Get-FileHash -Path $Path -Algorithm "SHA256").Hash |
This file contains 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
# self elevate this script to run as admin | |
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit | |
} | |
$newCertContent = "# Certificate name for easy search | |
-----BEGIN CERTIFICATE----- | |
MIITHISISMYCERT_hereBeDragonshereBeDragons | |
-----END CERTIFICATE----- | |
" |
OlderNewer