CREATIVE CODING BLOG
Quick Talk
While searching for new ways of dealing with custom tailwind css templates within modern CMS, I searched wysiwyg editor news. Components https://editorjs.io has block management, and can convert a block type : imagine you start typing a text and want it to be a header, editor js allows that. Gutenberg does not . https://quilljs.com/ looks […]
Read more »
started working with tailwind css, at first it really seemed impossible to code responsive menu with hierarchy in nuxtjs. NextJs has lots of nice template but nuxt seems behind , cruip sells templates for vue but not for nuxt 3, not yet though , and I finally found a nuxt2 template , which has been […]
there is a long discussion on nuxt forum on how to properly integrate AOS animation library. The objective here for me is to experiment this light animation library without using npm with the aos nuxt module , instead i want to use CDN. This is quite straightforward with Nuxt and good alternative if you don't […]
After finding a solid basic tailwind starter on stackblitz (github repository), I go on further creative stuff. template requirements this template is a vue / vite / Tailwind responsive website with top navigation hierarchical menu : a good start for developing most web sites. First thing is to fork the starter to start working on […]
With free basic features for full featured administration panel with security on laravel , FilamentPHP is a good option compared to the big brother, NOVA, also a good option from laravel developers themselves, but with a small initial cost. Let's have a look into a poorly documented FilamentPHP feature : multi connection table administration. Once […]
following my latest study of blog design using masonry bootstrap, I decided to investigate the same effect with tailwind css. Turns out that it's so simple it's done in native tailwind without css.. Example on tailwindflex, collection of tailwind layouts. Speaking of tailwind, you'll find here a collection of free templates. Seems that tailwind likes […]
small evolution of blog design towards creativity. 2023 was the occasion of rendering a simple bootstrap card design with masonry layout, meaning that image proportions can vary and rows cannot be arranged equally. This is the choice that gives privileges to image integrity as opposed to image cropping, which gives a good looking layout but […]
pinia subscribe method is very powerful, in any component you can subscribe to global state variables, manipulate them and use this combination as communication between components. It's also a dangerous game, as infinite recursivity can occur. counting reactivity occurences first thing is to measure the number of recursive calls to your subscribe Modifying state variable […]
We were surprised by the quality of still pictures generated by the likes of MidJourney and DALL-E, and that was only a few months ago. OpenAI, maker of the famous CHAT GPT, released videos generated by its new machine, baptised SORA. Live mammoths Results are just overwhelming : realistic animated photo movie quality scenes are […]
Following a nice tutorial that introduces nuxt composable structure via Vue Composition Api, I create this Nuxt starter for a three js project that is the foundation for future development of on demand full screen configurator using primevue UI components . 1 - First draft : basic primevue threejs integration Quite easy these days, to […]