See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # In big teams instead of specifying one email to rule them all as apple_id | |
| # You can get this information from environment variable | |
| # By doing this it will allow different developers to specify their own apple ids | |
| # And if this env variable is not required - then it will be asked on any command that requires apple_id | |
| apple_id ENV["MY_APP_NAME_APPLE_ID"] # Your Apple email address | |
| ### ~/.bashrc of some user | |
| export MY_APP_NAME_APPLE_ID="[email protected]" | |
| #!/bin/bash | |
| # Tom Hale, 2016. MIT Licence. | |
| # Print out 256 colours, with each number printed in its corresponding colour | |
| # See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
| set -eu # Fail on errors or undeclared variables | |
| printable_colours=256 |
| { | |
| /* | |
| // Place your snippets for PHP here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| "Print to console": { | |
| "prefix": "log", | |
| "body": [ |
| class EventEmitter | |
| /// Shared Instance. | |
| public static var sharedInstance = EventEmitter() | |
| // ReactNativeEventEmitter is instantiated by React Native with the bridge. | |
| private static var eventEmitter: ReactNativeEventEmitter! | |
| private init() {} |
Migrations are a way to make database changes or updates, like creating or dropping tables, as well as updating a table with new columns with constraints via generated scripts. We can build these scripts via the command line using knex command line tool.
To learn more about migrations, check out this article on the different types of database migrations!
This will primarily focus on building a somewhat portable dev environment for developing GTK+ 3 apps using Vala, targeting Windows.
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
| #PersonalToolbar, | |
| #BookmarksToolbar, | |
| #MenuToolbar, | |
| #nav-bar{ display: none !important; } | |
| #tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox { | |
| min-height: 0 !important; | |
| } | |
| #tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] { |
| # This is for ElasticBeanstalk with Amazon Linux 2023. For previous Linux 2 or Linux 1, see revisions for ideas | |
| packages: | |
| yum: | |
| cups-libs: [] | |
| libdrm: [] | |
| libXdamage: [] | |
| libXfixes: [] | |
| libXrandr: [] | |
| mesa-libgbm: [] | |
| libxkbcommon: [] |