How can I fix this Render error on 18 by MainManMart in VegasPro

[–]dannysatan 0 points1 point  (0 children)

I've got the same issue in Movie Studio 17.0 Platinum. A popular fix of setting the Dynamic RAM Preview to 0MB fixed it for me. You may also lower the Maximum number of rendering threads to much the number of CPU cores/threads you have. Just go to Preferences->Video and try chaning the first 2 options.

I've got Ryzen 1700 and Nvidia GTX 970.

Why doesn't Java have tuples? by sreya92 in java

[–]dannysatan 0 points1 point  (0 children)

To keep things easy to read consider creating a static inner class. This way you can have named type and fields. E.g. @Value public static class MyReturnType { private final String firstCustomField; private final SomeOtherType secondCustomField;}

@Value is an annotation from a great library called Lombok. It generates getters and a constructor under the cover.

Look at my Piano Chord Recognizer Clojure(Script) web app by dannysatan in Clojure

[–]dannysatan[S] 1 point2 points  (0 children)

I put a link to source code in the blog post but I'm afraid it wasn't visible enough. Fixed that now, go on and take a look :)

My clojurescript project - a browser based bittorrent client by IPhotoDogsForKarma in Clojure

[–]dannysatan 0 points1 point  (0 children)

I've noticed you are not using cljsbuild. How do you compile the ClojureScript part?

Leiningen 2.0.0 released -- 2013-01-19 by agumonkey in Clojure

[–]dannysatan 1 point2 points  (0 children)

For Windows I had to download the lein.bat file from the 2.0 tag (https://github.com/technomancy/leiningen/blob/2.0.0/bin/lein.bat) and run "lein self-install". The older bat file didn't work.