rajeev-k | 5 years ago | on: Alternative lightweight UI library to modern day frameworks
rajeev-k's comments
rajeev-k | 5 years ago | on: Alternative lightweight UI library to modern day frameworks
rajeev-k | 5 years ago | on: An ex-Googler’s guide to dev tools
If you want to search code sitting on your local hard disk try this tool (built on top of Lucene):
https://github.com/Rajeev-K/eureka
I made it when I was frustrated by existing tools such as sourcegraph and opengrok.
rajeev-k | 5 years ago | on: If Not SPAs, What?
The SPA pattern is fine, it is React Router and Redux that has overcomplicated things.
Here's an example of an app written using the MVC pattern that is way simpler than the React stack: https://github.com/Rajeev-K/eureka
It uses two very simple libs:
A 500-line router: https://github.com/Rajeev-K/mvc-router/
A 200-line templating library that uses JSX syntax: https://github.com/wisercoder/uibuilder/
rajeev-k | 5 years ago | on: Crank.js – Write JSX-driven components with functions, promises and generators
https://github.com/Rajeev-K/eureka
I find myself more productive coding directly against DOM APIs, using these tiny libs:
MVC router (500 lines): https://github.com/Rajeev-K/mvc-router/
JSX templating (200 lines): https://github.com/wisercoder/uibuilder
rajeev-k | 6 years ago | on: How to manage HTML DOM with vanilla JavaScript only?
rajeev-k | 6 years ago | on: How to manage HTML DOM with vanilla JavaScript only?
rajeev-k | 6 years ago | on: How to manage HTML DOM with vanilla JavaScript only?
rajeev-k | 6 years ago | on: Compiling PHP's Eval() to .NET
(latestquote - previousquote) / previousquote
iif(isonlineorder, "Online", "Retail")
FirstName & " " & LastName
iif(IsNothing(Amount), "Amount missing", Format(Amount, "c2"))
"Q" & ((OrderDate.Month - 1) \ 3 + 1)
MonthName(DatePart(DateInterval.Month, Today), false)
DateAdd(DateInterval.Day, 1, Today)
See this file for example of usage:
https://github.com/Rajeev-K/formula-parser/blob/master/src/R...rajeev-k | 6 years ago | on: Compiling PHP's Eval() to .NET
rajeev-k | 6 years ago | on: Build Your Own React
Routers can be (and should be, IMO) written to be independent of UI component libraries such as React and webcomponents. See an example here: https://github.com/Rajeev-K/mvc-router You can use it with React---and in some ways it works better than react-router.
rajeev-k | 6 years ago | on: .NET Core 3.0