Skip to content

Instantly share code, notes, and snippets.

View BarathArivazhagan's full-sized avatar
🎯
Focusing

Barath Arivazhagan BarathArivazhagan

🎯
Focusing
  • Canada
View GitHub Profile
@kevin-smets
kevin-smets / concourse.md
Last active February 16, 2026 07:56
Setup the Concourse binary locally on macOS and run the hello world example.

Prerequisites

Installs

Concourse

curl -Lo concourse https://github.com/concourse/concourse/releases/download/v2.5.0/concourse_darwin_amd64 && chmod +x concourse && mv concourse /usr/local/bin
@p3t3r67x0
p3t3r67x0 / openssl_commands.md
Last active May 15, 2025 17:31
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@kelapure
kelapure / pivotal-product-download.sh
Created August 3, 2015 15:27
Pivotal Network API Download Example
#!/bin/bash
set -e
export PIVNET_TOKEN=GET_FROM_PIVNET_USER_PROFILE_PAGE
export LOCAL_FILE_NAME=pcf-mysql.pivotal
export DOWNLOAD_URL=https://network.pivotal.io/api/v2/products/p-mysql/releases/211/product_files/1755/download
export OPSMGR_HOST=localhost
export OPSMGR_USER=WHATEVER_YOUR_OPSMGR_USER_IS
export OPSMGR_PASSWORD=WHATEVER_YOUR_OPSMGR_PASSWORD_IS
@P7h
P7h / jdk_download.sh
Last active May 5, 2025 10:36
Script to download JDK / JRE / Java binaries from Oracle website from terminal / shell / command line / command prompt
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### #####
### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget.
### You can download all the binaries one-shot by just giving the BASE_URL.
### Script might be useful if you need Oracle JDK on Amazon EC2 env.
### Script is updated for every JDK release.
### Features:-
# 1. Resumes a broken / interrupted [previous] download, if any.
# 2. Renames the file to a proper name with including platform info.