This file contains 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
<?php | |
use Aws\Common\Aws; | |
use Aws\S3\Exception\S3Exception; | |
// make sure the SDK is installed | |
// I've used Composer to autoload it: http://docs.aws.amazon.com/aws-sdk-php/guide/latest/installation.html | |
/* | |
* jQuery File Upload Plugin PHP Class 7.1.0 | |
* https://github.com/blueimp/jQuery-File-Upload |
This file contains 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
## nginx.conf ## | |
server { | |
listen 80; | |
# listen [::]:80 default_server ipv6only=on; | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
# Make site accessible from http://localhost/ |
This file contains 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
http{ | |
index index.html; | |
server { | |
listen 80; | |
root /gocode/src/personalwebsiteapp; | |
server_name personal-website.com; |
This file contains 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
/*! | |
* jQuery Validation Plugin 1.11.1 | |
* | |
* http://bassistance.de/jquery-plugins/jquery-plugin-validation/ | |
* http://docs.jquery.com/Plugins/Validation | |
* | |
* Copyright 2013 Jörn Zaefferer | |
* Released under the MIT license: | |
* http://www.opensource.org/licenses/mit-license.php | |
*/ |
This file contains 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
//first version | |
// for continuous play | |
if(typeof options.continuous=='undefined' || options.continuous==true){ | |
//console.log('options.continuous==true'); | |
player.on("ended", function(){ | |
//console.log('on ended'); | |
index++; |
This file contains 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
PASSWORD gives email.onarbor.com | |
<?$base_url=base_url();?> | |
<p>Somebody (hopefully you) requested a new password for the Onarbor account for <?=$email_address?>. | |
To reset the password, follow this link:<p> | |
<p> <a href="<?=$base_url?>account/updatePassword/<?=$account_token?>/<?=$account_date?>"> | |
<?=$base_url?>account/updatePassword/<?=$account_token?>/<?=$account_date?></a></p> | |
This file contains 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
http{ | |
server { | |
listen 443 ssl; | |
ssl on; | |
ssl_certificate /etc/ssl/my_site.pem; | |
ssl_certificate_key /etc/ssl/my_site.key; |
This file contains 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
(function() { | |
videojs.plugin('playlist', function(options) { | |
//this.L="vjs_common_one"; | |
if(typeof this.L!="undefined") var id=this.L; | |
//else workData.myPlayer.id=this.tag.id; | |
else var id=this.id_; | |
//console.log('begin playlist plugin with video id:'+id); |
This file contains 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
var arr=[], | |
duration=100; | |
var num=duration/10; | |
var j=0; | |
var k=0; | |
for(var i=0; i<num; i++ ){ | |
arr.push(k={'src': '/assets/js/'+j+'.png'}); | |
j=j+5; |
This file contains 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
user www-data; | |
worker_processes 4; | |
pid /var/run/nginx.pid; | |
events { | |
# worker_connections 768; | |
worker_connections 7680; | |
# multi_accept on; | |
} |