PinnedInITNEXTbyDominik Bulaj·Mar 1, 2024Feature Flags in the React appIn a recent project, I had to implement Feature Flags. They allow conditionally enable features while you’re gradually rolling them out to…A response icon1A response icon1
InITNEXTbyDominik Bulaj·Apr 16, 2024TIP: Dealing with Multiple SSH Key RepositoriesI have different Git repositories cloned with different SSH keys. Say, one is work code and one is personal / side project. When I finish…
InITNEXTbyDominik Bulaj·Feb 4, 2022Fixing vulnerabilities found in a dependency treeI’m working for a company that produces financial cloud solutions. We’re making a new app — a mobile app developed in React Native. The…A response icon1A response icon1
InITNEXTbyDominik Bulaj·Mar 16, 2021Composing functions in JavaScriptTaking functional programming approach to pipeline functions in JavaScriptA response icon1A response icon1
Dominik Bulaj·Mar 12, 2021How about one-liner solution to count all the values incl. in nested arrays:
Dominik Bulaj·May 6, 2020Ways to convert numeric string to integer in JavaScriptIf you work with JavaScript for sure you got a case when you used addition (+) with number and a numeric string (e.g. “12”). Since…
Dominik Bulaj·May 5, 2020Reimplementing JavaScript Array methodsSome time ago I’ve found list of JavaScript tasks. Those cover all developer career levels — Newbie/Junior/Mid and are fun way to…
InITNEXTbyDominik Bulaj·Jun 11, 2018Create Date from MySQL DATETIME format in JavaScriptIn JavaScript we can create Date object by either constructor (new Date()) or by using Date.parse() method.