Skip to content

Instantly share code, notes, and snippets.

View kaloyan-raev's full-sized avatar

Kaloyan Raev kaloyan-raev

View GitHub Profile
@kaloyan-raev
kaloyan-raev / mirror-zend-studio-update-site.sh
Last active November 18, 2015 13:30
Bash script for mirroring the Zend Studio update site
#!/bin/bash
##############################################################################
# Configuration
##############################################################################
# The version of Zend Studio
version="13.0.1"
#
# The MD5 checksum of the zipped update site.
# It can be found on the zend.com download page.
checksum="19a9b59567f32dc082c691d850c922fe"
@kaloyan-raev
kaloyan-raev / download-update-site.ps1
Created July 22, 2015 13:23
PowerShell script for downloading an Eclipse update site
Function DownloadFile($path) {
$url = "http://downloads.zend.com/studio-eclipse/updates/380/" + $path
Write-Output "Downloading $url"
$output_dir = Convert-Path .
$output_path = Join-Path $output_dir $path
$start_time = Get-Date