Great article on Remote Work ala the Dutch!
Check this out: https://www.bbc.com/worklife/article/20200623-what-the-dutch-can-teach-the-world-about-remote-work
Check this out: https://www.bbc.com/worklife/article/20200623-what-the-dutch-can-teach-the-world-about-remote-work
Chris Stakutis CTO Concord Software and Executive Consulting chris.stakutis@concordsoftwareandexecutiveconsulting.com Executive Summary Very short summation: We are moving rapidly to a “services” economy which will mean lower wages, fewer roles, and less-educated jobs. The upside is that family, property improvements, personal transportation and in-home cooking will dramatically increase in value. What’s driving this is …
C19: What it means for investment, economy, survival Read More »
The funny thing about writing is that is is not like they taught you in high school. No. It’s about emotion and effect and reaching someone else’s feelings. Isn’t that interesting? I was staunch-taught in strict writing…but that’s not the world. I like this style better and I’ll work on it. Sadly this story is …
I’ve recently become an expert in Cypress (largely e2e testing, and for me/us largely ala React). It is fantastic, and combines all the right techniques you know and love. I’ve spent years in Jest/Jasmine and other test/frameworks, and they lack so much. But the reality is that testing front-end/GUI is just HARD! It’s not like …
Too much confusion and far too complicated data-sharing use-cases cause many React developers to become more discouraged concerning how to share data between React components and classes while preserving one-flow direction and asynchronous updates to the UI often from server-side changes or companion components. Even talented React developers do not truly understand ‘state’, ‘hooks’, ‘context’, …
New paper! Best Modern React Data Sharing Approaches Read More »
This is interesting/weird. The following code does NOT work: const [refresh, setRefresh] = useState(10); useEffect(() => { setInterval(() => { console.log(“Timeout, refresh:”, refresh); setRefresh(refresh + 3); }, 1000); return list.unsubscribe; }, []); What happens is that each time the timer-interval goes off, the value of ‘refresh’ is still at 10. Why? The value goes to …
I ran into a new challenge when I was refactoring and organizing code and components into smaller reusable pieces. I ran into a case where HOC-like approaches wont work, but perhaps an Inheritance model will, and settled on a much different approach. Let’s discuss the use case. Imagine your server holds a list of …
A different approach to data-sharing of server data/lists across components. Read More »
So, just landed in Logan, 1am. Need an Uber to my hotel downtown. I was worried…it’s kinda late, right? Not so. And what amazes me is how Logan and the world has totally embraced #Uber (and Lyft). It’s not just “a something”, it is: “it”. Walk thru the airport and terminal exits…1,000’s of signs pointing …
I love React, and mostly like Jest (and Jasmine and Java predecessors) but I will say: I spent a WAY MORE ENORMOUS time chasing simple debugging of jest scripts. Simple stuff. Why? I really dont know. It wasn’t designed for what I really want. It is designed for HUGE systems (like Citibank, Bank America, Amazon) …
Some in-the-trenches tips/experiences with React/Jest (autotesting) Read More »
Yeah, we all have. What I went thru many of you (I hope!) wont…but ever faced that “Lose your PEM file and you’re dead” from AWS? Been there. Turns out, it is survivable. AND do you even know what the files mean? I did not. It happens. Sometimes you lose or trash your PEM file …
AWS and PEM madness–ever lost or hurt your PEM file? Read More »