Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
calibrator-js
Advanced tools
Screen calibrator boilerplate for web based experiments. Developped in the Bavelier Lab.
Screen calibrator boilerplate for web based experiments.
Needs Jquery, Bootstrap and Underscore.js.
For production use the compiled and minified file : calibrator-compiled.min.js
<script src="https://code.jquery.com/jquery-2.2.4.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js">
</script>
<script src="../js/calibrator-compiled.min.js" type="text/javascript">
</script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<style>
html, body {
margin: 0;
}
body {
background: #E3E3E3;
}
</style>
<script type="text/javascript">
var calibrator;
document.addEventListener("DOMContentLoaded", function(event) {
/**
* After DOM is completely loaded, create a calibrator instance. Provided arguement to the constructor is the callbackWhenClosed. It is call whenever the calibrator is dismissed.
* calibratorOutput Argument sent to the callback is an object with keys
* * status
* + 0 the calibrator did not finish normally
* + 1 calibrator finish normally
* * diagonalSize
* + diagonal size in inches
* * diagonalSizeInPx
* + diagonal size in inches
* * distanceFromScreenInCm
* + distance from the screen in cm (calibrator.DISTANCE_FROM_SCREEN)
* * pixelsPerInch
* + computed pixel density in pixels per inch
* * pixelsPerDegree
* + computed pixels per degree
* @param {[type]} object) { console.log(object); } [description]
* @return {[type]} [description]
*/
calibrator = new Calibrator(function(calibratorOutput) { console.log(calibratorOutput); });
});
</script>
A possible implementation is given in example/index.html.
https://albertbuchard.github.io/calibrator-js-docs/
MIT - 2016
FAQs
Screen calibrator boilerplate for web based experiments. Developped in the Bavelier Lab.
The npm package calibrator-js receives a total of 1 weekly downloads. As such, calibrator-js popularity was classified as not popular.
We found that calibrator-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.