<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for walmik</title><link>http://disqus.com/by/walmik/</link><description></description><atom:link href="http://disqus.com/walmik/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Sun, 30 Dec 2018 23:15:10 -0000</lastBuildDate><item><title>Re: Powerful SURGE synth for Mac and Windows is now free</title><link>http://cdm.link/newswires/surge-open-source/#comment-4263126576</link><description>&lt;p&gt;For Mac users, I m sharing the VST3 and the AU component that I built by following the steps on the Github page. Since it s built for my machine, it may not work for others, but if you still wanna try it, I m sharing it here. Try pasting in your Macintosh HD/Library/Audio/Plug-Ins/(choose either Component or VST folder).&lt;/p&gt;&lt;p&gt;AU: &lt;a href="https://www.dropbox.com/s/r932rkzb3d19b5c/Surge.component.zip?dl=0" rel="nofollow noopener" target="_blank" title="https://www.dropbox.com/s/r932rkzb3d19b5c/Surge.component.zip?dl=0"&gt;https://www.dropbox.com/s/r...&lt;/a&gt;&lt;br&gt;VST3: &lt;a href="https://www.dropbox.com/s/r7z8adfepq0ni2p/Surge.vst3.zip?dl=0" rel="nofollow noopener" target="_blank" title="https://www.dropbox.com/s/r7z8adfepq0ni2p/Surge.vst3.zip?dl=0"&gt;https://www.dropbox.com/s/r...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;If that doesnt work out then these are the steps I followed (simplified for folks not into programming). Happy new year!&lt;/p&gt;&lt;p&gt;1. Download xcode from the App store - it s free and it s pretty huge so you wanna start it and go back to tweaking your kick drum sound or work on your snare's EQ :P&lt;/p&gt;&lt;p&gt;2. Make sure you have CommandLineTools, to do that, open up your terminal and run this command blindly:&lt;br&gt;xcode-select --install &lt;br&gt;(it will install to /Library/Developer/CommandLineTools/)&lt;/p&gt;&lt;p&gt;3. At this point you will have "git" installed because of step 2. Confirm executing this command in your terminal:&lt;br&gt;git --version&lt;br&gt;If git is installed then you ll see some version like this&lt;br&gt;git version 2.17.2 (Apple Git-113)&lt;br&gt;If not, then it ll ask you if it should install git (obviously allow it)&lt;/p&gt;&lt;p&gt;4. Download "premake version 5" from here: &lt;a href="https://premake.github.io/download.html#v5" rel="nofollow noopener" target="_blank" title="https://premake.github.io/download.html#v5"&gt;https://premake.github.io/d...&lt;/a&gt;. Download it to your Downloads folder.&lt;br&gt;It s a compressed file called premake-5.0.0-alpha13-macosx.tar.gz Mac OS knows how to unpack it.. Just double click it. It will unpack to a file called "premake5" (it will have a terminal icon)&lt;/p&gt;&lt;p&gt;5. Copy the "premake" file from step 4 to usr/local/bin. To do that, go to your Downloads folder in the terminal by typing&lt;br&gt;cd ~/Downloads/&lt;br&gt;Now run the copy (cp) command like this&lt;br&gt;cp premake5 /usr/local/bin&lt;/p&gt;&lt;p&gt;6. Now we need to get the surge folder from &lt;a href="http://github.com" rel="nofollow noopener" target="_blank" title="github.com"&gt;github.com&lt;/a&gt; In your terminal run this command:&lt;br&gt;git clone &lt;a href="https://github.com/kurasu/surge.git" rel="nofollow noopener" target="_blank" title="https://github.com/kurasu/surge.git"&gt;https://github.com/kurasu/s...&lt;/a&gt;&lt;br&gt;This will fetch the files and place them in a folder called "surge". Enter that folder (in the terminal) by typing:&lt;br&gt;cd surge&lt;br&gt;Then type this:&lt;br&gt;./&lt;a href="http://build-osx.sh" rel="nofollow noopener" target="_blank" title="build-osx.sh"&gt;build-osx.sh&lt;/a&gt;&lt;br&gt;Let it finish it s process.&lt;/p&gt;&lt;p&gt;7. Assuming everything went alright, open xcode on your computer. On the bottom right corner of xcode you will see the option for opening a project. Use that to navigate to the "surge" folder (acquired in step 6) and open it. &lt;br&gt;Xcode will do it's own indexing / processing, which will take a while. (you can see it s indexing in the top area of the window)&lt;br&gt;You will see 2 yellow error icons. Yellow means a harmless error ;) After the indexing is completed, click on them one by one and thet will tell you to "Update to recommended settings". Click the perform changes button for both yellow errors.&lt;/p&gt;&lt;p&gt;8. Now the VST3 and AU will be available inside a folder called products which is inside the surge folder&lt;br&gt;Copy them over to Macintosh HD/Library/Audio/Plug-Ins/(choose either Component or VST folder)&lt;/p&gt;&lt;p&gt;Hope this helps someone!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Walmik</dc:creator><pubDate>Sun, 30 Dec 2018 23:15:10 -0000</pubDate></item><item><title>Re: 
            Testing async calls with Jasmine and async/await
        </title><link>https://volaresoftware.com/en/technical-posts/testing-async-calls-with-jasmine#comment-3258145975</link><description>&lt;p&gt;This is great.. very few resources out there outline this so clearly.&lt;/p&gt;&lt;p&gt;I realized we dont even need a function to be defined for simple use cases such as just waiting for a second.. I can just do `setTimeout(done, 1000)` at the end of my `beforeEach`. And then whatever's in my `it` call, will execute after a second.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Walmik</dc:creator><pubDate>Sat, 15 Apr 2017 23:31:03 -0000</pubDate></item><item><title>Re: Mini Code Adventure: Generating Music in JavaScript</title><link>https://www.codingblocks.net/videos/generating-music-in-javascript/#comment-3246936408</link><description>&lt;p&gt;That sounds awesome.. looking forward to it!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Walmik</dc:creator><pubDate>Sat, 08 Apr 2017 18:32:00 -0000</pubDate></item><item><title>Re: Mini Code Adventure: Generating Music in JavaScript</title><link>https://www.codingblocks.net/videos/generating-music-in-javascript/#comment-3246911781</link><description>&lt;p&gt;Finally got some time to look into this with focus. I just love this idea of combining Tracery with Scribbletune! Tried the sample code and loved the results. I m gonna work on this and (hopefully) come up with something interesting. It's almost exactly what I wanted, thank you for taking the time to put this together!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Walmik</dc:creator><pubDate>Sat, 08 Apr 2017 18:08:13 -0000</pubDate></item></channel></rss>