12 Best JavaScript Blogs Every Developer Must Keep an Eye On – TechGenyz / / No Comments 12 Best JavaScript Blogs Every Developer Must Keep an Eye On TechGenyz “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: best, Blogs, Developer, every, JavaScript, Keep, Must, TechGenyz
Testing out the new Pipedream to Get Trance Releases / / No Comments Readers of my blog will know I’m a huge Pipedream fan. I’ve been blogging about them since I discovered them and find a way to use them for so many things now it’s my natural "first stop" when I want to build a new service. Raymond Camden… more → Posted in: JavaScript Tagged with: Pipedream, Releases, Testing, Trance
JavaScript Class Privates / / No Comments One of my aspects of JavaScript that drew me to it as a young developers was that its syntax was loose and I could code quickly. As you gain experience as an engineer, you start to realize that some traditional coding structure is a good thing, even if it slows you down. Using Jest or TypeScript to add typing to your JavaScript can save you from maintenance headaches and unexpected errors, for example. While those are pre-compile tools to accomplish structure, we’ve traditionally employed vanilla JavaScript patterns to mock private variables and methods in JavaScript. Did you know, however, that browsers and the JavaScript language support a specific syntax for creating private variables... more → Posted in: JavaScript Tagged with: class, JavaScript, Privates
Detect Dark Mode Preference with JavaScript / / No Comments Seemingly every website, dapp, and app offers a dark mode preference, and thank goodness. Dark mode is especially useful when I’m doing late night coding, or even worse, trading into altcoins. I’m presently working on implementing a dark theme on MetaMask and it got me to thinking: is there a way we can default to dark mode if the user’s operating system also defaults to dark mode? You can determine if the user’s operating system prefers dark mode with one quick line of code: const prefersDarkMode = window.matchMedia("(prefers-color-scheme:dark)").matches; // true This code snippet takes advantage of the CSS prefers-color-scheme media query with JavaScript’s... more → Posted in: JavaScript Tagged with: dark, Detect, JavaScript, Mode, Preference
This JavaScript scanner hunts down malware in libraries – The Register / / No Comments This JavaScript scanner hunts down malware in libraries The Register “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: down, hunts, JavaScript, libraries, Malware, Register, scanner, this
Working with Algolia’s Crawler / / No Comments I’ve been using Algolia on my blog for a while now. It’s an excellent search solution for the Jamstack and I absolutely recommend it, especially for sites where the size means Lunr may not be appropriate. While I like Algolia a lot, I haven’t really dug terribly deep into it. I went through multiple iterations of my implementation here to help deal with the size of my content and so forth, but outside of that, I kept the actual search experience nice and simple. This week, I gave a talk at the Jamstack_Berlin user group on search options for the Jamstack and that’s got me thinking more about both Lunr and Algolia. One of the things... more → Posted in: JavaScript Tagged with: Algolia's, Crawler, working
Why Javascript Is Such the Worst Programming Language – Medium / / No Comments Why Javascript Is Such the Worst Programming Language Medium “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: JavaScript, Language, Medium, programming, Such, Worst
Learn How to Create Asynchronous Programs With JavaScript – MakeUseOf / / No Comments Learn How to Create Asynchronous Programs With JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Asynchronous, create, JavaScript, Learn, MakeUseOf, programs