Copy and paste the code below into your .bash_profile or .zshrc if you use zsh
# stage and commit files
alias gac="git add . & git commit"
# git push
alias gp="git push"
# checkout branch| # Simulated daily request to your render project so that the service doesn't go down | |
| name: Daily render ping | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Runs daily at midnight UTC | |
| workflow_dispatch: # Allows manual triggering | |
| jobs: | |
| curl-website: |
| def isPalindrome(word): | |
| word_lowercase = word.lower() | |
| word_array = word_lowercase.split(' ') | |
| word_reverse = ' '.join(reversed(word_array)) | |
| return word_lowercase == word_reverse | |
| def main(): | |
| print("****************************") | |
| print("**✅ PALINDROME CHECKER ❌***") |
| const closeButton = document.querySelector("#close-button") | |
| closeButton.addEventListener("click", async () => { | |
| let [currentTab] = await chrome.tabs.query({ | |
| active: true, | |
| currentWindow: true, | |
| }) | |
| let allTabs = await chrome.tabs.query({ | |
| windowId: chrome.windows.WINDOW_ID_CURRENT, | |
| }) |
| const testGist = () => { | |
| console.log("As you can see, this is a test gist"); | |
| } | |
| testGist() |