<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: lsdafjklsd</title><link>https://news.ycombinator.com/user?id=lsdafjklsd</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 11:00:51 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=lsdafjklsd" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by lsdafjklsd in "NYC Subway Turnstile Data"]]></title><description><![CDATA[
<p>Actually 100% 17 days still going</p>
]]></description><pubDate>Wed, 01 Apr 2020 04:43:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=22745767</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=22745767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22745767</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "NYC Subway Turnstile Data"]]></title><description><![CDATA[
<p>My wife's last day was the 10th but I had tried to get them to stop earlier, basically put my foot down. We actually left the city that Saturday, now we are dealing with driving around northern New Hampshire with NY plates. Locals are starting to take more notice.</p>
]]></description><pubDate>Sun, 29 Mar 2020 04:39:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=22716470</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=22716470</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22716470</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Vue.js vs. React: what happened in 2017"]]></title><description><![CDATA[
<p>I think it's really people's experience. I'm in your camp, I write functional javascript, I learned clojure, I think about writing software in a way where react-redux (and re-frame) fit the paradigm and get out of the way. Vue seems like Backbone v2 after drawing inspiration from Ember and Angular</p>
]]></description><pubDate>Sun, 24 Dec 2017 21:34:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=16001401</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=16001401</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16001401</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Vue.js vs. React: what happened in 2017"]]></title><description><![CDATA[
<p>I really don't get the love around vue... I always read the glowing sentiment and go, "Ok, I'm missing something, let me go back to the vue.js docs and see what's good"<p>Things that are a deal breaker for me:<p>Template language... You can call it 'separation of concerns' all you want, but just let me generate templates using the language I already know, JSX is great<p>State management... I cut my teeth with Ember professionally for a few years, and really loved it up until I built a data intensive app. Having state spread across different controllers is great when you have many different routes and pages, but if one page turns in to a photoshop like app, controllers make a terrible state management tool. It doesn't seem overly complicated to me to use redux along with react-redux's connect function to connect regular functions returning JSX to your state object. Looking at Vue.js, it seems like I need to learn Ember-lite + Angular (custom directives).</p>
]]></description><pubDate>Sun, 24 Dec 2017 21:29:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=16001381</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=16001381</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16001381</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "How Redux Works: A Counter-Example"]]></title><description><![CDATA[
<p>Yea basically this. Built a 'big data app' using Ember, which was all well and fine until some of the routes essentially became their own apps, that were more akin to apps like photoshop. MVC really broke down for us here, and it wasn't until we introduced react / redux and slowly refactored the application until things got more manageable and sane.</p>
]]></description><pubDate>Tue, 21 Nov 2017 03:38:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=15745335</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=15745335</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15745335</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "How Redux Works: A Counter-Example"]]></title><description><![CDATA[
<p>In the apps that I've built, having many components manage their own private state makes it hard to coordinate said components, because all of the application state is stuffed inside different jars that you can't easily peak into.<p>It's been much easier to pull all app state into a central, db like structure, and allow components to connect and query that structure for whatever data they need. It makes making changes to components in the future easier, because all of my data is normalized in a structure, and it's all possibly available to any component in the app.<p>I've found that with MVC, if you design the private state a certain way, and in the future need largeish independent components to coordinate, well, you're going to have a bad time.<p>So redux or not, I'm definitely a fan managing state as it's own separate thing, and having components able to query and connect to that data structure, without having to pipe props down a tree of components, which leads to an app that's hard to change.</p>
]]></description><pubDate>Mon, 20 Nov 2017 17:36:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=15741603</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=15741603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15741603</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Interview with Ryan Dahl, Creator of Node.js"]]></title><description><![CDATA[
<p>There weren't really 'legions' of front end devs when node came out. People were just learning backbone.js and the idea of SPA's being viable was still forming. It was not easy to pick up if you were coming from something like rails, because it had no well documented complete framework solution. The people that were doing node in the early days were legit back end folks. I am now a front end developer, but I learned on rails and I remember having a hard time 'learning' node. It had no debugger (I was used to something like pry) and was generally a collection of 'low level' libraries.</p>
]]></description><pubDate>Thu, 31 Aug 2017 22:50:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=15144655</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=15144655</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15144655</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Love it or hate it, truckers say they can’t stop listening to public radio"]]></title><description><![CDATA[
<p>my dad is a fox news republican, a few years back we were driving for 5 hours and were listening to npr. he was basically waiting for the overt liberal bias, but instead we listened to a bunch of fascinating stories and interesting shows about a variety of topics. I read somewhere that npr isn't liberally biased, but their fan base is mostly liberal, because liberals tend to prefer news that has no bias. It's also not loud and obnoxious, which they like.</p>
]]></description><pubDate>Tue, 22 Aug 2017 03:50:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=15069555</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=15069555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15069555</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Is Clojure dying, and what has Ruby got to do with it?"]]></title><description><![CDATA[
<p>Yup, front end development is light years ahead of JS. sad</p>
]]></description><pubDate>Fri, 26 May 2017 03:30:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=14421809</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=14421809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14421809</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Is Clojure dying, and what has Ruby got to do with it?"]]></title><description><![CDATA[
<p>Parinfer is a huge game changer. Everyone afraid of writing lisp needs to try again using parinfer.</p>
]]></description><pubDate>Fri, 26 May 2017 03:28:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=14421805</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=14421805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14421805</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Is Clojure dying, and what has Ruby got to do with it?"]]></title><description><![CDATA[
<p>The issue is more that I have to add, and use an immutable library vs it being just baked in to the language. I have to convert from and to JS. Worry about setting a deep value that is regular JS. It's janky is all.</p>
]]></description><pubDate>Fri, 26 May 2017 03:26:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=14421800</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=14421800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14421800</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Is Clojure dying, and what has Ruby got to do with it?"]]></title><description><![CDATA[
<p>> with not very nice tooling<p>The tooling is the best. Figwheel is hot reload that never goes down, devcards is revolutionary, and a browser repl for live in editor evaluation...<p>> significantly different from the existing javascript code base you already have<p>It actually isn't. Clojurescript is basically javascript that's immutable first, has underscore in it's core library, and then a bunch of other awesome language constructs. The libraries use the same patterns, re-frame is a nicer, more succinct abstraction over react-redux.<p>> poor interop to the existing js ecosystem<p>The interop might be the best out there. Seriously you can write javascript in clojurescript. you can straight up import es6 jsx javascript into your clojurescript code. (thanks Google Closure)<p>> For javascript, that crowd of alternatives is so much larger<p>I mean, what are the options? Clojurescript's benefits are so much more than the language. The real pluses for clojurescript are the Google Closure compiler, hot reload, browser repl, devcards, front end libraries. The language is the cherry on top. There are no alternatives that have a comparable platform not completely alien to JS developers.</p>
]]></description><pubDate>Fri, 26 May 2017 03:23:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=14421791</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=14421791</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14421791</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Build Yourself a Redux"]]></title><description><![CDATA[
<p>but the OO api is a bummer, give us the Clojure Atom api!!! vamos reframe!</p>
]]></description><pubDate>Fri, 05 May 2017 21:33:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=14276986</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=14276986</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14276986</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "State of the Art JavaScript in 2016"]]></title><description><![CDATA[
<p>At work we've turned an ember-cli ember app into a react redux app in place using immutable.js and ramda for everything. It's been a huge boon.<p>PS Ramda it eats lo-dash and its imperative API for lunch. It's for power users, everything curried, higher levels of abstractions. Pick it up and learn it, it'll make you a better programmer.<p>Next stop Clojurescript. Om next is a library where you can get a feel for a Falcor + Relay stack in like 70 lines of code all without the specific tech bloat. David Nolen is a UI profit, just follow him.</p>
]]></description><pubDate>Sat, 12 Mar 2016 00:10:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=11270548</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=11270548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11270548</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Which Type of Exercise Is Best for the Brain?"]]></title><description><![CDATA[
<p>Reminds me of an episode of Bones:<p>a: These are what are known as "Guidos.<p>b: (chuckles) Yeah, Sweetie, I don't think they actually like to be called that.<p>a: But they do.<p>a: That's what they call themselves, although interestingly, not all Guidos are of Italian descent.<p>b: Really?<p>a: While the styles and mannerisms are based on Italian-American tropes, the Guidos can be of any ethnic background.<p>a: They gather at the Jersey Shore.<p>a: The male bonding is near homoerotic.<p>a: The friends or "bros" are more important to them than family.<p>b: Right.<p>b: And how do you know all of this?<p>a: I stumbled across a compelling documentary about them.<p>a: The anthropologist in me was fascinated.</p>
]]></description><pubDate>Wed, 17 Feb 2016 19:28:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=11120501</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=11120501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11120501</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Tablet shipments decline 10.1% in 2015"]]></title><description><![CDATA[
<p>As an artist the apple pencil has been a complete game changer for me. I don't find tablets particularly useful for much other than drawing, and the apple pencil delivers the most realistic experience to date. It used to be the case that working digitally meant you needed to learn how to apply your skills to the digital environment, but now when I draw / paint on the iPad I'm just doing what I'd normally do; it looks the same.</p>
]]></description><pubDate>Tue, 02 Feb 2016 19:14:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=11021681</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=11021681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11021681</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Why We Use Om, and Why We’re Excited for Om Next"]]></title><description><![CDATA[
<p>In short that's up to the developer. It would be like asking how does Redux handle security? Well it doesn't, it just dispatches an action object to functions, the functions you wrote.<p>Om.next takes code you writes and makes it go.</p>
]]></description><pubDate>Thu, 21 Jan 2016 22:05:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=10948815</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=10948815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10948815</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "Lell.js – FRP, State Model, No Boilerplate, Built on Rx"]]></title><description><![CDATA[
<p>It seems that moving html into javascript versus moving javascript into html has been the winning choice. Like the clojurescript counter parts, I want to write code.</p>
]]></description><pubDate>Sat, 16 Jan 2016 04:02:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=10914188</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=10914188</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10914188</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "React/JavaScript fatigue"]]></title><description><![CDATA[
<p>I'm basically saying this. At work we've started to move from Ember to React over a year and a half ago, directly because of the work David Nolen has done in the space. And now we have Redux wrapping an Immutable.js map, and are trying to piece together the rest of the stack that is om.next. It would be wayyyyyyy easier and better and less hacky to just write clojurescript. Getting people on board is sadly super difficult</p>
]]></description><pubDate>Mon, 28 Dec 2015 05:08:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=10799971</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=10799971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10799971</guid></item><item><title><![CDATA[New comment by lsdafjklsd in "React/JavaScript fatigue"]]></title><description><![CDATA[
<p>I think the problem is that the people using React see the grand architecture in Relay / Falcor / Om.next, and are trying to recreate those API's using current libs. There are still a lot of parts missing when you try to build an app with the same abstractions as the aforementioned libraries, and I think the author is correct about 2016 being a year where those gaps are filled.<p>What we really need is a translation of om.next to javascript. That library summarizes all the good ideas from Netflix and Facebook into a small library for every day use. The fact that it's in Clojurescript makes it a non-starter for others, too bad because it's a really great eco-system.<p>edit, list technologies:
React + Redux is a good start, but we need composable queries and a router (falcor) or reconciler (om.next) that manages data fetching / caching. JLongster has done some experimentation here with datascript integration <a href="https://github.com/jlongster/redux-experiments/blob/master/static-queries-datascript/main.js" rel="nofollow">https://github.com/jlongster/redux-experiments/blob/master/s...</a></p>
]]></description><pubDate>Mon, 28 Dec 2015 04:49:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=10799923</link><dc:creator>lsdafjklsd</dc:creator><comments>https://news.ycombinator.com/item?id=10799923</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10799923</guid></item></channel></rss>