This specification details the implementation plan, configuration footprint, security matrix, and runtime data flows for adding a custom Hyperlink Control Property to the Bahmni Forms 2.0 engine.
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
| # to get the --no-merged branches right before 2 month (echo branch name) | |
| for branch in $(git branch -r --no-merged | grep -v HEAD); do echo -e $(git show --format="%ci %cr %an" $branch | head -n 1) \\t$branch; done | sort -r | awk '{ if($1 <= "2020-07-23") { print $NF}}' | |
| # to get the --no-merged branches right before 2 month | |
| for branch in $(git branch -r --no-merged | grep -v HEAD); do echo -e $(git show --format="%ci %cr %an" $branch | head -n 1) \\t$branch; done | sort -r | awk '{ if($1 <= "2020-07-23") { print }}' | |
| # to get the --no-merged branches right before 2 month without release branches (echo branch name) | |
| for branch in $(git branch -r --no-merged | grep -v HEAD); do echo -e $(git show --format="%ci %cr %an" $branch | head -n 1) \\t$branch; done | sort -r | awk '{ if($1 <= "2020-07-23") { print $NF}}' | awk '!/release/' | |
| # to get the --no-merged branches right before 2 month without release and master branches (echo branch name without origin keyword) |
I hereby claim:
- I am vvkpd on github.
- I am vvkpd (https://keybase.io/vvkpd) on keybase.
- I have a public key ASDiwJOAdCwH4Z4HyyMkmIVAohWgpJWvCleBChsy4qU98go
To claim this, I am signing this object:
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
| #!/usr/bin/env bash | |
| # First line of the script is the shebang which tells the system how to execute | |
| # the script: http://en.wikipedia.org/wiki/Shebang_(Unix) | |
| # As you already figured, comments start with #. Shebang is also a comment. | |
| # Simple hello world example: | |
| echo Hello world! # => Hello world! | |
| # Each command starts on a new line, or after a semicolon: |
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
| url='https://guide.bash.academy/variables.html' | |
| echo "Sample URL" | |
| echo "-----------------$url-----------------"; | |
| # Remove the shortest string that matches the pattern if it's at the start of the value. | |
| echo "${url#*/}" | |
| # Remove the longest string that matches the pattern if it's at the start of the value. | |
| echo "${url%/*}" | |
| # Remove the shortest string that matches the pattern if it's at the end of the value. | |
| echo "${url##*/}" |
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
| const { exec } = require('child_process'); | |
| const cloneAllRepoOf = function(user,repo){ | |
| exec(`curl https://api.github.com/users/${user}/repos`, (err,stdout) =>{ | |
| const content = JSON.parse(stdout); | |
| if(!Array.isArray(content)){ | |
| console.log(stdout) | |
| return ; | |
| } | |
| if(repo){ |
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
| #!/usr/bin/env bash | |
| # Ask for the administrator password upfront. | |
| sudo -v | |
| # Keep-alive: update existing `sudo` time stamp until the script has finished. | |
| while true; do sudo -nv true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | |
| #Ask for name to use in oh my zsh | |
| echo "\n\nEnter name to display in prompt" |
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
| remove all containers forcefully:- | |
| docker rm -f $(docker ps -a -q) | |
| remove all docker images forcefully:- | |
| docker rmi -f $(docker images -q) |