I hereby claim:
- I am itsazzad on github.
- I am itsazzad (https://keybase.io/itsazzad) on keybase.
- I have a public key ASCN37NGZH8p1RcsvH8uurHkxUeGk8QDvh9mOkEGPTFd5Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
git clone --depth 1 [email protected]:atlassian/atlassian-support-assistant.git | |
git clone --depth 1 [email protected]:atlassian/confluence-recent-edits-overview | |
git clone --depth 1 [email protected]:atlassian/connect-on-forge-alpha | |
git clone --depth 1 [email protected]:atlassian/devday-2021-new-in-forge | |
git clone --depth 1 [email protected]:atlassian/forge-and-bitbucket-pipelines | |
git clone --depth 1 [email protected]:atlassian/forge-app-events-confluence-marco | |
git clone --depth 1 [email protected]:atlassian/forge-attachment-count-custom-field | |
git clone --depth 1 [email protected]:atlassian/forge-byline-dynamicproperties | |
git clone --depth 1 [email protected]:atlassian/forge-compass-component-details | |
git clone --depth 1 [email protected]:atlassian/forge-compass-webtrigger |
#!/usr/bin/zsh | |
github="itsazzad" | |
target="atlassian-forge-create-templates" | |
templates=("blank" "compass-admin-page-custom-ui" "compass-admin-page-ui-kit" "compass-component-page-custom-ui" "compass-component-page-ui-kit" "compass-data-provider" "compass-global-page-custom-ui" "compass-global-page-ui-kit" "compass-team-page-custom-ui" "compass-team-page-ui-kit" "confluence-content-action-custom-ui" "confluence-content-action-ui-kit" "confluence-content-byline-custom-ui" "confluence-content-byline-ui-kit" "confluence-context-menu-custom-ui" "confluence-context-menu-ui-kit" "confluence-global-page-custom-ui" "confluence-global-page-ui-kit" "confluence-global-settings-custom-ui" "confluence-global-settings-ui-kit" "confluence-homepage-feed-custom-ui" "confluence-homepage-feed-ui-kit" "confluence-macro-custom-ui" "confluence-macro-typescript-ui-kit" "confluence-macro-ui-kit" "confluence-space-page-custom-ui" "confluence-space-page-ui-kit" "confluence-space-settings-custom-ui" "confluence-space-settings-ui-kit" "ji |
docker info > /dev/null 2>&1 | |
# Ensure that Docker is running... | |
if [ $? -ne 0 ]; then | |
echo "Docker is not running." | |
exit 1 | |
fi | |
echo "Starting..." |
var details = document.querySelectorAll("[id*='detailIndex']") | |
var data = { | |
daypart: [], | |
temperature: [], | |
UVIndex: [], | |
} | |
for (let i = 0; i < details.length; i++) { | |
details[i].toggleAttribute("open") | |
data.daypart.push(details[i].querySelector("[data-testid='daypartName']").textContent) |
const average = (array) => array.reduce((a, b) => a + b) / array.length; | |
var packages = document.querySelectorAll("tr:not(.hidden) .package-container") | |
const prices = []; | |
for (let i = 0; i < packages.length; i++) { | |
const pack = packages[i].innerText; | |
prices.push(Number(/৳\s([^\s(]+)/.exec(pack)[1])) | |
} | |
const min = Math.min(...prices); | |
const max = Math.max(...prices); |
#!/bin/bash -eu | |
OPENSSL_VER=3.0.0 | |
mkdir openssl | |
cd openssl | |
wget https://www.openssl.org/source/openssl-${OPENSSL_VER}.tar.gz | |
tar xf openssl-${OPENSSL_VER}.tar.gz | |
cd openssl-${OPENSSL_VER} | |
./config zlib shared no-ssl3 |
for f in *; do | |
if [ -d "$f" ]; then | |
cd $f | |
pwd | |
git status | |
cd .. | |
fi | |
done |
echo "Message:" | |
read message | |
for f in *; do | |
if [ -d "$f" ]; then | |
cd $f | |
pwd | |
echo "$upstream/$f" | |
git add --all | |
git commit -m "$message" | |
git push upstream |
echo "Target:" | |
read upstream | |
for f in *; do | |
if [ -d "$f" ]; then | |
cd $f | |
pwd | |
echo "$upstream/$f" | |
gh repo create $upstream/$f --public --confirm | |
git remote add upstream [email protected]:$upstream/$f.git | |
git push upstream |