<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Articulating Ideas - Latest Comments</title><link>http://articulatingideas.disqus.com/</link><description>About humanizing technology through research, community and participation</description><atom:link href="https://articulatingideas.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 21 Jun 2017 13:28:10 -0000</lastBuildDate><item><title>Re: Which FizzBuzz solution is the most efficient?</title><link>https://www.zoharbabin.com/which-fizzbuzz-solution-is-the-most-efficient/#comment-3376644316</link><description>&lt;p&gt;private static Dictionary&amp;lt;int, string=""&amp;gt; Rules { get; } =&lt;br&gt;            new Dictionary&amp;lt;int, string=""&amp;gt; { { 3, "Fizz" }, { 5, "Buzz" } };&lt;/p&gt;&lt;p&gt;        private static string Convert(int i)&lt;br&gt;        {&lt;br&gt;            var stringBuilder = new StringBuilder();&lt;/p&gt;&lt;p&gt;            foreach (var rule in Rules) if (i % rule.Key == 0) stringBuilder.Append(rule.Value);&lt;/p&gt;&lt;p&gt;            return string.IsNullOrEmpty($"{stringBuilder}") ? $"{i}" : $"{stringBuilder}";&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;        private static void Main()&lt;br&gt;        {&lt;br&gt;            Print(1, 20);&lt;/p&gt;&lt;p&gt;            Console.ReadKey();&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;        private static void Print(int start, int count)&lt;br&gt;        {&lt;br&gt;            var collection = Enumerable.Range(start, count).Select(Convert);&lt;/p&gt;&lt;p&gt;            Console.WriteLine(string.Join(Environment.NewLine, collection));&lt;br&gt;        }&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sortrevo</dc:creator><pubDate>Wed, 21 Jun 2017 13:28:10 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-3157558304</link><description>&lt;p&gt;You should not use `-sameq` option, the name doesn't mean what you think it does.&lt;br&gt;You do not need to re-encode the video stream.&lt;br&gt;The command for merging two stream should be:&lt;br&gt;ffmpeg -i Ktmpvid.mp4 -i tmpaud-clean.wav -map 0:v -map 1:a -c:v copy -c:a aac -b:a 128k out.mp4&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Leon Belmont</dc:creator><pubDate>Wed, 15 Feb 2017 22:32:07 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-2204818943</link><description>&lt;p&gt;Wonderful!!! I will make a GUI for this, it's fking perfect!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marcos Elias</dc:creator><pubDate>Thu, 20 Aug 2015 09:23:39 -0000</pubDate></item><item><title>Re: Install SSL on Ubuntu and Enable HTTPS</title><link>http://www.zoharbabin.com/install-ssl-on-ubuntu-and-enable-https/#comment-1937312546</link><description>&lt;p&gt;Thank you for the tutorial! I follow, but the page still say "SSL connection error" and i don have idea way, the server say "_default_ VirtualHost overlap on port 433, the first has precedence&lt;br&gt;".&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Angy</dc:creator><pubDate>Tue, 31 Mar 2015 00:13:38 -0000</pubDate></item><item><title>Re: Install SSL on Ubuntu and Enable HTTPS</title><link>http://www.zoharbabin.com/install-ssl-on-ubuntu-and-enable-https/#comment-1929201597</link><description>&lt;p&gt;That may be the case however hohoho is correct. If you have other certs there because you previously had created them for other applications and are just following this to enable ssl on apache then of course the other certs don't need to be copied over so a full directory copy is not the correct way. If thats not the case and the tut follower has only installed ssl to configure apache then your tutorial commands will be perfectly fine.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chris Serella</dc:creator><pubDate>Thu, 26 Mar 2015 10:29:36 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1856549330</link><description>&lt;p&gt;Windows version&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jammerjonn</dc:creator><pubDate>Sun, 15 Feb 2015 09:25:02 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1856548182</link><description>&lt;p&gt;I downloaded FFMPEG and it is a BZ2 file, how do I install the program? Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jammerjonn</dc:creator><pubDate>Sun, 15 Feb 2015 09:23:56 -0000</pubDate></item><item><title>Re: Which FizzBuzz solution is the most efficient?</title><link>https://www.zoharbabin.com/which-fizzbuzz-solution-is-the-most-efficient/#comment-1627417966</link><description>&lt;p&gt;jim.ji is correct you can't be a straight-up print.&lt;br&gt;While we're at it though, you can eliminate a lot of the math and if statements except for a bit right at the start, and allow for any N:&lt;/p&gt;&lt;p&gt;We know that the pattern repeats for every 15 n. So why not just determine the length, then print the repeating string until you get to the necessary length?&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">trevdak</dc:creator><pubDate>Thu, 09 Oct 2014 13:50:15 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1122792534</link><description>&lt;p&gt;hah but its not saving/reading anything from the hdd what was the main point of "1 command" anyways :) &lt;br&gt;edit: by anything i mean profile file :p&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gondoSVK</dc:creator><pubDate>Thu, 14 Nov 2013 08:44:03 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1122782187</link><description>&lt;p&gt;you cheated ;) using pipe is still two separate commands, only called on the same line...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zohar Babin</dc:creator><pubDate>Thu, 14 Nov 2013 08:34:19 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1122730196</link><description>&lt;p&gt;actually there is:&lt;br&gt;sox input.wav -n noiseprof | sox input.wav output.wav noisered - 0.2&lt;/p&gt;&lt;p&gt;im having consistent noise so i can just take first 0,5s of the sound to profile it&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gondoSVK</dc:creator><pubDate>Thu, 14 Nov 2013 07:45:01 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1122700442</link><description>&lt;p&gt;Wish there was, however I don't think so... I'd also like to find an automatic way to find the time in the video where the noise happens on its own, so that we could generate the profile automatically.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zohar Babin</dc:creator><pubDate>Thu, 14 Nov 2013 07:11:10 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-1122549096</link><description>&lt;p&gt;is it possible to generate the profile and clean the noise in 1 command?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gondoSVK</dc:creator><pubDate>Thu, 14 Nov 2013 03:40:30 -0000</pubDate></item><item><title>Re: Install SSL on Ubuntu and Enable HTTPS</title><link>http://www.zoharbabin.com/install-ssl-on-ubuntu-and-enable-https/#comment-1085287003</link><description>&lt;p&gt;@hohoho -&lt;br&gt;These two methods are the same... the first tells cp to copy the file with its original file name to the dest directory, while the second (your suggestion) tells cp to copy over using a specific file name (which happens to be the same in this case).&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.cyberciti.biz/faq/copy-command/" rel="nofollow noopener" target="_blank" title="http://www.cyberciti.biz/faq/copy-command/"&gt;http://www.cyberciti.biz/fa...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zohar Babin</dc:creator><pubDate>Wed, 16 Oct 2013 22:26:57 -0000</pubDate></item><item><title>Re: Install SSL on Ubuntu and Enable HTTPS</title><link>http://www.zoharbabin.com/install-ssl-on-ubuntu-and-enable-https/#comment-1085258155</link><description>&lt;p&gt;step 5&lt;/p&gt;&lt;p&gt;cp server.key /etc/apache2/ssl&lt;br&gt;cp server.crt /etc/apache2/ssl&lt;br&gt;should be&lt;br&gt;cp server.key /etc/apache2/ssl/server.key&lt;br&gt;cp server.crt /etc/apache2/ssl/server.crt&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">hohoho</dc:creator><pubDate>Wed, 16 Oct 2013 21:48:54 -0000</pubDate></item><item><title>Re: Creating Engaging and Very Funny Content Using Robots Video &amp;#8211; Kaltura Community Blog</title><link>http://www.zoharbabin.com/creating-engaging-and-very-funny-content-using-robots-video-kaltura-community-blog/#comment-991572967</link><description>&lt;p&gt;I really like this :) - I want one!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">sally h</dc:creator><pubDate>Wed, 07 Aug 2013 11:58:40 -0000</pubDate></item><item><title>Re: Build and Install FFMPEG and x264 on Debian Squeeze &amp;#8211; The Dumb Guide</title><link>http://www.zoharbabin.com/build-and-install-ffmpeg-and-x264-on-debian-squeeze-the-dumb-guide/#comment-948883302</link><description>&lt;p&gt;תודה כפרה עליך !!!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alex Benedek</dc:creator><pubDate>Tue, 02 Jul 2013 06:00:25 -0000</pubDate></item><item><title>Re: Hacking in FLV bits</title><link>http://www.zoharbabin.com/hacking-in-flv-bits/#comment-934103504</link><description>&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;I'm also trying to join together two bytearrays generated by FLVencoder and am having the same error:&lt;br&gt;RangeError: Error #2006: The supplied index is out of bounds.	at flash.utils::ByteArray/writeBytes()&lt;/p&gt;&lt;p&gt;Did you find a solution?&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Lezlea&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lezlea</dc:creator><pubDate>Tue, 18 Jun 2013 06:11:11 -0000</pubDate></item><item><title>Re: YouTube Direct Upload in ActionScript3</title><link>https://www.zoharbabin.com/youtube-direct-upload-actionscript3/#comment-927904280</link><description>&lt;p&gt;Did you manage to solve this? Fingers crossed!?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lezlea</dc:creator><pubDate>Wed, 12 Jun 2013 12:44:21 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-892373653</link><description>&lt;p&gt;thanks for the great feedback :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zohar Babin</dc:creator><pubDate>Fri, 10 May 2013 12:38:58 -0000</pubDate></item><item><title>Re: How To Do Noise Reduction Using ffmpeg And sox</title><link>http://www.zoharbabin.com/how-to-do-noise-reduction-using-ffmpeg-and-sox/#comment-892371618</link><description>&lt;p&gt;This was very useful.  Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dan LaMotte</dc:creator><pubDate>Fri, 10 May 2013 12:36:38 -0000</pubDate></item><item><title>Re: Kaltura Knowledge Center Search IRC Bot Module</title><link>http://www.zoharbabin.com/kaltura-knowledge-center-search-irc-bot-module/#comment-813521096</link><description>&lt;p&gt;Zohar, this is great!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Devon Copley</dc:creator><pubDate>Tue, 26 Feb 2013 19:49:15 -0000</pubDate></item><item><title>Re: Build and Install FFMPEG and x264 on Debian Squeeze &amp;#8211; The Dumb Guide</title><link>http://www.zoharbabin.com/build-and-install-ffmpeg-and-x264-on-debian-squeeze-the-dumb-guide/#comment-809899407</link><description>&lt;p&gt;Hi Zohar,&lt;/p&gt;&lt;p&gt;Thanks for these instructions. I just wanted to report that ffmpeg now (February 2013) requires yasm 1.2.0 and the apt repository still has 1.1.0, so I had to build yasm separately to then get ffmpeg to build.&lt;/p&gt;&lt;p&gt;&lt;a href="http://yasm.tortall.net/releases/Release1.2.0.html" rel="nofollow noopener" target="_blank" title="http://yasm.tortall.net/releases/Release1.2.0.html"&gt;http://yasm.tortall.net/rel...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">yearisaday musicblog</dc:creator><pubDate>Sat, 23 Feb 2013 14:03:21 -0000</pubDate></item><item><title>Re: Which FizzBuzz solution is the most efficient?</title><link>https://www.zoharbabin.com/which-fizzbuzz-solution-is-the-most-efficient/#comment-806842050</link><description>&lt;p&gt;if N is a const number, print the result directly is the most efficient way:)&lt;/p&gt;&lt;p&gt;like this:&lt;/p&gt;&lt;p&gt;// N is 100.&lt;br&gt;print("1\n2\nFizz\n4\nBuzz\nFizz\n7\n8\nFizz\nBuzz\n11\nFizz\n13\n14\nFizzBuzz\n16\n17\nFizz\n19\nBuzz\nFizz\n22\n23\nFizz\nBuzz\n26\nFizz\n28\n29\nFizzBuzz\n31\n32\nFizz\n34\nBuzz\nFizz\n37\n38\nFizz\nBuzz\n41\nFizz\n43\n44\nFizzBuzz\n46\n47\nFizz\n49\nBuzz\nFizz\n52\n53\nFizz\nBuzz\n56\nFizz\n58\n59\nFizzBuzz\n61\n62\nFizz\n64\nBuzz\nFizz\n67\n68\nFizz\nBuzz\n71\nFizz\n73\n74\nFizzBuzz\n76\n77\nFizz\n79\nBuzz\nFizz\n82\n83\nFizz\nBuzz\n86\nFizz\n88\n89\nFizzBuzz\n91\n92\nFizz\n94\nBuzz\nFizz\n97\n98\nFizz\nBuzz\n");&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jim ji</dc:creator><pubDate>Thu, 21 Feb 2013 06:10:01 -0000</pubDate></item><item><title>Re: Install SSL on Ubuntu and Enable HTTPS</title><link>http://www.zoharbabin.com/install-ssl-on-ubuntu-and-enable-https/#comment-775765301</link><description>&lt;p&gt;Thank you for the tutorial! I am on Ubuntu 12 but still had to create the symlink for default-ssl (step 7). Strangely, the symlink for default was already there.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sergei Evdokimov</dc:creator><pubDate>Wed, 23 Jan 2013 11:49:33 -0000</pubDate></item></channel></rss>