Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rajeev-k
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
A C compiler in TypeScript, Written by Claude
(github.com)
1 points
by
rajeev-k
7mo ago
|
0 comments
2.
▲
by
rajeev-k
6y ago
By "metal" I meant the browser, so avoiding heavy libs.
3.
▲
by
rajeev-k
6y ago
I have noticed newer generations of developers believe they need heavy frameworks like React to develop web applications. Most apps don't need such heavy frameworks. Here's a 500-line "framework" (if you can call it that
4.
▲
by
rajeev-k
6y ago
> Both github and gitlab have it 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 to
5.
▲
by
rajeev-k
6y ago
> SPA pattern has failed to simplify web development 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 Rea
6.
▲
by
rajeev-k
6y ago
I would like to demo a simpler alternative to Vue and React: manipulate DOM directly. I do it in this application: https://github.com/Rajeev-K/eureka I find myself more productive coding directly against DOM APIs, usin
7.
▲
by
rajeev-k
6y ago
If there is anything I am trying to prove it is that you don't need complicated frameworks like Angular or React. Those frameworks have gotten too complex for what they do.
8.
▲
by
rajeev-k
6y ago
Yes, and the MVC framework is all of 500 lines of code and can be used with React too: https://github.com/Rajeev-K/mvc-router
9.
▲
by
rajeev-k
6y ago
Here's an example of a vanilla JS app with good architecture: https://github.com/Rajeev-K/eureka
10.
▲
by
rajeev-k
7y ago
Any valid Visual Basic.NET expression is supported. Here are some examples: (latestquote - previousquote) / previousquote iif(isonlineorder, "Online", "Retail") FirstName & " " & LastName
11.
▲
by
rajeev-k
7y ago
I needed the ability to safely execute formulas in my .NET app. My solution was to write a parser and interpreter. Here it is: https://github.com/Rajeev-K/formula-parser
12.
▲
by
rajeev-k
7y ago
> webcomponent based router 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
13.
▲
by
rajeev-k
7y ago
Docker is a better way to distribute apps than Electron, in my opinion. From a developer point of view you just build a regular web app, so better than Electron. From the user's point of view, Docker is better because of isolation, and
14.
▲
Show HN: Index and search your source code using this Lucene-based app
(github.com)
3 points
by
rajeev-k
7y ago
|
0 comments
15.
▲
JSXtyper – integrate React.js into TypeScript projects
(github.com)
2 points
by
rajeev-k
11y ago
|
0 comments