Alekc (@hexman84) 's Twitter Profile
Alekc

@hexman84

Software engineer

ID: 369294014

calendar_today07-09-2011 03:18:37

1,1K Tweet

148 Takipçi

461 Takip Edilen

Timur Shemsedinov (@tshemsedinov) 's Twitter Profile Photo

Единственный кейс, в котором я разрешаю вам делать .forEach в #javascript, но лучше вообще забыть про .forEach в пользу for..of

Единственный кейс, в котором я разрешаю вам делать .forEach в #javascript, но лучше вообще забыть про .forEach в пользу for..of
Addy Osmani (@addyosmani) 's Twitter Profile Photo

CSS Scroll Snap: bit.ly/scroll-snap ~ lock the viewport to certain elements after the user finishes scrolling. Ace for advanced interactions. Also see bit.ly/csssnap to learn more. h/t Adam Argyle @una @maxkoehler

PostCSS (@postcss) 's Twitter Profile Photo

Cross-browser scrollbar plugin by @pascalduez postcss-scrollbar adds ::-webkit-scrollbar-* rules according to standard scrollbar-color/scrollbar-width properties to make them work in Chrome/Safari and old Edge (Firefox support standard properties). github.com/pascalduez/pos…

Cross-browser scrollbar plugin by @pascalduez 

postcss-scrollbar adds ::-webkit-scrollbar-* rules according to standard scrollbar-color/scrollbar-width properties to make them work in Chrome/Safari and old Edge (Firefox support standard properties).

github.com/pascalduez/pos…
Steve Schoger (@steveschoger) 's Twitter Profile Photo

🔥 It can be really hard to keep user generated content looking clean and balanced if you aren’t careful about how you present it. Here are some tricks you can use to “normalize” content you don’t control into a really great looking design.

🔥 It can be really hard to keep user generated content looking clean and balanced if you aren’t careful about how you present it.

Here are some tricks you can use to “normalize” content you don’t control into a really great looking design.
Web Dev with Matt (@webdevwithmatt) 's Twitter Profile Photo

#PHP & #Docker Tip: Add Composer to a Docker Image using the official Docker Hub Composer image and Multi-stage builds. I don't know why I didn't think of this before. Glad that I have, now.

#PHP & #Docker Tip: Add Composer to a Docker Image using the official Docker Hub Composer image and Multi-stage builds.

I don't know why I didn't think of this before. Glad that I have, now.
Stefan Bauer (@stefanbauerme) 's Twitter Profile Photo

🔥 Composer can do more than requiring packages. Here are some commands I regularly use. - `composer outdated` (shows outdated packages) - `composer show` (shows all installed packages, -t as tree) - `composer why / why-not` (tells you why it depends (or not) on another package

🔥 Composer can do more than requiring packages. Here are some commands I regularly use.

- `composer outdated` (shows outdated packages)
- `composer show` (shows all installed packages, -t as tree)
- `composer why / why-not` (tells you why it depends (or not) on another package
Jordi Boggiano (@seldaek) 's Twitter Profile Photo

Composer 2.3 is ready to be released and we need your help testing it! 🎉 It's easy: composer self-update --preview 🚀 Thanks 😀#composerphp #phpc

Composer 2.3 is ready to be released and we need your help testing it! 🎉

It's easy: composer self-update --preview 🚀

Thanks 😀#composerphp #phpc
Steve (Builder.io) (@steve8708) 's Twitter Profile Photo

How do Nike and Apple make such smooth and touch friendly carousels with pure CSS? /* tl;dr */ .carousel { scroll-snap-type: x mandatory; } .carousel .item { scroll-snap-align: start; } More detail 👇

Steve (Builder.io) (@steve8708) 's Twitter Profile Photo

Here's a more full example with dots you can click on to scroll to an item with just a couple lines of JS using element.scrollIntoView() Same trick could power next/prev buttons too jsfiddle.net/L1cs6gt5/3/