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
<html> | |
<head> | |
<title>Mailbox Stats - Customer Services</title> | |
<meta http-equiv="Expires" content="0"> | |
<meta http-equiv="Pragma" content="no-cache"> | |
<meta http-equiv="Cache-Control" content="no-cache"> | |
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> | |
<meta http-equiv="refresh" content="30"> | |
</head> |
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
Just a placeholder so I can attach images as comments - pertaining to TSE resize on Window/Buffer size changes. |
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
Placeholder for TINYED bits... |
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
{% comment %} | |
* | |
* Counter: This include counts the your jekyll posts | |
* | |
{% endcomment %}{% assign counter = 1 %}{% for item in site.posts %}{% unless item.published == false %}{% assign counter=counter | plus:1 %}{% endunless %}{% endfor %}{{ counter }} |
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
// Filename: TcpChatMessenger.cs | |
// Author: Benjamin N. Summerton <define-private-public> | |
// License: Unlicense (http://unlicense.org/) | |
using System; | |
using System.Text; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Threading; |
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
#!/bin/sh | |
echo "This script updates your moodle installation." | |
echo "You will need a few pieces of information to complete this process." | |
echo "" | |
echo "Warning: This will disable Web-Access to the moodle installation!" | |
echo "Make sure nobody is logged in at the moment or activate maintenance mode manually so no data is lost." | |
echo "" | |
echo "" |
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
@echo off | |
cls | |
echo [101;93m STYLES [0m | |
echo ^<ESC^>[0m [0mReset[0m | |
echo ^<ESC^>[1m [1mBold[0m | |
echo ^<ESC^>[4m [4mUnderline[0m | |
echo ^<ESC^>[7m [7mInverse[0m | |
echo. | |
echo [101;93m NORMAL FOREGROUND COLORS [0m | |
echo ^<ESC^>[30m [30mBlack[0m (black) |
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
$TaskName = "My Scheduled Task"; | |
$SchedTaskCred = Get-Credential "domain\user" ` | |
-Message "Scheduled Task Service Account Credentials"; ` | |
$SchedTaskCredUser = $SchedTaskCred.UserName; ` | |
$SchedTaskCredPwd = $SchedTaskCred.GetNetworkCredential().Password; ` | |
$Action = New-ScheduledTaskAction ` | |
-Execute "PowerShell.exe" ` | |
-Argument '-ExecutionPolicy Bypass -file "C:\MyScript.ps1"' ` | |
-ErrorAction Stop; ` | |
$Trigger = New-ScheduledTaskTrigger ` |
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
<?xml version="1.0"?> | |
<catalog> | |
<book> | |
<author>Gambardella, Matthew</author> | |
<title>XML Developer's Guide</title> | |
<genre>Computer</genre> | |
<price>44.95</price> | |
<publish_date>2000-10-01</publish_date> | |
<description>An in-depth look at creating applications | |
with XML.</description> |
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
The bridge bot of #powershell on freenode puts a zero-width space character after the first letter of Slack | |
nicks, to avoid people who are on both sides of the bridge triggering their own @mention. | |
Source machine: | |
* Windows Version: Windows 10 Pro, Version 1709, 16299.431 | |
* Font used in conhost: Consolas (for both OpenSSH on Windows Subsystem for Linux and Win32-OpenSSH) | |
Target server: | |
* Ubuntu version: Ubuntu 16.04.4 LTS |
OlderNewer