- Look for low float high volume stock
- RSI under 30 and STO under 20 is a good time to buy
- RSI Over 70 and STO over 80 is a good time to sell
- When 50 MA crosses 200 MA, buy
- Buy around 10:30am EST?
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 namespace System.Collections.Generic | |
using namespace System.Linq | |
class StandardDeviation{ | |
hidden [decimal] $Average | |
StandardDeviation([decimal] $average){ | |
$this.Average = $average | |
} |

Requirements:
- YouTube-Agent.Bundle
- Absolute Series Scanner
- Youtube-DL
- Channel ID or Playlist ID of Channel
- YouTube Data API Key (free)
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 namespace HtmlAgilityPack | |
function Get-HTMLTable { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory,ValueFromPipeline)][HtmlNode]$HtmlDocument | |
) | |
process { | |
foreach ($table in $HtmlDocument.SelectNodes('//table')) { |
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
Some Jenkinsfile examples |
Requirements:
- crazymax/cloudflared
- pihole docker image
- pi-hole br0 ip address, such as 192.168.1.5
- cloudflared br0 ip adderss, such as 192.168.1.10
- Configure the following parameters in pihole docker image:
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
jenkins: | |
systemMessage: | | |
Welcome to our build server. | |
This Jenkins is 100% configured and managed 'as code'. | |
Config is now mostly handled by the 'Jenkins Configuration as Code' (JCasC) plugin. | |
JCasC config can be found in the jenkins.yaml file in the $JENKINS_HOME folder. | |
Some settings are still injected from init.groovy.d scripts, | |
but these settings will be ported over to JCasC as support becomes available. |
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
[CmdletBinding()] | |
param( | |
[Parameter( Mandatory, Position = 1, ValueFromPipelineByPropertyName, ValueFromPipeline )] | |
[Alias( 'HostName', 'Server' )] | |
[string[]] | |
$ComputerName, | |
[System.DirectoryServices.ActiveDirectory.SyncFromAllServersOptions] | |
$SyncOptions = @( 'CrossSite', 'PushChangeOutward', 'SkipInitialCheck' ), |
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
# Check for Homebrew, | |
# Install if we don't have it | |
if test ! $(which brew); then | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
# Update homebrew recipes | |
echo "Updating homebrew..." | |
brew update |