Posts tagged with

Open Source

Vanilla JavaScript, extremely good reasons to use this

Vanilla JavaScript, extremely good reasons to use this

Let me start with a bold statement: knowing HTML and CSS helps write much better JavaScript! Why you may ask. Well, you need to grasp the whole medium to appreciate the best approach. The what, where, how, issues etc. Vanilla JavaScript may appear daunting but it is not. Instead it is faster, more …

Read more β†’

Vanilla JavaScript, best practices

You start to work on a new project and you are happily coding away and seeing results until the number of functions, event listeners etc become too many and you have to clean up your own mess in a much more organized manner. You scratch yourself behind the ear and wonder why you did not do that …

Read more β†’

The future is highly distributed

The future is highly distributed

In any business environment these days you almost invariably have all your data in different systems. A single ERP may be the driving force behind your organisation but having a monolithic system also limits you. This is the reason I am very enthusiastic about Jamstack, a new standard architecture …

Read more β†’

Delete @eaDIR folders

These are index folders, the presence of which can be quite annoying. To locate them find . -type d -name "@eaDir" if you’re feeling ok about automatically deleting them then: find . -type d -name "@eaDir" -print0 | xargs -0 rm -rf On a Synology NAS you can disable feature as follows synoservice …

Read more β†’