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
wget -O windev.zip https://aka.ms/windev_VM_virtualbox |
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
### Keybase proof | |
I hereby claim: | |
* I am onequbit on github. | |
* I am onequbit (https://keybase.io/onequbit) on keybase. | |
* I have a public key whose fingerprint is 85CC 1C53 6396 DF96 108D 44BB B612 5B8C F1F3 2493 | |
To claim this, I am signing this object: |
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
"$env:appdata\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar" |
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
<PropertyGroup> | |
<MSBuildExtensionsPath>C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild</MSBuildExtensionsPath> | |
</PropertyGroup> |
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
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"AllowCortana"=dword:00000001 |
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
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"AllowCortana"=dword:00000000 |
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
$expected = "module.exports = require('./discord_modules.node');" | |
function showmessage($message) | |
{ | |
$console = $host.Name -eq "ConsoleHost" | |
if ($console) | |
{ | |
"$message" | |
Write-Host "Press any key to continue..." | |
$ignore = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown") |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Fireworks!</title> | |
</head> | |
<style> | |
body { | |
background-color: #000000; | |
margin: 0px; |
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
function getItemsREST(RESTurl) | |
{ | |
var deferred = $.Deferred(); | |
// console.log(url); | |
var result = ""; | |
var ajaxCall = { | |
url: _spPageContextInfo.webAbsoluteUrl + RESTurl, | |
type: "GET", | |
headers: { | |
"accept": "application/json;odata=verbose", |