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
| var express = require('express'); | |
| var bodyParser = require('body-parser') | |
| var cors = require('cors') | |
| var main = express() | |
| main.use(cors()) | |
| var server = main.listen(8000); | |
| var io = require('socket.io').listen(server); |
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> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Custom YouTube Controls</title> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | |
| </head> | |
| <body> |
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
| import linecache | |
| import sys | |
| def GetExceptionInfo(): | |
| """ | |
| Gets detailed exception info. | |
| ------------------------------------------ | |
| ~~ :EXAMPLE: ~~ |
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 Show-JsonTreeView { | |
| param ( | |
| [Parameter(Mandatory)] | |
| $Json | |
| ) | |
| function Show-jsonTreeView_psf { | |
| #---------------------------------------------- |
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 Show-jsonTreeView_psf { | |
| #---------------------------------------------- | |
| #region Import the Assemblies | |
| #---------------------------------------------- | |
| [void][reflection.assembly]::Load('System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a') | |
| [void][reflection.assembly]::Load('System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089') | |
| #endregion Import Assemblies | |
| #---------------------------------------------- |
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 Add-JsonToTreeview { | |
| ######################################################################################## | |
| # # | |
| # The MIT License # | |
| # # | |
| # Copyright (c) 2019 Matt Oestreich. http://mattoestreich.com # | |
| # # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy # | |
| # of this software and associated documentation files (the "Software"), to deal # |
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
| spec: | |
| template: | |
| spec: | |
| serviceAccountName: jenkins-master |
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 ConvertFileTo-Base64 { | |
| param( | |
| [Parameter(Mandatory=$true)] | |
| [string] $SourceFilePath, | |
| [Parameter(Mandatory=$true)] | |
| [string] $TargetFilePath | |
| ) | |
| $SourceFilePath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($SourceFilePath) |