I hereby claim:
- I am hugodias on github.
- I am hugodias (https://keybase.io/hugodias) on keybase.
- I have a public key ASA7kVH998QnXA5NVATYEAVrLB-sahA9znxGxw0ge4YUygo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| if ( ! function_exists( 'reading_time' ) ): | |
| /** | |
| * Display post reading time in minutes | |
| * | |
| * @param $post_content | |
| * | |
| * @return string | |
| */ |
| # lib/custom_logger.rb | |
| class CustomLogger | |
| class << self | |
| attr_accessor :logger | |
| delegate :info, :warn, :debug, :error, :to => :logger | |
| end | |
| end |
| { | |
| "name": "awesome-btn", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "build/index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1", | |
| "start": "webpack --watch", | |
| "build": "webpack" | |
| }, |
| { | |
| "presets": ["env"], | |
| "plugins": [ | |
| "transform-object-rest-spread", | |
| "transform-react-jsx" | |
| ] | |
| } |
| var path = require('path'); | |
| module.exports = { | |
| entry: './src/index.js', | |
| output: { | |
| path: path.resolve(__dirname, 'build'), | |
| filename: 'index.js', | |
| libraryTarget: 'commonjs2' | |
| }, | |
| module: { | |
| rules: [ |
| { | |
| "name": "awesome-btn", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "src/index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "", | |
| "license": "ISC", |
| { | |
| "name": "awesome-btn", | |
| "version": "1.0.0", | |
| "description": "Awesome button component", | |
| "main": "src/index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "Hugo Dias", | |
| "license": "MIT", |
PRs are a great way of sharing information, and can help us be aware of the changes that are occuring in our codebase. They are also an excellent way of getting peer review on the work that we do, without the cost of working in direct pairs.
Ultimately though, the primary reason we use PRs is to encourage quality in the commits that are made to our code repositories
Done well, the commits (and their attached messages) contained within tell a story to people examining the code at a later date. If we are not careful to ensure the quality of these commits, we silently lose this ability.
| set-option -g xterm-keys on | |
| set -g default-terminal "xterm" | |
| # Set bar to the top | |
| set-option -g status-position top | |
| # Keep window name | |
| set-option -g allow-rename off | |
| # ---------------------- |