Posts

Showing posts from May 17, 2023

Google Analytics 4 was frustrating, so we built our own analytics service

Article URL: https://requestmetrics.com/blog/product/google-analytics-4-has-me-so-frustrated-we-built-our-own-analytics-service/ Comments URL: https://news.ycombinator.com/item?id=35978445 Points: 49 # Comments: 35 from Hacker News: Front Page https://ift.tt/1fZhNiL via

Google Analytics 4 was frustrating, so we built our own analytics service

Comments from Hacker News https://ift.tt/1fZhNiL via

Understanding Database Indexes in PostgreSQL

Comments from Hacker News https://ift.tt/ZyGHE6k via

Show HN: Speeding up the code-test cycle for Java developers

Hello HN, I am Parth. In my experience, the current form of testing automation takes too long. To solve this, I am creating a developer tool to speed up the code-test cycle for Java developers. It has two main parts: Direct Invoke - lets you call any Java function directly, without the need to execute the whole call hierarchy. (e.g. an HTTP endpoint) In my normal coding workflow, I use the “Evaluate Expression” feature inside IntelliJ IDE. I usually put a breakpoint somewhere in the code and after hitting the breakpoint by calling an HTTP api, let the execution remain paused while I explore and see the return values of functions. “Evaluate Expression” was quite useful in exploring new codebases and checking return values of my own functions as a sanity test. The direct invoke feature implements the same functionality without needing to hit a breakpoint. Now, I can just navigate to any function in the editor and execute it. The parameter values are input as JSON and deserialize to an o

Astmaker – A DSL in Rust for programming language designers

Comments from Hacker News https://ift.tt/7wkbWhM via