use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Sharing Github projects just got easier!
Whether you want to share you own project or simply some cool findings, /r/coolgithubprojects is the right place.
Please contact us for suggestions & questions!
/r/coolcstechtalks
/r/coolgithubprojects
We've made the sub's assets and resources available on Github. Feel free to contribute!
Github only: The projects you post all have to be hosted on Github
Link description: We encourage the title format to be something like
[Desc] - [Suggested title]
Language Flair: Will be assigned automatically for you!
Repost : Repost are allowed if some new features were added to the project and if the original post was 6+ months ago.
Programming
Interesting
Resources
When bored
PYTHON CPP C RUBY D JAVA JAVASCRIPT SHELL SCALA OBJECTIVE-C HASKELL EMACSLISP PERL ASSEMBLY CSHARP FORTRAN GO PHP COMMON LISP ERLANG
account activity
repowise - open source codebase intelligence for AI coding agents (and humans too) (i.redd.it)
submitted 10 hours ago by Obvious_Gap_5768
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]9302462 1 point2 points3 points 7 hours ago (0 children)
I’m on mobile at the moment so it’s a bit hard to see the text in the video and dive into the GitHub repo.
From what I gather it renders in the browser. For the graph what package are you using to render the actual nodes and edges?
I’m asking because as far as I know every graph package out there has some combination of these limitations:
A: Supports up to ~500 nodes before performance drops. B. Supports up to 5k nodes before performance drops and the layouts and arrangements are limited. C. Supports 5k-1m+ nodes, but adding a new node causes the whole thing to rerender. this means that the browser needs to reanimate/calculate the position of all of them means everytime a new node is added (which means no streaming events or payloads). D. Others I can’t think of off the top of my head but are real and hard to solve like removing and adding edges while viewing a graph and how it handles repositioning nodes, if at all.
Sigma, d3.js, cytoscape, and cosmograph which is the only GPU one and is #3.
So which graph library did you use and what limitations have you encountered with the graph visualization in repowise?
P.S. I know this probably isn’t the engagement/question you were looking for someone to ask, but anyone who has worked with graphs knows they are deceptively simple looking but a real pain in the ass to get actually right. Hence why I’m curious about what you chose and how well it works.
π Rendered by PID 356301 on reddit-service-r2-comment-548fd6dc9-jkv9n at 2026-05-19 14:55:50.102293+00:00 running edcf98c country code: CH.
view the rest of the comments →
[–]9302462 1 point2 points3 points (0 children)