Earlier quoted context omitted.
Very cool. What tooling are you using? I've found the world of FPGA tools to be bewildering to the point that I've abandoned my projects and my Nexys3 languishes in a drawer.
I would suggest using myhdl (www.myhdl.org), and then plugging the verilog/vhdl it generates into your vendor's tools.
Ask HN: What new skills are you learning?
101–110 of 120 posts
Re: Ask HN: What new skills are you learning?
#102Earlier quoted context omitted.
I spent an entire day trying to decipher how to replace spaces with tabs. Wish I had been better with regular expressions.
Have you looked at sed yet?
I didn't actually take the entire day. :)
Re: Ask HN: What new skills are you learning?
#103Also, Haskell
Re: Ask HN: What new skills are you learning?
#104Mandarin Chinese
Me, too! My whole family (wife + two young kids) started private tutoring about 6 months ago. What kind of resources are you finding helpful?
Re: Ask HN: What new skills are you learning?
#105Earlier quoted context omitted.
Very cool. What tooling are you using? I've found the world of FPGA tools to be bewildering to the point that I've abandoned my projects and my Nexys3 languishes in a drawer.
I would suggest using myhdl (www.myhdl.org), and then plugging the verilog/vhdl it generates into your vendor's tools.
Re: Ask HN: What new skills are you learning?
#106Distributed computing using Python Techs: HBase, MLLib and Spark (Most of my time) Spatial SDR Reconstruction with NuPIC (1 day a week) Spanish using Duolingo (20 mins a day) Game development with ImpactJS (only 1 day a week)
Re: Ask HN: What new skills are you learning?
#107So I built my Rails 4 API, and Go API, and they're really really fast.
I'm also building my web client with EmberCLI. It's a blast so far as well. I really enjoy the benefits a framework like Ember brings to the table. Structure structure structure. 3 years from now, I want to know my way around the project.
Re: Ask HN: What new skills are you learning?
#108Re: Ask HN: What new skills are you learning?
#109Distributed computing using Python Techs: HBase, MLLib and Spark (Most of my time) Spatial SDR Reconstruction with NuPIC (1 day a week) Spanish using Duolingo (20 mins a day) Game development with ImpactJS (only 1 day a week)
Hey could you provide some resources for learning Distributed Computing using Python. I was thinking of using Go but since I know python to a considerable extent, I wanna give Python a fighting chance for making distributed systems.
I'm not one for reading books I think there's more value in just building stuff:
Check out Prediction.IO - http://prediction.io/ it's an out of the box machine learning server, it uses hbase, but hbase in this configuration is sitting on top of the local filesystem, not HDFS -- so the first task I assigned myself was to learn how to setup hadoop, and then configure HBase to store data in HDFS.
Once I have that, I'm going to use PySpark to use spark to query the data. (Thats where the python comes in)
Another cool project (not related to the tech stack above) is Pyro https://pypi.python.org/pypi/Pyro4 ... this consumed a whole weekend of mine a few weeks back, building a small distributed search engine for querying compressed DNA sequences ... think a parallel boyer-moore. As a learning exercise try doing that, it's great fun!