See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| /* VSCode keybindings for alternative HJLK navigation, when using non-vim mode | |
| * and support for quick panel navigation with Tab/Shift+Tab. | |
| * | |
| * So basically I just tried to use everywhere in the editor these aliases: | |
| * Alt+j = down | |
| * Alt+k = up | |
| * Alt+l = right | |
| * Alt+h = left | |
| * Alt+b = previous-word | |
| * Alt+w = next-word |
| <?php | |
| $mrss =<<<EOS | |
| <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" | |
| xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"> | |
| <channel> | |
| <title>My Movie Review Site</title> | |
| <link>http://www.foo.com</link> | |
| <description>I review movies.</description> |
| // Exemplo de requisição GET | |
| var ajax = new XMLHttpRequest(); | |
| // Seta tipo de requisição e URL com os parâmetros | |
| ajax.open("GET", "minha-url-api.com/?name=Henry&lastname=Ford", true); | |
| // Envia a requisição | |
| ajax.send(); | |
| // Cria um evento para receber o retorno. |
| import React from "react" | |
| import { Route, Switch } from "react-router-dom" | |
| const AppRoute = ({ component: Component, layout: Layout, ...rest }) => ( | |
| <Route {...rest} render={props => ( | |
| <Layout> | |
| <Component {...props} /> | |
| </Layout> | |
| )} /> | |
| ) |
| <?php | |
| namespace App\Http; | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link https://gist.github.com/vluzrmos/d5682ad426525196d069 | |
| */ |
| <?php | |
| namespace App\Http; | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial | |
| */ |