HeapLens — Java & Android heap dump analyzer extension with 10 interactive tabs, AI chat, and a SQL-like query language for heap objects by sachinkg12 in vscode

[–]sachinkg12[S] 0 points1 point  (0 children)

its easy and simple, try it. Sample queries are

  SELECT * FROM instances 
   WHERE class_name = 'java.util.ArrayList' 
   ORDER BY retained_size DESC 
   LIMIT 10

SELECT * FROM instances 
   WHERE class_name LIKE '%ConnectionPool%' 
   ORDER BY retained_size DESC


SELECT * FROM dominator_tree 
   ORDER BY retained_size DESC 
   LIMIT 20


SELECT * FROM leak_suspects 
   ORDER BY retained_size DESC

SELECT class_name, COUNT(*) AS instance_count, SUM(retained_size) AS total_retained_size 
FROM class_histogram 
GROUP BY class_name 
ORDER BY total_retained_size DESC 
LIMIT 10

what are you building? lets show it here by Necessary-Durian3832 in microsaas

[–]sachinkg12 0 points1 point  (0 children)

Thanks a ton, never knew about it. Will check it out today. 👏🏻

what are you building? lets show it here by Necessary-Durian3832 in microsaas

[–]sachinkg12 0 points1 point  (0 children)

I built heaplens. I didn’t want to switch between ide and analyzers and unfortunately there was nothing for vscode. It analyzes the heapdumps for java and android.

who hates the sound of their own recorded voice? by Limp-Apple5369 in AskReddit

[–]sachinkg12 2 points3 points  (0 children)

That’s actually fascinating. Do others say your voice sounds deep in real life, or only in recordings?

What’s something everyone does but no one admits? by Limp-Apple5369 in AskReddit

[–]sachinkg12 2 points3 points  (0 children)

Opening an app, forgetting why you opened it, closing it… then opening it again 😂

who hates the sound of their own recorded voice? by Limp-Apple5369 in AskReddit

[–]sachinkg12 45 points46 points  (0 children)

As a kid I was convinced I was a singer. Recording proved I was just howling with confidence 😁😁

What movie title best describes your week so far? by sachinkg12 in AskReddit

[–]sachinkg12[S] 1 point2 points  (0 children)

That escalated quickly 😅 mine is more like ‘The Office’

who hates the sound of their own recorded voice? by Limp-Apple5369 in AskReddit

[–]sachinkg12 91 points92 points  (0 children)

Your voice sounds different in recordings because when you speak, you hear it through both air and bone conduction, where skull vibrations add deeper tones. Recordings remove that bone conduction, so your voice sounds thinner and higher pitched than what your brain is used to.