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/zsh | |
# CONFIG | |
REPO_BASE_URL="https://github.com/StackGuardian/dashboard" # Change this to your repo | |
CODE_EDITOR="code" # or "code", "vim", etc. | |
PR_TEMPLATE_FILE="/tmp/pr_template.md" # Temporary file for PR template | |
DASH_BASE_BRANCH="develop" # Change as needed | |
PROD_BASE_BRANCH="main" # Change as needed | |
# REQUIRED COMMANDS CHECK |
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
from math import exp | |
def fx(x): | |
return (x+7) * exp(x) | |
def jumlahanRiemanKiri(function, a, b, n = 10e7): | |
""" | |
Fungsi untuk menghitung integral tentu menggunakan metode jumlah rieman kiri | |
Parameters |