Alex Plescan (@alexplescan) 's Twitter Profile
Alex Plescan

@alexplescan

Software dev, building mailgrip.io

ID: 499572083

linkhttp://alexplescan.com calendar_today22-02-2012 07:56:46

60 Tweet

64 Takipçi

202 Takip Edilen

David Booth (@david__booth) 's Twitter Profile Photo

"Async" Slack channels are one of our secret weapons at On Deck now ODF After using them for ~18 months, I can't imagine Slack without them. Particularly now— operating 100% remote with 62 teammates in 14 timezones. Here's the "how it works" post I use to open each new 1:1 channel 👇

tobi lutke (@tobi) 's Twitter Profile Photo

As is tradition, the wonderful Ruby core team puts a present under our tree structures: Ruby 3.2 is out at ruby-lang.org/en/news/2022/1… - I do think they are too humble to really drive home the massive performance gains in the YJIT engine, though!

Alex Plescan (@alexplescan) 's Twitter Profile Photo

Web TIL: In case you've been out of the loop like me and are still using `Element.scrollLeft` to scroll a container til it shows an element, check out `Element.scrollIntoView`. Super simple API compatible with all modern browsers. developer.mozilla.org/en-US/docs/Web…

Web TIL: In case you've been out of the loop like me and are still using `Element.scrollLeft` to scroll a container til it shows an element, check out `Element.scrollIntoView`.

Super simple API compatible with all modern browsers.

developer.mozilla.org/en-US/docs/Web…
Alex Plescan (@alexplescan) 's Twitter Profile Photo

Homebrew package spring cleaning time. `$ brew leaves` will list all the ones you've installed (and not the ones installed as dependencies of others). Combine with `$ brew leaves | xargs brew desc --eval-all` for prettier output.

Homebrew package spring cleaning time. `$ brew leaves` will list all the ones you've installed (and not the ones installed as dependencies of others). 

Combine with `$ brew leaves | xargs brew desc --eval-all` for prettier output.
Alex Plescan (@alexplescan) 's Twitter Profile Photo

I've been using iStat Menus by Bjango to put clocks I refer to often (e.g. UTC) in my menu bar. Time saving and second to none! Puns intended... guess it's time for me to clock out.

I've been using iStat Menus by <a href="/bjango/">Bjango</a> to put clocks I refer to often (e.g. UTC) in my menu bar.

Time saving and second to none! Puns intended... guess it's time for me to clock out.
Alex Plescan (@alexplescan) 's Twitter Profile Photo

In Ruby, pattern matching a regexp sets global variables containing the last match results. $1 for the first capture, $2 for the second, etc. Makes for a neat way to use regex in case statements and access their captures.

In Ruby, pattern matching a regexp sets global variables containing the last match results.

$1 for the first capture, $2 for the second, etc.

Makes for a neat way to use regex in case statements and access their captures.