What is Nostr?
Design_r /
npub12lg…ac9c
2025-01-27 06:42:30

Design_r on Nostr: Ray.so: Create beautiful images of your code https://ray.so/ Simple and easy tool to ...

Ray.so: Create beautiful images of your code
https://ray.so/

Simple and easy tool to beatify your code to display it as image.

from:
```
module.exports = leftpad;

function leftpad(str, len, ch) {
str = String(str);
var i = -1;

if (!ch && ch !== 0) ch = ' ';

len = len - str.length;

while (i++ < len) {
str = ch + str;
}
return str;
}
```
to:

![](https://m.stacker.news/74793)

pretty nice!

originally posted at https://stacker.news/items/865551
Author Public Key
npub12lg6yexfh0gsk8aupv5cr5fnj46l0kxg6lp6rz0zw6kwx603lmsshmac9c