CodyHouse (@codywebhouse) 's Twitter Profile
CodyHouse

@codywebhouse

Web design nuggets

ID: 2341657788

linkhttp://codyhouse.co calendar_today13-02-2014 09:00:28

2,2K Tweet

20,20K Followers

24 Following

Claudia Romano (@romano_cla) 's Twitter Profile Photo

🎉 I have started a new series of tutorials on the CodyHouse blog: short articles on JS methods and common yet tricky JS tasks. The goal is to help users customise the CodyHouse components. The first article is on the insertAdjacentHTML method: codyhouse.co/blog/post/over…

🎉 I have started a new series of tutorials on the <a href="/codywebhouse/">CodyHouse</a> blog: short articles on JS methods and common yet tricky JS tasks.

The goal is to help users customise the CodyHouse components. The first article is on the insertAdjacentHTML method:

codyhouse.co/blog/post/over…
Claudia Romano (@romano_cla) 's Twitter Profile Photo

✍️ I've published a new article on the CodyHouse blog where I share some tips on handling JavaScript events and keeping them organised with the handleEvent method codyhouse.co/blog/post/hand…

✍️ I've published a new article on the <a href="/codywebhouse/">CodyHouse</a> blog where I share some tips on handling JavaScript events and keeping them organised with the handleEvent method

codyhouse.co/blog/post/hand…
Claudia Romano (@romano_cla) 's Twitter Profile Photo

Comparing dates in JS can be a tricky task! These 3 points will help you master it: - Use Date objects for relational operations (< or >) - Use the getTime() method for equality (e.g., ===) - Use built-in methods, like getFullYear(), for comparing specific attributes of a date

Comparing dates in JS can be a tricky task! These 3 points will help you master it:

- Use Date objects for relational operations (&lt; or &gt;)
- Use the getTime() method for equality (e.g., ===)
- Use built-in methods, like getFullYear(), for comparing specific attributes of a date
CodyHouse (@codywebhouse) 's Twitter Profile Photo

✂️ You can now generate VS Code snippets compatible with your CodyFrame configurations: codyhouse.co/vs-code-snippe…

Claudia Romano (@romano_cla) 's Twitter Profile Photo

Quick recap on merging arrays in JS - I still get confused sometimes 🤔 - push + spread operator to append an array to another - unshift + spread to prepend an array to another - concat to merge two arrays without modifying them More info & examples 👇 codyhouse.co/blog/post/java…

Quick recap on merging arrays in JS - I still get confused sometimes 🤔

- push + spread operator to append an array to another
- unshift + spread to prepend an array to another
- concat to merge two arrays without modifying them

More info &amp; examples 👇
codyhouse.co/blog/post/java…
Claudia Romano (@romano_cla) 's Twitter Profile Photo

Working on a new CodyFrame feature: view the grid columns, as in tools like Figma! Particularly useful when creating complex layouts. Cool thing: it automatically adapts when you modify the grid classes.

Sebastiano Guerriero (@guerriero_se) 's Twitter Profile Photo

It's time for a change CodyHouse ↓ From a business standpoint, we have failed. Why? - Our entire model was too dependent on our CSS framework. - Adoption of the framework has been low. - Users love our components but are hesitant to learn a new framework just to use them.

It's time for a change <a href="/codywebhouse/">CodyHouse</a> ↓

From a business standpoint, we have failed.

Why?

- Our entire model was too dependent on our CSS framework.
- Adoption of the framework has been low.
- Users love our components but are hesitant to learn a new framework just to use them.
Sebastiano Guerriero (@guerriero_se) 's Twitter Profile Photo

✨ CSS tip! Try replacing :focus-within with :has(input:focus-visible) to make focus visible only during keyboard navigation ↓