Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/bin/bash | |
| # Remove old repositories due to conflicts | |
| rm -rf /etc/yum.repos.d/ocaml.repo | |
| rm -rf /etc/yum.repos.d/hop5.repo | |
| rm -rf /etc/yum.repos.d/epel.repo | |
| rm -rf /etc/yum.repos.d/epel-testing.repo | |
| yum install -y postgresql94-devel zeromq-devel libpqxx-devel |
| <?php | |
| add_action('post_edit_form_tag', 'ebs_seo_cp_modify_form_tag'); | |
| function ebs_seo_cp_modify_form_tag() { | |
| $screen = get_current_screen(); | |
| if ( $screen->id != 'location') { return; } //change to custom post type | |
| global $post; | |
| //lets close the <form> tag | |
| echo '>'; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <?php | |
| /** | |
| * A helper file for Laravel 5, to provide autocomplete information to your IDE | |
| * Generated for Laravel 5.5.13 on 2017-09-28. | |
| * | |
| * @author Barry vd. Heuvel <[email protected]> | |
| * @see https://github.com/barryvdh/laravel-ide-helper | |
| */ | |
| namespace { | |
| exit("This file should not be included, only analyzed by your IDE"); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: