
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
tualo-code39
Advanced tools
tualo-code39 is a small and simple code 3 of 9 library written in javascript. This library creates simple text representation of the barcode for the given string. The function getCode(data) returns the barcode representation as string. "n" or "N" means you have to draw a narrow bar. "w" or "W" means you have to draw a normal bar. If the letter is in upper case you must draw a black bar. You don't need to draw the lower case letters, but you have to skip narrow or wide bar size ahead. Based on the width of the normal (or wide) bar's width, the narrow bar width must be the third part of that.
If the given string contains any not supported characters, an exception will be thrown.
npm install tualo-code39
From nodejs:
var Code39 = require('tualo-code39').Code39;
var code39 = new Code39();
var ascii = code39.getCode('tualo.de');
console.log(ascii);
In a Browser:
<script src="lib/code39.js" type="text/javascript"></script>
<script type="text/javascript">
var code39 = new Code39();
var ascii = code39.getCode('tualo.de');
console.log(ascii);
</script>
The output will be:
NwNnWnWnNnNnNnWnWwNnWwNnNnNnWnWnNnNwNnWnNnWnNnNwWnWnNnWnNwNnWwNnNnWnNnNnNnWwNnWnWnNnWwNnNnNwNnWnWnNn
FAQs
Small and simple Code 3 of 9 Library
We found that tualo-code39 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.