Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
| <!-- http://benalman.com/projects/jquery-urlinternal-plugin/ --> | |
| <script src='<?php bloginfo('template_directory'); ?>/js/jquery.ba-urlinternal.min.js'></script> | |
| <!-- http://www.asual.com/jquery/address/ --> | |
| <script src='<?php bloginfo('template_directory'); ?>/js/jquery.address-1.3.min.js'></script> | |
| <script> | |
| // Original JavaScript by Chris Coyier | |
| // Updated October 2010 by Stewart Heckenberg & Chris Coyier |
| <?php | |
| /** | |
| * File: SimpleImage.php | |
| * Author: Simon Jarvis | |
| * Modified by: Miguel Fermín | |
| * Based in: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php | |
| * | |
| * This program is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU General Public License | |
| * as published by the Free Software Foundation; either version 2 |
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET requests.
q
The query string to convert to audio
tl
Translation language, for example, ar for Arabic, or en-us for English
This gist assumes:
| <?php | |
| /* | |
| * Bitstorm - A small and fast Bittorrent tracker | |
| * Copyright 2008 Peter Caprioli | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * |
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| class MY_Input extends CI_Input { | |
| /** | |
| * Variables | |
| * | |
| */ | |
| protected $delete; |
| DROP TABLE IF EXISTS time_dimension; | |
| CREATE TABLE time_dimension ( | |
| id INTEGER PRIMARY KEY, -- year*10000+month*100+day | |
| db_date DATE NOT NULL, | |
| year INTEGER NOT NULL, | |
| month INTEGER NOT NULL, -- 1 to 12 | |
| day INTEGER NOT NULL, -- 1 to 31 | |
| quarter INTEGER NOT NULL, -- 1 to 4 | |
| week INTEGER NOT NULL, -- 1 to 52/53 | |
| day_name VARCHAR(9) NOT NULL, -- 'Monday', 'Tuesday'... |
| /* | |
| * goes in theme functions.php or a custom plugin. Replace the image filename/path with your own :) | |
| * | |
| **/ | |
| add_action( 'init', 'custom_fix_thumbnail' ); | |
| function custom_fix_thumbnail() { | |
| add_filter('woocommerce_placeholder_img_src', 'custom_woocommerce_placeholder_img_src'); | |
| function custom_woocommerce_placeholder_img_src( $src ) { |