Edit: moved to here https://blog.haicon.moe/posts/logitech-f310-to-work-with-macbook-usb-c-port/
| ffmpeg -hide_banner -i image.jpeg -compression_level 100 out/image.jpeg |
| { | |
| "workbench.colorCustomizations": { | |
| "terminal.foreground": "#839496", | |
| "terminal.background": "#002833", | |
| "terminal.ansiBlack": "#003541", | |
| "terminal.ansiBlue": "#268bd2", | |
| "terminal.ansiCyan": "#2aa198", | |
| "terminal.ansiGreen": "#859901", | |
| "terminal.ansiMagenta": "#d33682", | |
| "terminal.ansiRed": "#dc322f", |
As I'm writing this small tutorial, I assume you've read my previous one about setting up macOS, so if for any tool I'll use without explanation, look to that other article.
The full version IS NOT MANDATORY, as in the tutorial that follows I installed the smaller version of MacTeX and proceded installing every needed dependency. Installing the complete package is about ~3.5GB of download and ~5GB on disk, the smaller one is just about 80MBs.
Click here to download the complete version or here to download the smaller version.
In your local clone of your forked repository, you can add the original GitHub repository as a "remote". ("Remotes" are like nicknames for the URLs of repositories - origin is one, for example.) Then you can fetch all the branches from that upstream repository, and rebase your work to continue working on the upstream version. In terms of commands that might look like:
git remote add upstream https://github.com/whoever/whatever.git
git fetch upstream
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).
Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.
Switch to the master branch and make sure you are up to date:
| var https = require('https'); | |
| var util = require('util'); | |
| exports.handler = function(event, context) { | |
| console.log(JSON.stringify(event, null, 2)); | |
| console.log('From SNS:', event.Records[0].Sns.Message); | |
| var postData = { | |
| "channel": "#aws-sns", | |
| "username": "AWS SNS via Lamda :: DevQa Cloud", |
| Laravel 5 - Deploy to Heroku | |
| Martin Cruz Otiniano | |
| > composer create-project laravel/laravel my_name_app | |
| > cd my_name_app | |
| > git init | |
| > git add -A | |
| > git commit -m "Initial commit" |
| Laravel 5 - Deploy to Heroku | |
| Martin Cruz Otiniano | |
| > composer create-project laravel/laravel my_name_app | |
| > cd my_name_app | |
| > git init | |
| > git add -A | |
| > git commit -m "Initial commit" |