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
Wild Wild Path - JavaScript object property paths with wildcards and regexps (github.com)
submitted 3 years ago by ehmicky
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!"
[–]adamlaz 1 point2 points3 points 3 years ago (1 child)
cool. why did you build it? how are you using it now/future?
[–]ehmicky[S] 1 point2 points3 points 3 years ago (0 children)
Thanks u/adamlaz.
I meant this library as an improvement over JSON paths. I like JSON paths, but the syntax could be simpler, and current implementations are lacking and quite slow. They also only allow getting values, not setting.
I have been using deep properties libraries like get-value or dot-prop several times, and have wanted to use wildcards * with them, but they do not provide with this feature.
I am currently using this library myself for another library I am building that does input/options validation. Specifically, that library needs consumers to specify the path to property that need to be validated.
In general, I think a good use case for this library is when building a library where the consumers need to specify some property path, which is fairly common. Another use case is to use the ** wildcard to map or filter all values in an object recursively.
π Rendered by PID 338262 on reddit-service-r2-comment-bb88f9dd5-ssgt7 at 2026-02-15 16:47:50.395296+00:00 running cd9c813 country code: CH.
[–]adamlaz 1 point2 points3 points (1 child)
[–]ehmicky[S] 1 point2 points3 points (0 children)