<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: irahul</title><link>https://news.ycombinator.com/user?id=irahul</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 02 May 2026 11:57:09 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=irahul" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by irahul in "No engineer has ever sued because of constructive post-interview feedback"]]></title><description><![CDATA[
<p>> I keep repeating that this is not about SQL injection.<p>Is that why you made that absurd claim about sql injection being an explicit requirement? And that weird figure of 24 hours for handling sql injection, and api validation?<p>> Never assume a database or any IO call for that matter will always go right.<p>I said "db calls aren't randomly placed in try/catch - that will be absurd". Because they will be handled at app level to return uniform error messages. Now I am sure you will go on pretending that when you said "db calls aren't in try/catch", what you meant was db calls can throw an exception and app will handle it.<p>> Pretty much any large codebase, that passes objects around should always do Null pointer checks. This is because several times resource heavy objects are initialized only on certain conditions, and if such objects are passed around they must be checked.<p>What did I say about None checks  not necessary because of something which is visible in the code? What do you think those marshmallow schemas and use_kwargs is for?</p>
]]></description><pubDate>Fri, 07 Feb 2020 15:06:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=22266614</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=22266614</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22266614</guid></item><item><title><![CDATA[New comment by irahul in "No engineer has ever sued because of constructive post-interview feedback"]]></title><description><![CDATA[
<p>Welp. This is the point I checkout. You do you, but I have to ask. Do you have any production experience[1] and/or hiring experience? Because you have a very fundamental misunderstanding of both, and I find it very hard to believe that someone who has written even trivial applications would think that not having sql injection is an extra requirement or is going to take too much time, or anyone in hiring position is not going to politely terminate the interview after someone claims their assignment has an sql injection but that's because they didn't have much time and it wasn't explicitly asked for, or even consider calling someone for in-person eval when their assignment has an sql injection.<p>[1] There is a lot wrong with your "improvements". db calls aren't randomly placed in try/catch - that will be absurd. And the None checks aren't there because of something which you can very clearly see in the sample code but you also very clearly don't understand.</p>
]]></description><pubDate>Fri, 07 Feb 2020 13:46:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=22265852</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=22265852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22265852</guid></item><item><title><![CDATA[New comment by irahul in "No engineer has ever sued because of constructive post-interview feedback"]]></title><description><![CDATA[
<p>>  Exactly, if you provide the laundry list its easy to validate your assignment against it.<p>There is no laundry list. There is an expectation that a senior engineer writes codes like a senior engineer.<p>> You submitted code which doesn't have things in my laundry list. Noticeably your db calls aren't surrounded by try/except. You have written no documentation. You didn't ship the code with git repo. No unit or functional test cases. I also expect these days one would use Python's typing library. Most of this helps in code maintainability. The fact that your assignment has none of this means you can't be hired to write production code ....<p>Not sure if you are really this dense or playing dense - the point of the comment was to show that your assumption about api validation and sql injection being explicit requirements or taking too much time is ridiculous. It' simple that it can be written in a comment in about 10 minutes, not the "24 hours" or whatever you claim it is going to take.<p>The very fact that you think sql injection is an explicit requirement or takes work will be an instant deal breaker for any position with the possible exception of fresh grad positions.<p>> ... See where this is going?<p>Yes, I do. You are arguing reductio ad absurdum to hide the fact that the things which you claimed unreasonable are in fact routine, and your time estimates are off by order of 10.</p>
]]></description><pubDate>Fri, 07 Feb 2020 12:36:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=22265372</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=22265372</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22265372</guid></item><item><title><![CDATA[New comment by irahul in "No engineer has ever sued because of constructive post-interview feedback"]]></title><description><![CDATA[
<p>> In 24 hours?<p>No, not in 24 hours. In about 2 hours. The laundry list of things - api validation, error handling, db migrations, good naming - it's pretty routine. A person writing production apis will have no trouble integrating all of it in a very short period of time. This is after all what we do everyday. If a candidate thinks not having sql injection in the code is an explicit requirement or is going to take a lot of time, then that is not the person for the job.<p>Here is a pretty simple flask implementation of your laundry list - api validation, db migration, no sql injections, no n+1 queries, good naming, swagger ui...<p><pre><code>    from flask import Flask, jsonify
    from flask_sqlalchemy import SQLAlchemy
    from flask_migrate import Migrate
    from flask_apispec import use_kwargs, marshal_with, MethodResource, FlaskApiSpec
    from marshmallow import Schema, fields, validate, ValidationError
    from sqlalchemy.orm import joinedload

    # setup

    app = Flask(__name__)
    app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///dev.db'
    db = SQLAlchemy(app)
    migrate = Migrate(app, db)
    docs = FlaskApiSpec(app)


    # Return validation errors as JSON
    @app.errorhandler(422)
    @app.errorhandler(400)
    def handle_error(err):
        headers = err.data.get("headers", None)
        messages = err.data.get("messages", ["Invalid request."])
        if headers:
            return jsonify({"errors": messages}), err.code, headers
        else:
            return jsonify({"errors": messages}), err.code

    # models


    POST_TITLE_LENGTH_MAX = 80
    POST_CONTENT_LENGTH_MAX = 5000


    class Post(db.Model):
        id = db.Column(db.Integer, primary_key=True)
        title = db.Column(db.String(POST_TITLE_LENGTH_MAX), nullable=False)
        content = db.Column(db.String(POST_CONTENT_LENGTH_MAX), nullable=False)

        comments = db.relationship('Comment', back_populates='post')


    COMMENTER_LENGTH_MAX = POST_TITLE_LENGTH_MAX
    COMMENT_LENGTH_MAX = POST_CONTENT_LENGTH_MAX


    class Comment(db.Model):
        id = db.Column(db.Integer, primary_key=True)
        commenter = db.Column(db.String(COMMENTER_LENGTH_MAX), nullable=False)
        comment = db.Column(db.String(COMMENT_LENGTH_MAX), nullable=False)

        post_id = db.Column(db.ForeignKey('post.id'))
        post = db.relationship('Post', uselist=False, back_populates='comments')


    # schemas

    class CommentSchema(Schema):
        id = fields.Int(required=True, dump_only=True)
        commenter = fields.Str(
            required=True, validate=validate.Length(max=COMMENTER_LENGTH_MAX))
        comment = fields.Str(
            required=True, validate=validate.Length(max=COMMENT_LENGTH_MAX))


    class PostSchema(Schema):
        id = fields.Int(required=True, dump_only=True)
        title = fields.Str(required=True, validate=validate.Length(
            max=POST_TITLE_LENGTH_MAX))
        content = fields.Str(required=True, validate=validate.Length(
            max=POST_CONTENT_LENGTH_MAX))
        comments = fields.Nested(CommentSchema, many=True, dump_only=True)


    # dal

    def get_post_list():
        return Post.query.all()


    def get_post(post_id):
        return Post.query.options(joinedload(Post.comments)).get(post_id)


    def create_post(title, content):
        post = Post(title=title, content=content)
        db.session.add(post)
        db.session.commit()
        return post


    def add_comment_to_post(post_id, commenter, comment):
        comment = Comment(commenter=commenter, comment=comment, post_id=post_id)
        db.session.add(comment)
        db.session.commit()
        return comment


    # views


    class PostListResource(MethodResource):
        @marshal_with(PostSchema(many=True))
        def get(self):
            return get_post_list()

        @marshal_with(PostSchema)
        @use_kwargs(PostSchema)
        def post(self, title, content):
            return create_post(title, content)


    class PostResource(MethodResource):
        @marshal_with(PostSchema)
        def get(self, post_id):
            return get_post(post_id)


    class PostCommentResource(MethodResource):
        @marshal_with(CommentSchema)
        @use_kwargs(CommentSchema)
        def post(self, post_id, commenter, comment):
            return add_comment_to_post(post_id, commenter, comment)


    app.add_url_rule('/posts', view_func=PostListResource.as_view('post_list'))
    docs.register(PostListResource, endpoint='post_list')

    app.add_url_rule('/posts/<int:post_id>',
                    view_func=PostResource.as_view('post'))
    docs.register(PostResource, endpoint='post')

    app.add_url_rule('/posts/<int:post_id>/comments',
                    view_func=PostCommentResource.as_view('post_comment'))
    docs.register(PostCommentResource, endpoint='post_comment')</code></pre></p>
]]></description><pubDate>Fri, 07 Feb 2020 08:51:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=22264245</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=22264245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22264245</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> dict.keys() returning something different from what it used to isn't a syntactic change; it's a change in function behavior. Since macros handle syntax, they aren't applicable to a function semantics change.<p>Now you are telling me something I told you in the first place.<p>> What we might do here is to use two different keys symbols in different packages. We can have a ver2:keys and ver3:keys and control which of these dict.keys() uses in some scope. But that's not macros.<p>Right. So like I said, macros won't have helped, at all.<p>> Old syntax can be supported side by side with new syntax.<p>Creating a Frankenstein's monster was never the goal. And besides, they already had tools for code which can run both on 2 and 3.<p><a href="https://pypi.python.org/pypi/future" rel="nofollow">https://pypi.python.org/pypi/future</a><p>> So then since we have a way to have old syntax and old API semantics, which is pretty much everything, we can have a nice migration path.<p>No, it's not a good migration path. 2to3 was a good migration path. Supporting n different versions of apis and syntax isn't a good migration path.<p>This has gone way too long. You made this claim:<p>"If Python had macros, Python 2 to 3 migration would be a non-issue."<p>That is patently false. I don't know why you can't simply accept you were wrong but I must check out now.</p>
]]></description><pubDate>Tue, 26 Sep 2017 04:46:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=15336256</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15336256</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15336256</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>You are just deflecting now. You made the claim that somehow macros would have made the python 2 to 3 migration easy. You are yet to demonstrate which of the migration issues would have been solved by macros.</p>
]]></description><pubDate>Sun, 24 Sep 2017 06:38:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=15323596</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15323596</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15323596</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> It is probably an overstatement, if they have been useless for you (and me) doesn't mean they are.<p>You are conflating "useless" with "secret sauce". I didn't claim they are useless. I said macros are a meme and are useful in very limited circumstances.</p>
]]></description><pubDate>Sat, 23 Sep 2017 10:18:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=15319085</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15319085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15319085</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>I don't follow.<p>>  if the hypothetical floop syntax changed there could be a ver2:floop and ver3:floop.<p>dict.keys() returned a list earlier, now it returns a "view". dict already had keys() and iterkeys(). Is that what you were referring to by your ver2:floop and ver3:floop? They changed keys() to act essentially like iterkeys() and removed iterkeys() because per them, this is the correct behavior.<p>Most changes in python 3 won't be helped by macros. Macros would have helped if they were adding say pattern match. But even then, it doesn't really matter much. If python itself is adding pattern match, they can write it in C, or python, or write a macro(if python had it) - it would have been all the same to me.<p>I am not saying macros aren't useful. I am saying macros are useful in limited circumstances and existence of macros won't have done anything for python 2 to 3 migration.</p>
]]></description><pubDate>Sat, 23 Sep 2017 08:58:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=15318885</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15318885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15318885</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> Someone else wrote that syntax and you benefit from it, just like you benefit from existing macros in a Lisp.<p>Are you following the discussion? The whole discussion arose from somehow macros make up for non-existence of libraries in Racket. Someone else wrote all those libraries for popular languages and I benefit from those existing libraries. Macros do fuck all if I have to wrap them myself. And even if I have to, most of the times it will be way simpler to wrap it in Python/Ruby.<p>You wrote a novella on your hypothetical macro use cases. I wrote I know what macros are. I don't know why you are throwing that at me.<p>> If Python had macros, Python 2 to 3 migration would be a non-issue. It wouldn't be a topic of discussion that non-Python-programmers know about.<p>This is what I mean when I say macros are a meme.<p>No, it won't have helped, at all. The changes in python 3 break the existing python 2 code.<p>> For example, this no longer works: k = d.keys(); k.sort(). Use k = sorted(d) instead (this works in Python 2.5 too and is just as efficient).<p>> The ordering comparison operators (<, <=, >=, >) raise a TypeError exception when the operands don’t have a meaningful natural ordering<p>> builtin.sorted() and list.sort() no longer accept the cmp argument providing a comparison function.<p>>  The biggest difference with the 2.x situation is that any attempt to mix text and data in Python 3.0 raises TypeError, whereas if you were to mix Unicode and 8-bit strings in Python 2.x, it would work if the 8-bit string happened to contain only 7-bit (ASCII) bytes, but you would get UnicodeDecodeError if it contained non-ASCII values.<p>I could go on, but you get the idea.</p>
]]></description><pubDate>Fri, 22 Sep 2017 05:17:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=15309559</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15309559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15309559</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> assumming the use of WSDL the only thing a macro could do is equivalent of what an external program that generate a python file implementing the WSDL could do.<p>I am not assuming the use of WSDL and macros still don't do much.<p>> Reducing boilerplate could make your code less buggy (bugs you catch with your eyes) and could make the meaning of the code more clear.<p>Macros aren't required for reducing boilerplate and don't necessarily reduce boilerplate compared to a non-macro solution in an expressive language.<p>I read almost all of racket's documentation cover to cover and learnt Clojure about 5 years ago. There are a lot of good things to say about them but as far as expressiveness go, but I didn't found them anymore expressive than Ruby or Python.<p>> Racket match is realy nice but it will shine if:
> - You use a lot of immutable datasctructures.
> - Explore shallow tree like data structures.<p>The things you pointed out are non-macro things. I like match, especially when it's well integrated in the lang. viz f#. I just don't like the difference that being able to cook up your match using macros makes a huge difference when it comes to programming productivity.<p>>  i don't think macro are a meme<p>You misunderstand my point. Code generation with or without macros is useful. That's not a meme. "Macros are a secret sauce" is a meme.</p>
]]></description><pubDate>Fri, 22 Sep 2017 05:00:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=15309496</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15309496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15309496</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> Macro can help for two things<p>I know what macros are and what macros can do. The parent poster made a comment that somehow macros can help overcome  non-existence of wrappers in Racket. We both agree that macros won't help in this case, and my personal opinion is macros are a meme. They help some in very limited circumstances yet they are touted as a productivity multiplier. A pattern match over if-else doesn't really buy much. It's nicer, sure, but not by much.</p>
]]></description><pubDate>Thu, 21 Sep 2017 12:56:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=15302831</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15302831</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15302831</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>A language with large standard library and tooling is awesome. But Racket still falls short on api wrappers for tools(message queues, zero mq, templates...) and services(payment gateways, google cloud or azure apis...). It's a chicken and egg problem. Unless a significant number of people start using it in production, Racket isn't going to have extensive libraries and unless it has the libraries to hit the ground running, a significant number of people won't try it.</p>
]]></description><pubDate>Thu, 21 Sep 2017 12:09:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=15302510</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15302510</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15302510</guid></item><item><title><![CDATA[New comment by irahul in "Server: Racket – An ebook about web development with the Racket HTTP server"]]></title><description><![CDATA[
<p>> The thing that is the Special Sauce for Racket is it's macro system. You can build your own language for specific things easily or you can extend Racket with a library also much easier then the other 5-6 languages.<p>Compare the raw format:<p><a href="https://stripe.com/docs/api/curl#metadata" rel="nofollow">https://stripe.com/docs/api/curl#metadata</a><p>with Python:<p><a href="https://stripe.com/docs/api/python#metadata" rel="nofollow">https://stripe.com/docs/api/python#metadata</a><p>How are macros going to give me a better solution that the one which exists, is tested and have been used by others for some time? Besides, macros are a meme. What difference are macros going to make when wrapping a api? Can you show me an existing lisp/clojure wrapper which is more expressive than python/ruby?</p>
]]></description><pubDate>Thu, 21 Sep 2017 12:04:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=15302483</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15302483</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15302483</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>> And then I asked, why would one need a "list of activities" to make that point? I don't see how that would work, seeing how those activities also have contexts and motivations which matter.<p>All right. I will give it a last try. You would need a "list" if you are the one making a point that hiding your gut is just dignity while posting your abs online is narcissism. I was pointing out to parent poster that this point is not conducive as your are defining dignity and narcissism to suit your point of view. I don't understand how you missed it when it's written verbatim in the comment you replied to.<p>> Your comment was an own goal, I'm just beating a dead horse.<p>And here we go again. You think of something and put it down in your comment irrespective of context. What dead horse are you beating and why does this phrase make an appearance out of blue here?<p>> It's more mocking people who I consider lame.<p>At least we have the same agenda here. I too enjoy mocking bottom feeders who write diatribes out of their jealousy for people leading a better and more fulfilled lives than them.<p>> Which brings us back to your projected "Now you are making up arguments on my behalf and posting your retorts." haha.<p>Again, I am sure you think you have a point here and I am supposed to have an epiphany when I grok it, but honestly, all I see is random sentences chained together. I once saw a video of some pastor who brought a rock to a talk show as an irrefutable proof against evolution. I am kinda feeling the same as the talk host felt.<p>Cool man. You do you. Continue "caring for others" by, uh, posting comments on hn I suppose, and "being better", uh, again by posting comments on hn.</p>
]]></description><pubDate>Thu, 14 Sep 2017 05:48:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=15245273</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15245273</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15245273</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>I don't have a particular affinity towards or against insta influencers or youtube stars. I just find the comments amusing.<p>"I am so much better than insta influencers because, uh, I have a job? I don't seek validation from strangers? I am not sure but I sure know that they are the downfall of the humanity"</p>
]]></description><pubDate>Wed, 13 Sep 2017 15:14:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=15239012</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15239012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15239012</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>> but what has it to do with dignity? And why would anyone need a "list"?<p>Conversations have context, you know. Parent poster mentioned dignity being different. Did you not read the or are you intentionally clipping it.<p>> "Creating content" has as much "value" as people give it in form of "attention"<p>Is..is that supposed to be an insult or some deep insight you stumbled onto? I don't understand why you are stating the obvious with such conviction and quotes.<p>> Work 50 years, rob someone who worked 50 years, you can buy the exact same thing... get X views doing A, or X views doing B, it's still just X views.<p>You are kinda going off the rails here buddy.<p>> I guess I should make a youtube video about it, then it'd be valid even if it called out other youtubers? Help me out here, since apparently typing a comment in a text box is not creating content if it rubs you the wrong way.<p>Cool. Now you are making up arguments on my behalf and posting your retorts.<p>> You're basically saying, if you found a bug, don't talk about it, fix your own copy and just use that.<p>That doesn't even come close to being an analogy.<p>> What would you know about ambition?<p>I can explain that to you. Or you can go back and read the conversation again, slowly.<p>> What if my being better includes speaking my mind? Riddle me that.<p>Maybe try to be actually ambitious rather than being content with raging over people doing better than you.</p>
]]></description><pubDate>Wed, 13 Sep 2017 10:58:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=15237098</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15237098</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15237098</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>>  wondering why internet fame isn't fulfilling.<p>I feel internet fame is more fulfilling than being a nobody slaving in a 9-5 job. And there is also easy endorsement money which comes with the fame.</p>
]]></description><pubDate>Wed, 13 Sep 2017 07:20:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=15236195</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15236195</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15236195</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>> If our best and brightest young children become internet celebrities because it made good sense, then there won't be anyone to keep the gears grinding.<p>So do you also support not educating a vast majority of children because if everyone aspires to be a white collar worker, where will we get our janitors and garbage men from.</p>
]]></description><pubDate>Wed, 13 Sep 2017 07:15:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=15236173</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15236173</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15236173</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>> Think of how that forms the development of a young child.<p>It depends.<p>Option 1:<p>"Hey buddy. So you want to be a youtube star. Which ones you like? The funny ones? The lifters? The fashion vloggers? It's actually a lot of work. You will need a script, a cameraman, a director, actors etc. And all said and done, for every youtube star, there are tens of thousands who just toil in obscurity. But that's a risk which comes with a lot of life's decisions and you can decide later on if you really want to do it or if you want to do it part time.<p>Back to the production process. It's not very different from what we do in our school's theater except that there is a massive potential increase in your reach. Why don't you try coming up with a concept and I can walk you through the iterations it takes for the final product. We can even try to schedule a screening for the class and put it on youtube."<p>Option 2:<p>"Youtube star? SMH. What has become of today's generation?"</p>
]]></description><pubDate>Wed, 13 Sep 2017 07:12:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=15236161</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15236161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15236161</guid></item><item><title><![CDATA[New comment by irahul in "Snapchat’s Influencers Are Fleeing to Instagram for Money"]]></title><description><![CDATA[
<p>> who don't contribute anything to society aside from memes, hot bodies and various rants<p>Just like all other mediums of popular media.</p>
]]></description><pubDate>Wed, 13 Sep 2017 07:03:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=15236128</link><dc:creator>irahul</dc:creator><comments>https://news.ycombinator.com/item?id=15236128</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15236128</guid></item></channel></rss>