h - Move left
j - Move down
k - Move up
l - Move right
$ - Move to end of line
0 - Move to beginning of line (including whitespace)
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 | |
if (!function_exists('array_group_by')) { | |
/** | |
* Groups an array by a given key. | |
* | |
* Groups an array into arrays by a given key, or set of keys, shared between all array members. | |
* | |
* Based on {@author Jake Zatecky}'s {@link https://github.com/jakezatecky/array_group_by array_group_by()} function. | |
* This variant allows $key to be closures. |
This is an incomplete list of resources including courses and individuals who publish content that has helped me grow as a web developer and designer. Many of these resources are WordPress-specific as that is my current area of specialization. This list will grow over time. If you've got something to add, send me a link @kevinwhoffman and I'll check it out!
- https://github.com/goq/telegram-list - telegram list
- https://gist.github.com/dmnsgn/76878ba6903cf15789b712464875cfdc
- https://github.com/ganqqwerty/123-Essential-JavaScript-Interview-Question
React
- https://react.rocks
- https://reactjs.org
- https://github.com/facebook/create-react-app - start template react
- http://jestjs.io
- https://github.com/facebook/prop-types - prop-types
https://insights.stackoverflow.com/survey/2017
https://coggle.it/diagram/Vz9LvW8byvN0I38x
https://github.com/kamranahmedse/developer-roadmap
- https://coursehunters.net/ - платные(бесплатные) видео курсы
- https://www.freecodecamp.com/ - после codecademy берись за этот ресурс
- http://watchandcode.com/ - можешь взяться за это до freecodecamp
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
1. cmd+shift+p | |
2. Type phpcs and install it | |
3. Preferences > Package Settings > Php Code Sniffer > User settings |
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
/** | |
* Laravel / jQuery AJAX code example | |
* See conversation here: http://laravel.io/forum/04-29-2015-people-asking-about-jquery-ajax | |
* | |
* Drop this code into your App/Http/routes.php file, and go to /ajax/view in your browser | |
* Be sure to bring up the JavaScript console by pressing F12. | |
*/ | |
// This is your View AJAX route - load this in your browser | |
Route::get('/ajax/view', function () { |
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
var myWidgets = myWidgets || {}; | |
// Model for a single testimonial | |
myWidgets.Testimonial = Backbone.Model.extend({ | |
defaults: { 'quote': '', 'author': '' } | |
}); | |
// Single view, responsible for rendering and manipulation of each single testimonial | |
myWidgets.TestimonialView = Backbone.View.extend( { |
NewerOlder