Approriately change if needed for master and staging.
git log origin/staging..origin/dev --oneline --no-merges
Press enter and grab all the result in clipboard
Navigate this website https://nowmovies.netlify.app/ Create a clone of this app using:
@import url(https://cdn.jsdelivr.net/gh/tonsky/[email protected]/distr/fira_code.css); | |
.code-diff { | |
font-family: 'Fira Code', monospace; | |
font-weight: 500; | |
line-height: 23px; | |
} |
Install CodeQL CLI from here
codeql database create project-ql --language=javascript
codeql pack download codeql/javascript-queries
codeql database analyze project-ql codeql/javascript-queries --format=sarifv2.1.0 --output=query-results.sarif --download
sudo pip install sarif-tools
sarif html -o venteur-ql-report/summary.html query-results.sarif
Now open the summary.html in your favorite browser
JavaScript is an interpreted, powerful, versatile and beginner-friendly programming language that can add interactivity to a website, create servers, create games, etc.
This happens in games, in the behavior of responses when buttons are pressed or with data entry on forms; with dynamic styling; with animation, etc.
With ❤️ Made in Nepal
As developers, we know that writing error-free code is nearly impossible. Errors are inevitable, but it's how we handle them that defines the stability and robustness of our applications. This document dives deep into exception handling, best practices, and defensive programming strategies that ensure code resilience. Defensive programming isn't just about catching errors; it's an art of anticipating potential failures and ensuring your software behaves predictably in the face of problems. Effective error handling and meaningful logging are essential components of this mindset.
Errors represent serious problems that prevent the program from completing its task. In contrast, exceptions are conditions that interrupt the normal flow of the program but can often be handled. Both are types of runtime errors, which means they occur during the program's execution.
/** | |
* Goto https://www.netflix.com/settings/viewing-history | |
* Visit rating tab | |
* Fire up console and paste this code. | |
* Gets you array of object. Use your rated data to get suggestions from GPT or anything you want | |
* according to your preferences | |
* Note: This script needs to be updated if netflix updates their page. | |
*/ | |