Alternatives to Quora logo

Alternatives to Quora

Swift, Dropbox, Medium, JavaScript, and Git are the most popular alternatives and competitors to Quora.
83
89
+ 1
13

What is Quora and what are its top alternatives?

It connects you to everything you want to know about. Quora aims to be the easiest place to write new content and share content from the web. We organize people and their interests so you can find, collect and share the information most valuable to you.
Quora is a tool in the Question and Answer Sites category of a tech stack.

Top Alternatives to Quora

  • Swift
    Swift

    Writing code is interactive and fun, the syntax is concise yet expressive, and apps run lightning-fast. Swift is ready for your next iOS and OS X project — or for addition into your current app — because Swift code works side-by-side with Objective-C. ...

  • Dropbox
    Dropbox

    Harness the power of Dropbox. Connect to an account, upload, download, search, and more. ...

  • Medium
    Medium

    Medium is a different kind of place on the internet. A place where the measure of success isn’t views, but viewpoints. Where the quality of the idea matters, not the author’s qualifications. A place where conversation pushes ideas forward. ...

  • Stack Overflow
    Stack Overflow

    Stack Overflow is a question and answer site for professional and enthusiast programmers. It's built and run by you as part of the Stack Exchange network of Q&A sites. With your help, we're working together to build a library of detailed answers to every question about programming. ...

  • Acquia
    Acquia

    The leader in enterprise Drupal solutions providing a powerful cloud-native platform to build, operate, and optimize your digital experience. It provide enterprise products, services, and technical support for the open-source web content management platform Drupal. ...

  • Blogger
    Blogger

    Since Blogger was launched in 1999, blogs have reshaped the web, impacted politics, shaken up journalism, and enabled millions of people to have a voice and connect with others. ...

  • Tumblr
    Tumblr

    Tumblr is a feature rich and free blog hosting platform offering professional and fully customizable templates, bookmarklets, photos, mobile apps, and social network. The site now ranks as the 11th-largest in terms of traffic, according to Quantcast, with 170 million monthly visitors globally. ...

  • WP Engine
    WP Engine

    WP Engine provides best-in-class customer service on top of innovation-driven technology. This is why over 30,000 customers in 120 countries have chosen us for their mission critical WordPress hosting needs. ...

Quora alternatives & related posts

Swift logo

Swift

19.8K
13.2K
1.3K
An innovative new programming language for Cocoa and Cocoa Touch.
19.8K
13.2K
+ 1
1.3K
PROS OF SWIFT
  • 259
    Ios
  • 180
    Elegant
  • 126
    Not Objective-C
  • 107
    Backed by apple
  • 93
    Type inference
  • 61
    Generics
  • 54
    Playgrounds
  • 49
    Semicolon free
  • 38
    OSX
  • 36
    Tuples offer compound variables
  • 24
    Clean Syntax
  • 24
    Easy to learn
  • 22
    Open Source
  • 21
    Beautiful Code
  • 20
    Functional
  • 12
    Dynamic
  • 12
    Linux
  • 11
    Protocol-oriented programming
  • 10
    Promotes safe, readable code
  • 9
    No S-l-o-w JVM
  • 8
    Explicit optionals
  • 7
    Storyboard designer
  • 6
    Optionals
  • 6
    Type safety
  • 5
    Super addicting language, great people, open, elegant
  • 5
    Best UI concept
  • 4
    Its friendly
  • 4
    Highly Readable codes
  • 4
    Fail-safe
  • 4
    Powerful
  • 4
    Faster and looks better
  • 4
    Swift is faster than Objective-C
  • 4
    Feels like a better C++
  • 3
    Easy to learn and work
  • 3
    Much more fun
  • 3
    Protocol extensions
  • 3
    Native
  • 3
    Its fun and damn fast
  • 3
    Strong Type safety
  • 3
    Easy to Maintain
  • 2
    Protocol as type
  • 2
    All Cons C# and Java Swift Already has
  • 2
    Esay
  • 2
    MacOS
  • 2
    Type Safe
  • 2
    Protocol oriented programming
  • 1
    Can interface with C easily
  • 1
    Actually don't have to own a mac
  • 1
    Free from Memory Leak
  • 1
    Swift is easier to understand for non-iOS developers.
  • 1
    Numbers with underbar
  • 1
    Optional chain
  • 1
    Great for Multi-Threaded Programming
  • 1
    Runs Python 8 times faster
  • 1
    Objec
CONS OF SWIFT
  • 5
    Must own a mac
  • 2
    Memory leaks are not uncommon
  • 1
    Very irritatingly picky about things that’s
  • 1
    Complicated process for exporting modules
  • 1
    Its classes compile to roughly 300 lines of assembly
  • 1
    Is a lot more effort than lua to make simple functions
  • 0
    Overly complex options makes it easy to create bad code

related Swift posts

Shivam Bhargava
AVP - Business at VAYUZ Technologies Pvt. Ltd. · | 22 upvotes · 745.3K views

Hi Community! Trust everyone is keeping safe. I am exploring the idea of building a #Neobank (App) with end-to-end banking capabilities. In the process of exploring this space, I have come across multiple Apps (N26, Revolut, Monese, etc) and explored their stacks in detail. The confusion remains to be the Backend Tech to be used?

What would you go with considering all of the languages such as Node.js Java Rails Python are suggested by some person or the other. As a general trend, I have noticed the usage of Node with React on the front or Node with a combination of Kotlin and Swift. Please suggest what would be the right approach!

See more
Conor Myhrvold
Tech Brand Mgr, Office of CTO at Uber · | 13 upvotes · 1.6M views

Excerpts from how we developed (and subsequently open sourced) Uber's cross-platform mobile architecture framework, RIBs , going from Objective-C to Swift in the process for iOS: https://github.com/uber/RIBs

Uber’s new application architecture (RIBs) extensively uses protocols to keep its various components decoupled and testable. We used this architecture for the first time in our new rider application and moved our primary language from Objective-C to Swift. Since Swift is a very static language, unit testing became problematic. Dynamic languages have good frameworks to build test mocks, stubs, or stand-ins by dynamically creating or modifying existing concrete classes.

Needless to say, we were not very excited about the additional complexity of manually writing and maintaining mock implementations for each of our thousands of protocols.

The information required to generate mock classes already exists in the Swift protocol. For Uber’s use case, we set out to create tooling that would let engineers automatically generate test mocks for any protocol they wanted by simply annotating them.

The iOS codebase for our rider application alone incorporates around 1,500 of these generated mocks. Without our code generation tool, all of these would have to be written and maintained by hand, which would have made testing much more time-intensive. Auto-generated mocks have contributed a lot to the unit test coverage that we have today.

We built these code generation tools ourselves for a number of reasons, including that there weren’t many open source tools available at the time we started our effort. Today, there are some great open source tools to generate resource accessors, like SwiftGen. And Sourcery can help you with generic code generation needs:

https://eng.uber.com/code-generation/ https://eng.uber.com/driver-app-ribs-architecture/

(GitHub : https://github.com/uber/RIBs )

See more
Dropbox logo

Dropbox

23.1K
18K
1.7K
Build the power of Dropbox into your apps
23.1K
18K
+ 1
1.7K
PROS OF DROPBOX
  • 434
    Easy to work with
  • 256
    Free
  • 216
    Popular
  • 176
    Shared file hosting
  • 167
    'just works'
  • 100
    No brainer
  • 79
    Integration with external services
  • 76
    Simple
  • 49
    Good api
  • 38
    Least cost (free) for the basic needs case
  • 11
    It just works
  • 8
    Convenient
  • 7
    Accessible from all of my devices
  • 5
    Command Line client
  • 4
    Synchronizing laptop and desktop - work anywhere
  • 4
    Can even be used by your grandma
  • 3
    Reliable
  • 3
    Sync API
  • 3
    Mac app
  • 3
    Cross platform app
  • 2
    Ability to pay monthly without losing your files
  • 2
    Delta synchronization
  • 2
    Everybody needs to share and synchronize files reliably
  • 2
    Backups, local and cloud
  • 2
    Extended version history
  • 2
    Beautiful UI
  • 1
    YC Company
  • 1
    What a beautiful app
  • 1
    Easy/no setup
  • 1
    So easy
  • 1
    The more the merrier
  • 1
    Easy to work with
  • 1
    For when client needs file without opening firewall
  • 1
    Everybody needs to share and synchronize files reliabl
  • 1
    Easy to use
  • 1
    Official Linux app
  • 0
    The more the merrier
CONS OF DROPBOX
  • 3
    Personal vs company account is confusing
  • 1
    Replication kills CPU and battery

related Dropbox posts

Shared insights
on
Google DriveGoogle DriveDropboxDropbox

I created a simple upload/download functionality for a web application and connected it to Mongo, now I can upload, store and download files. I need advice on how to create a SPA similar to Dropbox or Google Drive in that it will be a hierarchy of folders with files within them, how would I go about creating this structure and adding this functionality to all the files within the application?

Intuitively creating a react component and adding it to a File object seems like the way to go, what are some issues to expect and how do I go about creating such an application to be as fast and UI-friendly as possible?

See more
Shared insights
on
BoxBoxDropboxDropboxKloudlessKloudless

Anyone recommend a good connector like Kloudless for connecting a SaaS app to Dropbox/Box etc? Cheers

See more
Medium logo

Medium

766
688
190
The perfect place to read and write.
766
688
+ 1
190
PROS OF MEDIUM
  • 61
    Beautiful UI
  • 34
    Typography
  • 15
    Network effect
  • 12
    Embedding videos, tweets, vines
  • 12
    Great mobile app
  • 11
    Simple, yet elegant and appealing UX
  • 10
    Notes
  • 9
    Word counter
  • 7
    Easy to gain traction
  • 4
    Idealized media consumption
  • 3
    Inline Comments & Discussions
  • 3
    Beautiful design. great content, excellent experience
  • 2
    Version history
  • 2
    Nice UI and UX
  • 2
    Embed medium
  • 2
    Recommendations
  • 1
    Daily Digest
CONS OF MEDIUM
    Be the first to leave a con

    related Medium posts

    Stack Overflow logo

    Stack Overflow

    68K
    60K
    893
    Question and answer site for professional and enthusiast programmers
    68K
    60K
    + 1
    893
    PROS OF STACK OVERFLOW
    • 257
      Scary smart community
    • 206
      Knows all
    • 142
      Voting system
    • 134
      Good questions
    • 83
      Good SEO
    • 22
      Addictive
    • 14
      Tight focus
    • 10
      Share and gain knowledge
    • 7
      Useful
    • 3
      Fast loading
    • 2
      Gamification
    • 1
      Knows everyone
    • 1
      Experts share experience and answer questions
    • 1
      Stack overflow to developers As google to net surfers
    • 1
      Questions answered quickly
    • 1
      No annoying ads
    • 1
      No spam
    • 1
      Fast community response
    • 1
      Good moderators
    • 1
      Quick answers from users
    • 1
      Good answers
    • 1
      User reputation ranking
    • 1
      Efficient answers
    • 1
      Leading developer community
    CONS OF STACK OVERFLOW
    • 3
      Not welcoming to newbies
    • 3
      Unfair downvoting
    • 3
      Unfriendly moderators
    • 3
      No opinion based questions
    • 3
      Mean users
    • 2
      Limited to types of questions it can accept

    related Stack Overflow posts

    Acquia logo

    Acquia

    3.2K
    42
    5
    Drupal Hosting Platform
    3.2K
    42
    + 1
    5
    PROS OF ACQUIA
    • 2
      Unbeatable fast response 24h support
    • 2
      Trusted by the biggest companies worldwide
    • 1
      Enterprise grade quality platform
    CONS OF ACQUIA
      Be the first to leave a con

      related Acquia posts

      Blogger logo

      Blogger

      598
      101
      10
      Create a blog. It's free.
      598
      101
      + 1
      10
      PROS OF BLOGGER
      • 7
        Free and nice
      • 2
        Widegets
      • 1
        Settings of the blog pags :v
      CONS OF BLOGGER
        Be the first to leave a con

        related Blogger posts

        Dale Ross
        Independent Contractor at Self Employed · | 22 upvotes · 1.5M views

        I've heard that I have the ability to write well, at times. When it flows, it flows. I decided to start blogging in 2013 on Blogger. I started a company and joined BizPark with the Microsoft Azure allotment. I created a WordPress blog and did a migration at some point. A lot happened in the time after that migration but I stopped coding and changed cities during tumultuous times that taught me many lessons concerning mental health and productivity. I eventually graduated from BizSpark and outgrew the credit allotment. That killed the WordPress blog.

        I blogged about writing again on the existing Blogger blog but it didn't feel right. I looked at a few options where I wouldn't have to worry about hosting cost indefinitely and Jekyll stood out with GitHub Pages. The Importer was fairly straightforward for the existing blog posts.

        Todo * Set up redirects for all posts on blogger. The URI format is different so a complete redirect wouldn't work. Although, there may be something in Jekyll that could manage the redirects. I did notice the old URLs were stored in the front matter. I'm working on a command-line Ruby gem for the current plan. * I did find some of the lost WordPress posts on archive.org that I downloaded with the waybackmachinedownloader. I think I might write an importer for that. * I still have a few Disqus comment threads to map

        See more
        Tumblr logo

        Tumblr

        289
        179
        119
        Tumblr lets you effortlessly share anything.
        289
        179
        + 1
        119
        PROS OF TUMBLR
        • 39
          Free
        • 27
          Easy setup
        • 20
          Modern Layout
        • 14
          Simple
        • 8
          Feature rich
        • 3
          Mobile App
        • 2
          No ads on blogs
        • 2
          Backed by Yahoo
        • 1
          Blogging simplified
        • 1
          Fully customizable HTML/CSS
        • 1
          Free personal domain mapping
        • 1
          Rich, flexible API for rich themes
        CONS OF TUMBLR
          Be the first to leave a con

          related Tumblr posts

          WP Engine logo

          WP Engine

          72
          46
          1
          Hassle-Free WordPress Hosting
          72
          46
          + 1
          1
          PROS OF WP ENGINE
          • 1
            Best customer support of any business, all time
          • 0
            <a href="https://hostandprotect.com/">best hosting</a>
          CONS OF WP ENGINE
            Be the first to leave a con

            related WP Engine posts