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
/** | |
** ____ _ ___ ___ _ _ | |
** | _ \ | | | \/ | | | (_) | |
** | | \ |__ _ _ __| | __ | . . | ___ _ __ ___ | | __ __ _ _ | |
** | | | | _` | '__| |/ / | |\/| |/ _ \| '_ \ / _ \| |/ // _` | | | |
** | |_/ /(_| | | | < | | | | (_) | | | | (_) | <| (_| | | | |
** |____/\__,_|_| |_|\_\ \_| |_/\___/|_| |_|\___/|_|\_\\__,_|_| | |
** | |
** Quassel Theme | |
** |
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
public static void downloadFile(final Long fileId) throws IOException { | |
response.setHeader("Accept-Ranges", "bytes"); | |
notFoundIfNull(fileId); | |
File underlyingFile = ... //load file | |
String fileName = ...//name of the file | |
Header rangeHeader = request.headers.get("range"); | |
if (rangeHeader != null) { | |
throw new PartialContent(underlyingFile, fileName); |
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
#!/usr/bin/env bash | |
################################################################ | |
# | |
# Amazon EC2 PostGIS 1.5 on RAID10,f2 EBS Array Build Script | |
# | |
# Complete Rip off of: | |
# http://github.com/tokumine/ebs_raid_postgis/blob/master/build.sh | |
# http://alestic.com/2009/06/ec2-ebs-raid | |
# http://biodivertido.blogspot.com/2009/10/install-postgresql-84-and-postgis-140.html | |
# |
NewerOlder