- Detect secrets in code
- Identify secrets committed to version control
- Flag hardcoded credentials
- Identify missing authentication checks
- Detect improper authorization patterns
| { | |
| "css.customData": [".vscode/tailwind.json"] | |
| } |
The purpose of this directory of app scheme URI's is to make it easy for you to link from your app to other Christian apps, with the heart of unity.
Curated by https://faith.tools, the best place to find and distribute apps for Christians.
Share this list easily: https://dub.sh/ft-uri-schemes
Note
You can get a free copy of the Berean Standard Bible, a very approachable and readable Bible translation, at https://berean.bible/downloads.htm. Please consider using the resources they have available as training material or resources for your chatbot to have better context of God's Word.
Note
I've written the Unofficial Rules for AI Apps for Christians and hope it's a blessing for those interested in creating for the Christian audience and using AI
You can copy, translate, modify, and distribute this resource, without restriction, and without needing to ask permission.
| function encodeSvg(svgString) { | |
| // https://gist.github.com/jennyknuth/222825e315d45a738ed9d6e04c7a88d0?permalink_comment_id=4601690#gistcomment-4601690 | |
| return svgString.replace(/[<>#%{}"]/g, (x) => '%' + x.charCodeAt(0).toString(16)); | |
| } | |
| function createLoadingSvg(loadingColor) { | |
| return `<svg width="1" height="1" viewBox="0 0 1 1" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="${loadingColor}"/></svg>`; | |
| } | |
| function getLoadingBackgroundImage(el, loadingColor) { |