- Wrote a small web utility to visualize the string normalize forms
- Added some transform functions in Bender
-
Fixed issue with stdout using print in Bender
- Flexbox: Don’t use
justify-content: center
to centre the items- it will create issue when container has overflow
- use
margin-left: auto
on first flex-item &margin-right: auto
on last item - or use
safe
justify-content: safe center;
- GJS: write to stdout
print
will write the content with a newline in the end- to write without new line, use
Gio.DataOutputStream
const outputStream = new Gio.DataOutputStream({
baseStream: new Gio.UnixOutputStream({ fd: 1, closeFd: true }),
closeBaseStream: true,
});
outputStream.write(content, null);
outputStream.close(null);