├── .github └── workflows │ └── markdown-link-check.yml ├── .gitignore ├── LICENSE ├── README.md └── mlc_config.json /.github/workflows/markdown-link-check.yml: -------------------------------------------------------------------------------- 1 | name: Check Markdown links 2 | 3 | on: push 4 | 5 | jobs: 6 | markdown-link-check: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@master 10 | - uses: gaurav-nelson/github-action-markdown-link-check@v1 11 | with: 12 | config-file: 'mlc_config.json' 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | # Places To Post Your Startup 4 | 5 | ##### The [mmccaff/PlacesToPostYourStartup repository on GitHub](https://github.com/mmccaff/PlacesToPostYourStartup) is automatically mirrored to [PlacesToPostYourStartup.com](https://www.placestopostyourstartup.com) 6 | 7 | Originally from [this HN post](https://news.ycombinator.com/item?id=7248460) which referenced [this HN post](https://news.ycombinator.com/item?id=6492109). 8 | 9 | Click a link to jump to the appropriate section. Both sections are organized alphabetically. 10 | 11 | [Sub-Reddits](#reddit) | [Websites](#websites) | [License](#license) 12 | 13 | # Reddit 14 | 15 | * /r/AlphaandBetausers - https://www.reddit.com/r/alphaandbetausers/ 16 | * /r/Coupons - https://www.reddit.com/r/coupons/ 17 | * /r/Design_Critiques - https://www.reddit.com/r/design_critiques/ 18 | * /r/Entrepreneur - http://reddit.com/r/entrepreneur 19 | * /r/EntrepreneurRideAlong - http://www.reddit.com/r/EntrepreneurRideAlong/ 20 | * /r/IMadeThis - http://reddit.com/r/imadethis 21 | * /r/IndieBiz - https://www.reddit.com/r/indiebiz/ 22 | * /r/LadyBusiness - https://www.reddit.com/r/ladybusiness/ 23 | * /r/RoastMyStartup - https://www.reddit.com/r/roastmystartup 24 | * /r/SideProject - http://reddit.com/r/sideproject 25 | * /r/SmallBusiness - https://www.reddit.com/r/smallbusiness/ 26 | * /r/Startups - http://reddit.com/r/startups 27 | 28 | [Back to Top](#places-to-post-your-startup) 29 | 30 | # Websites 31 | 32 | * 10words - https://10words.io 33 | * AI Collection - https://www.thataicollection.com/ 34 | * All My Faves - https://www.allmyfaves.com/ 35 | * All Startups - http://www.allstartups.info/Startups/Submit 36 | * All Top Startups - http://alltopstartups.com/submit-startup/ 37 | * Alternative To - http://alternativeto.net/ 38 | * Alternative.me - https://alternative.me/ 39 | * AngelList - https://angel.co/ 40 | * App Advice - http://appadvice.com/page/about-us 41 | * App Rater - https://apprater.net/add/ 42 | * Appoid - http://appiod.com/submit-app-for-review/ 43 | * appPicker - http://www.apppicker.com/ 44 | * Apps 400 - http://apps400.com/submit-your-application-for-review 45 | * Apps Listo - http://appslisto.com/submit-your-app/ 46 | * Apps Mamma - http://appsmamma.com/submit-your-app/ 47 | * AppsThunder - http://appsthunder.com/submit-your-app/ 48 | * Appvita - http://www.appvita.com/ 49 | * Arctic Startup - http://arcticstartup.com/ 50 | * Awesome Indie - https://awesomeindie.com 51 | * Beta Bound - http://www.betabound.com/announce/ 52 | * Beta Page - https://betapage.co/ 53 | * Beta Testing - https://betatesting.com/beta-testing 54 | * Boing Boing - http://boingboing.net/sub/ 55 | * Broadwise.org - https://broadwise.org/ 56 | * BuiltInChicago - http://www.builtinchicago.org/send-us-tip 57 | * Capterra - http://www.capterra.com/vendors/sign-up 58 | * Collaborizm - https://www.collaborizm.com 59 | * CrozDesk - https://vendor.crozdesk.com/user/signup 60 | * Crunch Base - https://www.crunchbase.com/#/home/index 61 | * Discova - http://www.discova.co/ 62 | * Discover Cloud - https://www.discovercloud.com/become-a-vendor 63 | * eBool - https://www.ebool.com/submit 64 | * F6S - http://www.f6s.com/ 65 | * Fiddy - https://fiddy.co 66 | * G2 Crowd - https://www.g2crowd.com/products/new 67 | * Geek Wire - http://geekwire.com/startup-list/ 68 | * Get App - http://getapp.com/ 69 | * Getworm - https://getworm.com/submit-startup 70 | * GrowthBoosters - https://www.growthboosters.com/product/add 71 | * Gust - https://www.gust.com 72 | * Haro - https://www.helpareporter.com/sources/ 73 | * Hackerspad - https://hackerspad.net/submit-software/ 74 | * Inc 42 - https://inc42.com/startup-submission/ 75 | * Indie Hackers - https://www.indiehackers.com/ 76 | * Killer Startups - http://killerstartups.com/submit-startup/ 77 | * Land-book - https://land-book.com/guidelines 78 | * Launched - https://launched.io/SubmitStartup 79 | * Launching Next - https://www.launchingnext.com/submit/ 80 | * Loop - https://app.loopinput.com/ 81 | * MakeUseOf - http://www.makeuseof.com/about/ 82 | * Micro SaaS Examples - https://www.microsaasexamples.com/ 83 | * Netted - https://www.netted.net/contact-us/ 84 | * Next Big What - http://nextbigwhat.com/ 85 | * Postmake - https://postmake.io/submit 86 | * PreApps - http://www.preapps.com/ 87 | * Product Hunt - http://www.producthunt.com/ 88 | * Project Hatch - https://www.projecthatch.co/your-story/ 89 | * Projectium Network - https://projectium.network 90 | * SaaSHub - https://www.saashub.com/ 91 | * Saasified - https://saasified.co 92 | * Saijo's Tools List - https://saijogeorge.com/best-marketing-tools/ 93 | * Show HN - https://news.ycombinator.com/showhn.html 94 | * Side Projectors - https://www.sideprojectors.com 95 | * Simple Lister - https://simplelister.com/ 96 | * SimilarSiteSearch - http://www.similarsitesearch.com/tips.html 97 | * Slant - https://www.slant.co/ 98 | * SnapMunk - https://www.snapmunk.com/submit-your-startup/ 99 | * Software Advice - https://softwareadvice-markets.questionpro.com/ 100 | * Stack Share - http://stackshare.io/ 101 | * Starter Story - https://starterstory.com/ 102 | * Startup 88 - https://startup88.com/ 103 | * Startup Base - https://startupbase.io/submit 104 | * Startup Beat - http://startupbeat.com/startup-beat-featured-startup-pitch-guidelines/ 105 | * Startup Benchmarks - https://www.startupbenchmarks.com/ 106 | * Startup Buffer - https://startupbuffer.com 107 | * Startup Inspire - https://www.startupinspire.com/submit 108 | * Startup Lift - http://www.startuplift.com/ 109 | * Startup Ranking - http://www.startupranking.com/ 110 | * Startup Register - http://startupregister.net/register-your-startup/ 111 | * Startup Stash - http://startupstash.com/ 112 | * Startup Tabs - http://startuptabs.com/ 113 | * Startup Tracker - https://startuptracker.io/ 114 | * StartupBlink - http://www.startupblink.com/ 115 | * Startups Gallery - https://startups.gallery/ 116 | * Startups List - https://www.startups-list.com/ 117 | * State of Tech - http://stateoftech.net/advertise?submit-an-app-for-review 118 | * Tabscape - https://www.tapscape.com/ 119 | * Tech Faster - http://techfaster.com/submit-your-company/ 120 | * Tech Pluto - http://www.techpluto.com/submit-a-startup/ 121 | * The Changelog - https://github.com/thechangelog/ping 122 | * The iPhone Mom - https://www.theiphonemom.com/ 123 | 124 | * Vator - http://www.vator.tv/ 125 | * Venture Beat - http://venturebeat.com/news-tips/ 126 | * Web App Rater - https://webapprater.com/submit-your-web-application-for-review-html 127 | * Website Hunt - https://www.websitehunt.co 128 | * Ycombinator - https://news.ycombinator.com/ 129 | * yesRamen - https://yesramen.com/ 130 | 131 | [Back to Top](#places-to-post-your-startup) 132 | 133 | ## License 134 | 135 | [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) 136 | 137 | To the extent possible under law, [Matt McCaffrey](http://www.mattmccaffrey.com/) has waived all copyright and related or neighboring rights to this work. 138 | 139 | [Back to Top](#places-to-post-your-startup) 140 | -------------------------------------------------------------------------------- /mlc_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignorePatterns": [ 3 | { 4 | "pattern": "^https://startupbuffer.com" 5 | }, 6 | { 7 | "pattern": "^https://www.launchingnext.com/submit" 8 | }, 9 | { 10 | "pattern": "https://www.allmyfaves.com/" 11 | } 12 | ], 13 | "replacementPatterns": [ 14 | { 15 | "pattern": "^.attachments", 16 | "replacement": "file://some/conventional/folder/.attachments" 17 | }, 18 | { 19 | "pattern": "^/", 20 | "replacement": "{{BASEURL}}/" 21 | } 22 | ], 23 | "httpHeaders": [ 24 | { 25 | "urls": ["https://example.com"], 26 | "headers": { 27 | "Authorization": "Basic Zm9vOmJhcg==", 28 | "Foo": "Bar" 29 | } 30 | } 31 | ], 32 | "timeout": "20s", 33 | "retryOn429": true, 34 | "retryCount": 5, 35 | "fallbackRetryDelay": "30s", 36 | "aliveStatusCodes": [200, 20, 403] 37 | } 38 | --------------------------------------------------------------------------------