git commit --fixup=<commit> -- construct a commit message for use with rebase --autosquash
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 | |
| echo ">>> Stoping docker services" | |
| docker stop `docker ps -q` | |
| echo ">>> Commiting note" | |
| cd /home/tlcong/Documents/Notebooks | |
| git add . | |
| git commit -m "Backup notes" | |
| git push vanilla master -f |
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 | |
| echo ">>> Starting openpaas.linagora.com" | |
| chromium --app=https://openpaas.linagora.com/\#/ > /dev/null 2>&1 & | |
| echo ">>> Starting chat.linagora.com" | |
| chromium --app=https://chat.linagora.com/openpaas/channels > /dev/null 2>&1 & | |
| echo ">>> Starting Skype" | |
| chromium --app=https://web.skype.com/en/ > /dev/null 2>&1 & |
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
| DATE_WEEK="2020-09-21T00:00:00-07:00" | |
| DATE_MONTH="2020-09-01T00:00:00-07:00" | |
| WORK_SPACE="/home/tlcong/workspace/linagora"; | |
| echo "Please enter author's email: " | |
| read AUTHOR | |
| echo "Do you want to pull latest of codes(yes/no):" | |
| read PULL_LATEST_CODE | |
| echo "Calculating..." |
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
| {"swagger":"2.0","info":{"title":"OpenPaaS","description":"OpenPaaS API","version":"0.1"},"host":"localhost:8080","basePath":"/api/v0.1","consumes":["application/json"],"produces":["application/json"],"paths":{"/activitystreams/{as_uuid}":{"get":{"tags":["ActivityStreams"],"description":"Gets the timeline of an activity stream from its uuid.","parameters":[{"$ref":"#/parameters/as_uuid"},{"$ref":"#/parameters/as_before"},{"$ref":"#/parameters/as_after"},{"$ref":"#/parameters/as_limit"}],"responses":{"200":{"$ref":"#/responses/as_timeline"},"400":{"$ref":"#/responses/cm_400"},"401":{"$ref":"#/responses/cm_401"},"404":{"$ref":"#/responses/cm_404"},"500":{"$ref":"#/responses/cm_500"}}}},"/activitystreams/{as_uuid}/resource":{"get":{"tags":["ActivityStreams"],"description":"Gets the resource associated with the activitystream.","parameters":[{"$ref":"#/parameters/as_uuid"}],"responses":{"200":{"$ref":"#/responses/as_resource"},"400":{"$ref":"#/responses/cm_400"},"401":{"$ref":"#/responses/cm_401"},"404":{"$ref":" |
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
| 'use strict'; | |
| module.exports = dependencies => { | |
| const coreESListeners = dependencies('coreElasticsearch').listeners; | |
| const denormalize = require('./denormalize')(dependencies); | |
| return { | |
| register | |
| }; |
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
| "settings": { | |
| "analysis": { | |
| "filter": { | |
| "nGram_filter": { | |
| "type": "nGram", | |
| "min_gram": 1, | |
| "max_gram": 20, | |
| "token_chars": [ | |
| "letter", | |
| "digit", |