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
{ | |
"child": { | |
"child1": { | |
"directory": "~\/docker\/www\/blog", | |
"height": 507, | |
"profile": "2b7c4080-0ddd-46c5-8f23-563fd3ba789d", | |
"readOnly": false, | |
"synchronizedInput": true, | |
"type": "Terminal", | |
"uuid": "92a41f77-a105-402b-8c2c-c32942356acf", |
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
[ | |
{ | |
"id": "orderCreation", | |
"execute-command": "echo", | |
"response-message": "Auryn called me for order creation!", | |
"response-headers": [ | |
{ | |
"name": "Access-Control-Allow-Origin", | |
"value": "*" | |
} |
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
[ | |
{ | |
"id": "orderCreation", | |
"execute-command": "echo", | |
"response-message": "Auryn called me for order creation!", | |
"response-headers": [ | |
{ | |
"name": "Access-Control-Allow-Origin", | |
"value": "*" | |
} |
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 | |
for file in *.png; do | |
echo $file && convert "$file" -rotate -90 "$file" | |
done |
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
name: Pull request creator | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 15 * *' | |
jobs: | |
pr-creator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 |
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
version: '2.2' | |
services: | |
database_master: | |
restart: unless-stopped | |
image: mariadb:10.1.30 | |
environment: | |
- MYSQL_ROOT_PASSWORD=${MASTER_ROOT_PASSWORD} | |
- MYSQL_USER=${MASTER_USER_NAME} | |
- MYSQL_PASSWORD=${MASTER_USER_PASSWORD} | |
- TZ=America/Sao_Paulo |
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
{ | |
"firstName": "John", | |
"lastName": "Smith", | |
"age": 25 | |
} |
NewerOlder