<?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 marcoslhc</title><link>http://disqus.com/by/marcoslhc/</link><description></description><atom:link href="http://disqus.com/marcoslhc/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 04 Sep 2020 17:57:06 -0000</lastBuildDate><item><title>Re: US spotify</title><link>https://downdetector.com/status/spotify#comment-5058361913</link><description>&lt;p&gt;Search is down&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Fri, 04 Sep 2020 17:57:06 -0000</pubDate></item><item><title>Re: Challenge 1 | Callbacks | Async Programming</title><link>https://paqmind.com/tutorials/async-programming/callbacks/challenges/1.1.qzn/?tab=discussion#comment-4011351057</link><description>&lt;p&gt;The definition of "callback" is NOT "a function that returns nothing", that the value returned by a callback function is lost is the consequence of having a mechanism to respond to an operation in an asynchronous context. A "callback" can return any value, but the value is lost; the function's property of returning (or not) a value doesn't have anything to do with its condition as a callback. You could have a function that returns something passed as a callback.&lt;/p&gt;&lt;p&gt;The definition of a callback is: any function passed as a parameter to another receiver function with the explicit goal of notify the execution of the receiver or capture the result of the execution of the receiver.&lt;/p&gt;&lt;p&gt;Another thing: Null and Undefined are values (and types) in JavaScript. when you don't explicitly return in a function JavaScript returns "undefined". If you want to get "Null" from a function you have to explicitly express "return null" in the function.&lt;/p&gt;&lt;p&gt;Some other misleading concepts I found in the first exercise:&lt;/p&gt;&lt;p&gt;(x) =&amp;gt; (x, console.log(x)) by your definition that a function that returns undefined "returns nothing", this case actually returns "nothing" Console.log returns undefined and after the comma operator the last expression is console.log&lt;br&gt;(x) =&amp;gt; () =&amp;gt; {  fn(x * 2) } returns a function that returns undefined therefore the first function does return a value different that null or undefined&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sat, 28 Jul 2018 21:08:22 -0000</pubDate></item><item><title>Re: Managing state with Redux and Angular</title><link>http://blog.rangle.io/managing-state-redux-angular/#comment-2869195063</link><description>&lt;p&gt;Depends on the immutable implementation. If it's using Immutable.JS or Baobab it can actually be faster than working with native JSON objects&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 31 Aug 2016 12:34:27 -0000</pubDate></item><item><title>Re: Windows Editors and Shells</title><link>http://daverupert.com/2015/10/windows-editors-and-shells/#comment-2309093093</link><description>&lt;p&gt;Sorry, the "[..] user uses window." opinion was from &lt;a href="http://css-trick.com" rel="nofollow noopener" target="_blank" title="css-trick.com"&gt;css-trick.com&lt;/a&gt;. And, in regard of the other comment, I think it's shallow because is not about what tools makes you or your work more comfortable, productive, secure or safe. For me it sounds like you are putting your locus of control in the outside, on how other people behave. Sound like: "I don't want to be like anyone else in de web-dev world" &lt;a href="https://uploads.disquscdn.com/images/d59b3f1580a2e95c0a990b4596f007b89dcb59094d6b54f0d1769487e23f4587.png" rel="nofollow noopener" target="_blank" title="https://uploads.disquscdn.com/images/d59b3f1580a2e95c0a990b4596f007b89dcb59094d6b54f0d1769487e23f4587.png"&gt;https://uploads.disquscdn.c...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Thu, 15 Oct 2015 13:52:01 -0000</pubDate></item><item><title>Re: Windows Editors and Shells</title><link>http://daverupert.com/2015/10/windows-editors-and-shells/#comment-2309065247</link><description>&lt;p&gt;Chosing your dev environment just because you want to step apart from the "monoculture" is a rather shallow reason in my opinion. and the "because the final user uses windows" is ludicrous in term of web development.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Thu, 15 Oct 2015 13:36:29 -0000</pubDate></item><item><title>Re: Python Tornado Web Server With WebSockets &amp;#8211; Part I</title><link>http://www.codestance.com/tutorials-archive/python-tornado-web-server-with-websockets-part-i-441#comment-1565743337</link><description>&lt;p&gt;Noted. You're right. I shouldn't advice not to allow cross-origin altogether, but instead recommend adding other security measures.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Fri, 29 Aug 2014 20:59:26 -0000</pubDate></item><item><title>Re: Python Tornado Web Server With WebSockets &amp;#8211; Part I</title><link>http://www.codestance.com/tutorials-archive/python-tornado-web-server-with-websockets-part-i-441#comment-1535147339</link><description>&lt;p&gt;Hi. The "WebSocket connection to 'ws://localhost:8080/?Id=123456789' failed: Unexpected response code: 200" error can be solved by overriding check_origin (see &lt;a href="http://tornado.readthedocs.org/en/latest/websocket.html#tornado.websocket.WebSocketHandler)" rel="nofollow noopener" target="_blank" title="http://tornado.readthedocs.org/en/latest/websocket.html#tornado.websocket.WebSocketHandler)"&gt;http://tornado.readthedocs....&lt;/a&gt;. Note that this is recommended in this simple, tutorial, not-for-production case. When In production you shouldn't be accepting all cross-origin connections. My version of the script is here, if you want to try: &lt;a href="https://gist.github.com/marcoslhc/06f635754d29f7123316" rel="nofollow noopener" target="_blank" title="https://gist.github.com/marcoslhc/06f635754d29f7123316"&gt;https://gist.github.com/mar...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sat, 09 Aug 2014 13:52:38 -0000</pubDate></item><item><title>Re: Trifulca entre Maduro y las hijas de Chávez por la residencia oficial - ABC.es</title><link>http://www.abc.es/internacional/20131110/abci-maduro-hijas-chavez-201311091838.html#comment-1117390602</link><description>&lt;p&gt;Cilia Flores no es primera dama. No está casada con Maduro. Por eso él la llama "primera combatiente"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sun, 10 Nov 2013 21:30:13 -0000</pubDate></item><item><title>Re: http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231</title><link>http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231#comment-954381862</link><description>&lt;p&gt;Got it. It's not worthy…&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sun, 07 Jul 2013 07:31:33 -0000</pubDate></item><item><title>Re: http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231</title><link>http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231#comment-954087131</link><description>&lt;p&gt;Led Zep was a lot more than blues based rock, they enhanced the meaning of "Folk Rock" including elements of british and celtic music. They took narrative lyrics way far the other rock bands and way before Black Sabbath. They innovated sound crafting recording experimenting with different kinds of environment and taking a "hands on approach" instead of pure delegation in engineers or producer. And I'm just starting… The song craft and technique was innovative too, Rober Plant's Classic formation was the first stone in elevating Rock Music above mere pop expression to actual meaningful cultural expression… Oh My God the Bonham drums, no one played that primal sound in a rock song, ever. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sat, 06 Jul 2013 22:07:35 -0000</pubDate></item><item><title>Re: http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231</title><link>http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231#comment-954082198</link><description>&lt;p&gt;"Urban Hymns" is an album from The Verve, actually pretty good but not to make this list IMHO. "Definitely Maybe" is Oasis' debut album, not as good as "Urban Hymns". Queen's album "Sheer Heart Attack" is not as good as the rest of queen's albums but it shaped the now ultrafamous band. Finally "Country Life" from Roxy Music actually made the list at #350 or so.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sat, 06 Jul 2013 21:55:40 -0000</pubDate></item><item><title>Re: http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231</title><link>http://www.rollingstone.com/music/lists/new-500-greatest-albums-20120501/486-earth-wind-and-fire-thats-the-way-of-the-world-19691231#comment-954073923</link><description>&lt;p&gt;No, seriously… WTF?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sat, 06 Jul 2013 21:36:19 -0000</pubDate></item><item><title>Re: El Carabobeño</title><link>http://m.el-carabobeno.com/index.cfm/articles/show/53537#comment-821133728</link><description>&lt;p&gt;No. No estamos en dictadura, los poderes establecidos han actuado conforme al consentimiento de la mayoría. Lo que si sufre Venezuela es un estado de miseria política y hasta humana. Nos aqueja la falta de gente preparada para gobernar y gente con conciencia y respeto por el colectivo que llamamos nación. En mi opinión, esa es la causa de por que no ha habido socialismo en Venezuela. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 06 Mar 2013 11:39:45 -0000</pubDate></item><item><title>Re: El Carabobeño</title><link>http://m.el-carabobeno.com/index.cfm/articles/show/53537#comment-820951357</link><description>&lt;p&gt;Espero que MAS NUNCA tengamos un líder como Chávez. Mi sentido pésame, por qué sé que fué una figura importante en tu vida. En la mía también lo ha sido durante 14 años e igual estoy confundido respecto al futuro de nuestro país, pero mi esperanza es que más nunca necesitemos un instigador como líder para darnos cuenta de la pobreza política de nuestro país.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 06 Mar 2013 07:36:39 -0000</pubDate></item><item><title>Re: Develop a RESTful API Using Node.js With Express and Mongoose</title><link>http://pixelhandler.com/posts/develop-a-restful-api-using-nodejs-with-express-and-mongoose#comment-695390914</link><description>&lt;p&gt;I'm new in this node.js express thing. This is the most useful article in the subject I've found. Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Mon, 29 Oct 2012 11:18:35 -0000</pubDate></item><item><title>Re: Blog rolling with mongoDB, express and Node.js - How To Node</title><link>http://howtonode.org/express-mongodb#comment-690385446</link><description>&lt;p&gt;Overall is the most accesible tutorial in Node.js, express and MongoDB. For the non initiate is the best tutorial around, I thanks the author and collaborators for that.&lt;br&gt;I'm not initiated in Node.js, i'm just an apprentice but in JavaScript I'm quite experienced and I can tell this is not the most elegant code i've seen. It works in a very very cared environment but sure it will explode in the wild.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Tue, 23 Oct 2012 16:27:48 -0000</pubDate></item><item><title>Re: NodeJS en 3,2,1… «  Vulsai | Empowering Thinking</title><link>http://vulsai.com/es/code/nodejs-in-321/#comment-688889088</link><description>&lt;p&gt;Node se usa en consola, sin embargo hay distribuciones para Linux, Windows, Mac y Sun&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sun, 21 Oct 2012 22:49:00 -0000</pubDate></item><item><title>Re: tumblr's tumblr - Ella tiene el style</title><link>http://kudry.tumblr.com/post/197220512#comment-23458370</link><description>&lt;p&gt;Para mi que es Janis Joplin. #janisjoplinnomurio&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 18 Nov 2009 11:20:50 -0000</pubDate></item><item><title>Re: Win a signed copy of The Smashing Book!</title><link>http://styl.eti.me/competition/win-a-signed-copy-of-the-smashing-book/#comment-14628463</link><description>&lt;p&gt;Ready, tweeted. so... Where's my book?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Tue, 11 Aug 2009 09:00:01 -0000</pubDate></item><item><title>Re: Who was the most influential person on Twitter for you in 2008?</title><link>http://socialmediafish.com/blog/social-media/who-was-the-most-influential-person-on-twitter-for-you-in-2008/#comment-12537630</link><description>&lt;p&gt;"Who’s value to you on Twitter"&lt;br&gt;Kinda hard take THE ONE if you ask us that question, I include in my twitter just graphic-design-related people, some friends and family. I think the twtitterverse is more than this, so if you want to be just ONE left yok have to ask less subjective questions.&lt;br&gt;BTW who I value the most in twitter is Jacob Cass (@justcreative).&lt;/p&gt;&lt;p&gt;&amp;lt;abbr&amp;gt;&lt;em&gt;Marcos´s last blog post..&lt;a href="http://marcoslhc.blogspot.com/2008/10/gran-concierto-de-nin.html" rel="nofollow noopener" target="_blank" title="http://marcoslhc.blogspot.com/2008/10/gran-concierto-de-nin.html"&gt;Gran Concierto de NIN&lt;/a&gt;&lt;/em&gt;&amp;lt;/abbr&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Sun, 14 Dec 2008 09:33:28 -0000</pubDate></item><item><title>Re: Why MooTools (or Why not JQuery)</title><link>http://juliocapote.com/post/52467447#comment-2793055</link><description>&lt;p&gt;you nailed it. This is a discussion about which library fits with each person, like "which color suits me best?" kind of thing&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 01 Oct 2008 22:15:23 -0000</pubDate></item><item><title>Re: Why MooTools (or Why not JQuery)</title><link>http://juliocapote.com/post/52467447#comment-2779467</link><description>&lt;p&gt;I've never used mooTools. But I have some replies to say about two of the critics you made to jquery. &lt;br&gt;About the "Class Support", JavaScript (or ECMAScript) is a Object Oriented Language, but its object model is not "Classical" it's "prototypical". For many years people tried to use and teach Javascript as kinda subset of Java or C++ but, in fact, the philosophy behind JavaScript is totally different. It was meant to extend the behavior of a client app like the browser, so you don't really need classes with native data types, you just need Objects that extends functionality established in the DOM prototypes or the browser prototypes. In this philosophy is important also to bind names and make callbacks 'cause you never work with native data files on client machines (except for cookies with their limited uses), they are an efficient way to work further with data after it have been sent and previously manipulated. The "chain" (or what you call "SQL-like sintax") is actually a real good way to represent and understand the nature and function of binds and callbacks.&lt;br&gt;About the "Prototype Approach", I think in the long term, specially if you work in a team having unobtrusive code is way too important, even more important than file sizes, it's a matter of scalability. I will defend jquery in this saying that more than a function library, jquery is a Framework with its own model and methodology, it have its own method to apply and extend the models and functions proposed by its author. That's why the whole namespace and wrapping thing. If you want "shorter, natural code" stick with a library with "Prototype Approach", if you want a team-friendly environment to develop scalable javascript interfaces and applications, a framework with its own namespace.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marcoslhc</dc:creator><pubDate>Wed, 01 Oct 2008 11:27:15 -0000</pubDate></item></channel></rss>