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
aahed | |
aalii | |
aapas | |
aargh | |
aarti | |
abaca | |
abaci | |
aback | |
abacs | |
abaft |
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
--- | |
name: Notify on docs of interest | |
on: | |
pull_request_target: | |
branches: [devel] | |
types: [closed] | |
paths: | |
- path1 | |
- docs/**/some*pattern.rst |
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
LIBERTY LIBERTY LIBERTY | |
LIBERTY LIBERTY LIBERTY | |
LIBERTY LIBERTY LIBERTY | |
! H|H|H|H|H H__________________________________ H|§|§|§|H H|* * * * * *|---------------------| H|§|∞|§|H H| * * * * * |---------------------| H|§|§|§|H H|* * * * * *|---------------------| H|H|H|H|H H| * * * * * |---------------------| H|H|H|H|H H|---------------------------------| =============== H|---------------------------------| /| _ _ | H|---------------------------------| (| O O |) H|---------------------------------| /| U | H----------------------------------- | =/ | H _..._/ H _|I/|_ H _______/| H |/_______ H / / / H | | | / | H | ||o|| | H |
This file has been truncated, but you can view the full file.
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
aa | |
aah | |
aal | |
aalii | |
aardvark | |
aardvarks | |
aardwolf | |
aardwolves | |
aargh | |
aarrghh |
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
<# | |
.SYNOPSIS | |
Checks parameters of a specific command for parameters that should have a value but are not Mandatory. | |
.DESCRIPTION | |
If a parameter is not marked as Mandatory but the intention is for a value to be supplied, this function | |
will look for an alias that begins with the string "Required_". If such an alias is found and the | |
parameter is not bound, this function will throw an exception or set a breakpoint depending on the | |
options supplied. |
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 Replace-Using { | |
[CmdletBinding(DefaultParameterSetName = 'AsString')] | |
[OutputType([String], ParameterSetName = 'AsString')] | |
[OutputType([ScriptBlock], ParameterSetName = 'AsScriptBlock')] | |
param( | |
[Parameter( | |
Mandatory, | |
ValueFromPipeline | |
)] | |
[String] |
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
Set updateSession = CreateObject("Microsoft.Update.Session") | |
Set updateSearcher = updateSession.CreateupdateSearcher() | |
Set searchResult = updateSearcher.Search("IsInstalled=0 and Type='Software'") | |
Set toDL = CreateObject("Microsoft.Update.UpdateColl") | |
For I = 0 To searchResult.Updates.Count-1 | |
Set update = searchResult.Updates.Item(I) | |
For kbidindex = 0 to update.KBArticleIDs.Count-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
############################# | |
# fixutdates.rb | |
# Fixes uTorrent added on / completed on dates | |
# | |
# by Brian Scholer | |
# http://www.briantist.com/ | |
# | |
############################# | |
require 'rubygems' |