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 get_header(); | |
/* | |
Template Name: Calculate Page | |
*/ | |
if(isset($_POST['submit'])){ | |
$amount = $_POST['amount']; | |
$price = $_POST['price']; | |
$total = $amount * $price; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<?php | |
function toColor($n){ |
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
Inspiration Websites | |
http://lovelypackage.com/ | |
http://batt-mobile.tumblr.com/ | |
http://designyoutrust.com/ | |
http://www.mr-cup.com/work.html | |
http://www.fromupnorth.com/ | |
http://zurb.com/patterntap | |
Free Image Sites | |
https://unsplash.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
#!/bin/bash | |
# Installation script for a Wordpress 3.0 website on Ubuntu 10.04 | |
# | |
# Josh Kersey | |
# Created: May 15, 2012 | |
# Last Update: June 13, 2012 | |
# get setup parameters | |
echo "apache vhost name (one word):" |
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
See who logged in last: | |
lastlog | |
View all of the log files on the server: | |
ls -l /var/log |
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 | |
ini_set('display_errors', 'On'); | |
require 'vendor/autoload.php'; | |
use Symfony\Component\DomCrawler\Crawler; | |
use Symfony\Component\CssSelector\CssSelectorConverter; | |
$client = new GuzzleHttp\Client(); | |
$url = 'https://us.fotolia.com/search?k=cats&filters%5Bcontent_type%3Aphoto%5D=1&search-submit=Search&limit=5'; | |
$data = $client->get($url); |
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
Trevor this is super easy. Yes I am talkign to you, I mean me. Wait you or me? | |
in terminal-> homestead edit | |
add the site | |
- map: cat.dev | |
to: /home/vagrant/Code/cat/public | |
save it. Then open up the etc/hosts file on your mac not on the server. | |
Edit the Ip to point to your url | |
192.168.10.10 cat.dev |
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
point domain name servers to digital ocean | |
create domain in digital ocean | |
add site in forge | |
enter domain name and for the folder make it the project name | |
next add your github repo and select the branch |
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
Comments: | |
https://github.com/RoumenDamianoff/laravel-disqus | |
Scape: | |
https://github.com/guzzle/guzzle | |
https://github.com/symfony/dom-crawler | |
https://github.com/symfony/css-selector | |
Newsletters: |
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($) { | |
// Lets Begin :) | |
})(jQuery); |