https://remoteindian.com/ logo
Join Slack
Powered by
# random
  • r

    refined-vegetable-38843

    07/05/2020, 6:54 AM
    Has anyone tried logitech g29? If yes, how do you like it?
  • a

    able-glass-75333

    07/05/2020, 7:27 AM
    Anyone facing issues with Firefox Developer Edition and Google Meet?
    r
    a
    • 3
    • 2
  • g

    green-knife-71366

    07/08/2020, 9:01 AM
    I am looking for a referral in couchbase. Any help anyone?
  • l

    lively-kitchen-45586

    07/09/2020, 3:18 AM
    The most satisfying thing I did today was to remove all those 
    if (isLoading) { <LoadingSkeletons/> }
     from the public pages of my side project app. There's tremendous performance gains to be had by pre-rendering pages (and treating the pre-render as a skeleton), and then fetching for fresh data with SWR after load if necessary. Thesis: https://twitter.com/sarupbanskota/status/1281054466628673536 Solution: https://twitter.com/sarupbanskota/status/1281057252225323010
    l
    • 2
    • 6
  • l

    lively-kitchen-45586

    07/09/2020, 4:31 AM
    ^ I explained this a bit further in another group, and figured I'd also share here: Consider a site like Product Hunt, which has a public index page comprising of products. The products themselves don't change too frequently (if at all), but the upvotes per product, or the commentsCount can change very frequently. The skeleton approach is that you show a skeleton while you first load the products.
    Copy code
    if (isLoading) { return <ProductSkeleton/ >}
    In the approach I'm proposing, you load with a stale version of the product. Stale = pre-rendered product. Most product oriented details are probably still fresh, but things like upvote or comments count are gone stale. Once rendered, you do an SWR call to fetch the latest upvote numbers, and counter-up-animate the votes.
    Copy code
    const { refreshedProduct, isLoadingRefreshedProduct } = functionUsingSWR()
    
    ...
    
    if (isLoadingRefreshedProduct) { return <Product votes={product.votes} /> }
    
    return <Product votes={refreshedProduct.votes} animateUpFrom={product.votes}>
    This can be improved further — once Next.js lands the ability to revalidate-on-demand, then you don't need the SWR bits. Once there is an upvote, you trigger some webhook to revalidate the page, and by default you load the freshest results. So you effectively treat the results of your pre-rendered page as the skeleton https://twitter.com/sarupbanskota/status/1281057252225323010
    🙌 1
    💯 2
    p
    a
    • 3
    • 2
  • b

    brash-monitor-80970

    07/09/2020, 8:45 AM
    Here is a snap of my lockdown setup. Many have shared before, thought of taking a stab 🙂
    👍 7
    ❤️ 11
    s
    p
    a
    • 4
    • 15
  • s

    swift-london-82344

    07/09/2020, 2:32 PM
    any thoughts about this?

    https://www.youtube.com/watch?v=7_rz28FDpYM▾

    https://www.youtube.com/watch?v=IfHWE36B1go▾

    n
    • 2
    • 1
  • a

    abundant-cpu-16374

    07/09/2020, 3:21 PM
    This message was deleted.
    ❤️ 5
    👍 4
    v
    v
    s
    • 4
    • 10
  • d

    damp-coat-97256

    07/09/2020, 5:13 PM
    Anyone here played with Deno a bit?
    ✋ 1
    v
    e
    • 3
    • 3
  • l

    loud-glass-33663

    07/10/2020, 2:38 AM
    Lessons learnt from starting a SaaS. Some great points there. https://twitter.com/pierredewulf/status/1280526150243098627?s=21
    👍 2
    👍 1
  • a

    acoustic-sunset-3680

    07/10/2020, 3:29 AM
    anyone using keychron k2? is it worth the price? any other mechanical keyboard with same layout?
    m
    g
    • 3
    • 4
  • m

    magnificent-solstice-42554

    07/10/2020, 9:10 AM
    Have a basic SEO-related google analytics question. Say I have two websites in the same domain but are completely different apps:
    <http://www.foo.com|www.foo.com>
    and
    <http://blog.foo.com|blog.foo.com>
    . Is it advisable to have the same google analytics tracking ID for both? Or use separate ones?
    h
    • 2
    • 2
  • a

    acceptable-flag-71699

    07/10/2020, 9:15 AM
    GA shouldn't matter for SEO 🤔
    m
    • 2
    • 3
  • c

    calm-grass-85557

    07/10/2020, 12:03 PM
    TIL: You can create your own README on Github mindblown
    👍 7
  • d

    dry-monkey-93718

    07/10/2020, 12:25 PM
    aah it used to be a limited feature with repo name being
    .github
    before
    💯 1
  • p

    polite-vr-99522

    07/12/2020, 4:21 AM

    https://youtu.be/OnEcXU2_Q9s▾

    d
    b
    • 3
    • 4
  • m

    many-raincoat-20537

    07/12/2020, 5:22 AM
    Hey guys, regarding foreign companies which hire remote developers, how often does the interview consist of
    data structures and algorithms
    questions? I know it might vary depending on company but what is the general trend like? How was your experience interviewing? Were you asked DS Algo questions? I am asking this from a backend developer perspective.
    v
    k
    • 3
    • 3
  • p

    polite-vr-99522

    07/13/2020, 5:32 AM
    Any suggestions for content localisation? I’m researching a project that includes a website + mobile app, where the default language would be Hindi with an option to switch to English.
    f
    g
    • 3
    • 3
  • e

    enough-australia-17557

    07/13/2020, 7:19 AM
    Hi, I need some guidance. What is
    US/Canada work authorization
    on angel.co I interviewed with a company and marked that section as No as i didn’t knew about this. The interview went fine, but I got stuck in the final round due to this, can someone here please tell me what this is? Do I need a certificate to show it as a proof or something. Google isn’t helping much here for more info around this.
    l
    g
    • 3
    • 12
  • c

    creamy-bird-1828

    07/13/2020, 1:05 PM
    I was wondering if donating to 501(c) (3) companies is eligible for tax exemption in India. Is it so?
    l
    • 2
    • 4
  • g

    gorgeous-lunch-25580

    07/13/2020, 3:42 PM
    Anyone here who has worked on multi-lingual websites and/or AMP? This is essentially in the context of marketing communication / publishing websites. Friends at HasGeek are looking for guest speakers/panelists who could share insights from challenges with development, design, content, and business for an upcoming session in their Content Web series under MetaRefresh. Here's some context from one of their recent sessions on website performance: https://hasgeek.com/metarefresh/introduction-to-web-performance/ DM me so that I could connect with relevant folks. :)
  • c

    clean-salesmen-57717

    07/13/2020, 8:50 PM
    has anyone tried parallels.com for playing games on macbook pro specifically ? if yes , hows is the experience ?
  • d

    damp-coat-97256

    07/14/2020, 4:51 AM
    What bluetooth headset are you using. How is the call quality and do you use separate ones for calls vs listening to music etc.
    s
    g
    • 3
    • 4
  • c

    curved-minister-23111

    07/14/2020, 5:31 AM
    💵 Is there any resource for justifying the hourly rate? I am switching within my current company from a full-time employee to a freelancer. 👨🏽‍💻 I am planning to quote between 2x-3x of my current salary as my hourly rate. How do I defend that number? If this is has been previously asked, point me to a previous discussion or resource from the internet. TIA! 🙏🏽
    v
    a
    +3
    • 6
    • 15
  • l

    lively-kitchen-45586

    07/14/2020, 7:08 AM
    I'm genuinely curious about the different ways we waste our time, esp. digitally. With the end goal, as always, that maybe there are opportunities to build something cool. I've listed a few ways I waste time, and figured the productivity nerds & DX enthusiasts here have more! https://twitter.com/sarupbanskota/status/1282933748254695424
    c
    • 2
    • 3
  • s

    swift-pilot-25722

    07/14/2020, 10:17 AM

    https://www.youtube.com/watch?reload=9&amp;v=y8OnoxKotPQ▾

    - is this common in Dev world? 😛
    🤣 4
    c
    • 2
    • 1
  • n

    nice-electrician-7689

    07/14/2020, 7:53 PM
    Is there any channel here where I can ask queries about setting up a sole proprietorship in India?
    c
    l
    +3
    • 6
    • 13
  • d

    dry-monkey-93718

    07/15/2020, 9:30 AM
    Do you feel like frontend engineers are respected less than backend?
    b
    l
    +3
    • 6
    • 12
  • b

    brash-monitor-80970

    07/15/2020, 10:07 AM
    Folks, a random question - do you know any online courses around kitchen gardening / landscaping / interior design delivered in Hindi / Marathi ? Mum has developed quite an interest in these topics and I would like give her a structured syllabus / tutoring. It will keep her busy too.
    ✔️ 1
    l
    • 2
    • 2
  • s

    sticky-manchester-85950

    07/15/2020, 5:59 PM
    Looking for recommendations for a good comfortable home office chair that has good back support (wheels optional)
    l
    b
    f
    • 4
    • 3
1...424344...118Latest