BS5Docs Bludit Theme released

BS5Docs released! A Bootstrap 5 theme for Bludit to build beautiful online documentation. Get it while it’s hot: github.com/joho1968/bludit-bs5docs See it live here: bludit-bs5docs.joho.se   See also: BS5Plain theme for Bludit

BS5Plain Bludit theme updated

BS5Plain updated! BS5Plain is a Bootstrap 5 theme for Bludit with support for most Bludit features. Get it while it’s hot: github.com/joho1968/bludit-bs5plain See it live here: bludit-bs5plain.joho.se #bludit #cms #theme #foss #oss #opensource

BS5Plain Bludit Theme released

BS5Plain released! A Bootstrap 5 theme for Bludit with support for most Bludit 15.3.x features. Get it while it’s hot: github.com/joho1968/bludit-bs5plain See it live here: bludit-bs5plain.joho.se   See also: BS5Docs theme for Bludit

The GitHub ReadME Project

The GitHub ReadME project is all about increasing awareness about Open Source, its developers and communities, as well as bringing people closer together. Chances are you’re using more Open Source code in your everyday life than you know. From GitHub ReadME about: Coding is usually …

Read more

var_dump() for Javascript

PHP, for example, has var_dump() and print_r() to facilitate quick variable dumps to log files, etc. For Javascript, one can use console.log() in combination with JSON.stringify() to achieve something similar.   console.log( JSON.stringify(object) ); It’s also possible to “pretty-print” the output like so:   console.log( JSON.stringify(object, null, …

Read more