CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward
This file contains hidden or 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
| image: smartapps/bitbucket-pipelines-debian-10 | |
| pipelines: | |
| branches: | |
| master: | |
| - step: | |
| name: Deploy Test | |
| deployment: test | |
| script: | |
| - composer install --no-interaction --no-progress --prefer-dist |
Welcome to step by step hands-on guide to setup webpack in your upcoming typescript project. Please follow the steps and you should be able to create your own webpack project. Please download the source code from github.
You will learn below things:
- โ Create a Typescript node.js project.
- โ Install Dependencies with webpack & typescripts.
- โ
Use Webpack CLI to crate
webpack.config.jsfile and modify webpack.config.js based on our need.
This file contains hidden or 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 | |
| /** @var \Illuminate\Filesystem\FilesystemAdapter $fs */ | |
| $fs = \Storage::disk('object_storage'); | |
| /** @var \League\Flysystem\Filesystem $driver */ | |
| $driver = $fs->getDriver(); | |
| /** @var \League\Flysystem\AwsS3v3\AwsS3Adapter $adapter */ | |
| $adapter = $driver->getAdapter(); |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Use this script to perform backups of one or more MySQL databases. | |
| # | |
| # Databases that you wish to be backed up by this script. You can have any number of databases specified; encapsilate each database name in single quotes and separate each database name by a space. | |
| # | |
| # Example: | |
| # databases=( '__DATABASE_1__' '__DATABASE_2__' ) |