@nilesh.tr What are you dealing with? Feel free to share details.
@kumarshantanu I am trying to add a feature in Metabase codebase but need to figure out how to use lein repl
more effectively to be able test my changes iteratively.
Also, finding it hard to navigate toucan / honeysql etc which metabase uses
for eg; some of the methods are private so I'm unable to invoke those via the REPL
Had to spend a few hours struggling with very basic details, but was finally able to get everything to work.
So many gotchas for beginners:
- def
v/s defn
vs defn-
vs schema/defn
- Keywords v/s symbols v/s Strings
- (name keyword)
v/s (str keyword)
- map lookup like (:property object-like-map)
- (.method Object)
style for invoking Java methods