Welcome to Neural Market Trends, my little insane corner of the Internet since 2007. Check out our Tutorials and Tags to navigate around. Thank you!
Groovy over Python?
After a few frustrating events where I had some python code blow up because of dependencies, I started looking hard a using Groovy going forward. For some simple things, Groovy and Python are very easy. For example if I wanted to read the latest sales from Park.IO and print them out, I could do the following in Python on my Mac. import pandas as pd df = pd.read_csv('https://park.io/orders/export.csv') print (df) If I tried that on my old Raspberry Pi, I’d run into dependency issues w.r.t. to Numpy not compiling correctly. ...