(from Understanding Nginx Server and Location Block Selection Algorithms - https://goo.gl/YyzshP)
server {
| # https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html | |
| $dlurl = "https://awscli.amazonaws.com/AWSCLIV2.msi" | |
| $installerPath = Join-Path $env:TEMP (Split-Path $dlurl -Leaf) | |
| $ProgressPreference = 'SilentlyContinue' | |
| Invoke-WebRequest $dlurl -OutFile $installerPath | |
| Start-Process -FilePath msiexec -Args "/i $installerPath /passive" -Verb RunAs -Wait | |
| Remove-Item $installerPath | |
| $env:Path += ";C:\Program Files\Amazon\AWSCLIV2" |
| // Name: get_job_details_by_name.groovy | |
| // Author: Garima Damani | |
| // --------------------------------------------------------------- | |
| // This script gets the below job details with the given job name: | |
| // *Full name | |
| // *Last build number | |
| // *Last build time | |
| // *Last build cause | |
| // *Last success build number | |
| // *Last result |
(from Understanding Nginx Server and Location Block Selection Algorithms - https://goo.gl/YyzshP)
server {
This gist contains lists of modules available in
in AWS Lambda.
| import jenkins.model.* | |
| import hudson.remoting.Launcher | |
| import hudson.slaves.SlaveComputer | |
| def expectedVersion = Launcher.VERSION | |
| for (computer in Jenkins.instance.getComputers()) { | |
| if (! (computer instanceof SlaveComputer)) continue | |
| if (!computer.getChannel()) continue | |
| def version = computer.getSlaveVersion() |
| #!/bin/bash | |
| set -e | |
| if [ $# -eq 0 ]; then | |
| echo "USAGE: $0 plugin1 plugin2 ..." | |
| exit 1 | |
| fi | |
| plugin_dir=/var/lib/jenkins/plugins |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| wget http://stedolan.github.io/jq/download/linux64/jq | |
| aws ec2 describe-instances --filters "Name=tag:Name,Values=$NAME" \ | |
| "Name=instance-state-name,Values=running" \ | |
| | jq -r \ | |
| ".Reservations[] | .Instances[] | .InstanceId" \ | |
| aws ec2 describe-volumes --filters \ | |
| "Name=status,Values=available" \ | |
| | jq -r ".Volumes[] | .VolumeId" \ |
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |