Open this url
https://nodejs.org/en/download/package-manager/
I want to install NOTE: Node.js >= 4.x
Run
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Then run
# Install lamp sack on ubuntu 15.10 | |
sudo apt-get update | |
sudo apt-get install -y apache2 | |
sudo apt-get install -y mysql-server php5-mysql | |
sudo service mysql status | |
sudo apt-get install -y phpmyadmin | |
sudo service apache2 restart | |
## Install wp cli | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar |
Open this url
https://nodejs.org/en/download/package-manager/
I want to install NOTE: Node.js >= 4.x
Run
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Then run
Add Key:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Set repository:
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
Install package:
sudo apt-get update
sudo apt-get install google-chrome-stable
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
<?php | |
/* | |
* Converts CSV to JSON | |
* Example uses Google Spreadsheet CSV feed | |
* csvToArray function I think I found on php.net | |
*/ | |
header('Content-type: application/json'); | |
// Set your CSV feed |
##Contact Form
Testimonials by Aihrus http://downloads.wordpress.org/plugin/testimonials-widget.zip
## Animation Plugin | |
//cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.0/animate.min.css |
site.tabbed = function () { | |
var s = {}; | |
s.tabcont = jQuery(".tab_content"); | |
s.tabtitle = jQuery(".tab_title"); | |
s.tabtitle.click(function(event){ | |
event.preventDefault(); | |
s.curritem = jQuery(this).attr("href"); | |
s.tabcont.hide(); | |
jQuery(s.curritem).show(); | |
s.tabtitle.removeClass('active'); |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |