##How To Send a Pull Request on GitHub
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
| tyler@echo:~/Desktop/Git/CreativeLoot/automated-platform$ composer install | |
| Loading composer repositories with package information | |
| Installing dependencies (including require-dev) from lock file | |
| Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them. | |
| Nothing to install or update | |
| Generating autoload files | |
| [RuntimeException] |
| --- | |
| authorize: /home/tyler/.ssh/id_rsa.pub | |
| keys: | |
| - /home/tyler/.ssh/id_rsa | |
| folders: | |
| - map: /home/tyler/Desktop/Git/CreativeLoot/automated-platform | |
| to: /home/vagrant/automated-platform |
| tyler@echo:~/Desktop/Git/CreativeLoot/automated-platform$ vagrant up | |
| Bringing machine 'default' up with 'virtualbox' provider... | |
| ==> default: Importing base box 'laravel/homestead'... | |
| ==> default: Matching MAC address for NAT networking... | |
| ==> default: Checking if box 'laravel/homestead' is up to date... | |
| ==> default: Setting the name of the VM: automated-platform_default_1400603166213_31059 | |
| ==> default: Fixed port collision for 22 => 2222. Now on port 2200. | |
| ==> default: Clearing any previously set network interfaces... | |
| ==> default: Preparing network interfaces based on configuration... | |
| default: Adapter 1: nat |
| <?php | |
| function add_opengraph_markup() { | |
| if (is_single()) { | |
| global $post; | |
| if(get_the_post_thumbnail($post->ID, 'thumbnail')) { | |
| $thumbnail_id = get_post_thumbnail_id($post->ID); | |
| $thumbnail_object = get_post($thumbnail_id); | |
| $image = $thumbnail_object->guid; | |
| } else { | |
| // set default image |
| <meta property="og:title" content="" /> <!-- post/page title --> | |
| <meta property="og:type" content="" /> <!-- post/page type --> | |
| <meta property="og:image" content="" /> <!-- post/page image --> | |
| <meta property="og:url" content="" /> <!-- post/page url --> | |
| <meta property="og:description" content="" /> <!-- post/page description --> | |
| <meta property="og:site_name" content="" /> <!-- Site Name --> |
##How To Send a Pull Request on GitHub
git checkout -b my-new-feature)git commit -am 'Add some feature')git push origin my-new-feature)| 2014-04-05T06:54:17.117537+00:00 app[web.1]: npm ERR! Additional logging details can be found in: | |
| 2014-04-05T06:54:17.117613+00:00 app[web.1]: npm ERR! /app/npm-debug.log | |
| 2014-04-05T06:54:18.178863+00:00 heroku[web.1]: Process exited with status 1 | |
| 2014-04-05T06:54:18.189317+00:00 heroku[web.1]: State changed from starting to crashed | |
| 2014-04-05T09:42:26.222103+00:00 heroku[web.1]: State changed from crashed to starting | |
| 2014-04-05T09:42:29.369075+00:00 heroku[web.1]: Starting process with command `npm start` | |
| 2014-04-05T09:42:32.399772+00:00 app[web.1]: | |
| 2014-04-05T09:42:32.399772+00:00 app[web.1]: > [email protected] start /app | |
| 2014-04-05T09:42:32.399772+00:00 app[web.1]: > nodejs app.js | |
| 2014-04-05T09:42:32.399772+00:00 app[web.1]: |
| var config = { | |
| // Server | |
| host: '', // Not required | |
| port: process.env.PORT || 5000, | |
| // Registration | |
| disable_registration: false, | |
| // HTTPS |
| <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> | |
| <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> | |
| </a> |
| #!/bin/bash | |
| OUTPUT=`speedtest-cli --simple --share` | |
| echo -e "$OUTPUT\n$RIGHTNOW\n#############\n" >> st_results_simple |