{"id":13511585,"url":"https://github.com/remy/mit-license","last_synced_at":"2025-05-14T09:07:56.047Z","repository":{"id":1018366,"uuid":"2586317","full_name":"remy/mit-license","owner":"remy","description":"Hosted MIT License with details controlled through this repo","archived":false,"fork":false,"pushed_at":"2024-08-21T02:57:26.000Z","size":11486,"stargazers_count":2262,"open_issues_count":12,"forks_count":1571,"subscribers_count":41,"default_branch":"master","last_synced_at":"2024-10-29T15:05:11.790Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"mit-license.org","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/remy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-10-16T14:21:34.000Z","updated_at":"2024-10-25T05:32:11.000Z","dependencies_parsed_at":"2023-07-05T18:49:13.185Z","dependency_job_id":"b29665c6-2efa-435b-b057-3f8b9a87d85c","html_url":"https://github.com/remy/mit-license","commit_stats":{"total_commits":4316,"total_committers":1191,"mean_commits":"3.6238455079764904","dds":0.5426320667284523,"last_synced_commit":"ce7a9a46cb1f9206b530b5608469ebfc38280065"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remy%2Fmit-license","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remy%2Fmit-license/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remy%2Fmit-license/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remy%2Fmit-license/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remy","download_url":"https://codeload.github.com/remy/mit-license/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254110374,"owners_count":22016391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T03:00:58.606Z","updated_at":"2025-05-14T09:07:51.022Z","avatar_url":"https://github.com/remy.png","language":"CSS","funding_links":["https://www.paypal.me/rem"],"categories":["CSS","others"],"sub_categories":[],"readme":"# A permalink for your MIT License\n\nI always forget to add a `LICENSE` file to my projects, so I wanted to link to a single resource that would always be up to date and would always have my details online.\n\nWhy keep this to myself, there are three ways to create your _own_ MIT license page:\n\n1.  Use the generator tool (easiest)\n2.  Make a request to the API (details below)\n3.  Fork this project and send a pull request\n\nNow I can always include \u003chttps://rem.mit-license.org\u003e in all my projects which links `rem` (the CNAME) against my copyright holder name `Remy Sharp` - all stored in the `users` directory.\n\n## Requesting your own MIT license page\n\nThe simplest way to create your own MIT license page is to use the self-service generator found [here](https://richienb.github.io/mit-license-generator).\n\nYou can fork this project, send me a pull request and wait for me to pull (which I'll do as quickly as possible) or if the user is still available you can do it yourself from the command line:\n\n```bash\ncurl -d'{ \"copyright\": \"Remy Sharp\" }' https://rem.mit-license.org\n```\n\nIf the `rem` user isn't taken already, then this will create the new user file on the fly and the URL will be immediately available.\n\nYou can send a full JSON file to the API, not _just_ the copyright, so this works too:\n\n```bash\ncurl -d'{ \"copyright\": \"Remy Sharp\", \"url\": \"https://remysharp.com\", \"email\": \"me@mysite.com\", \"format\": \"txt\" }' https://rem.mit-license.org\n```\n\nWhilst the command above sends the data as a string which will later be parsed, you can explicitly specify a JSON `Content-Type`:\n\n```bash\ncurl -H 'Content-Type: application/json' -d'{ \"copyright\": \"Remy Sharp\", \"url\": \"https://remysharp.com\", \"email\": \"me@mysite.com\", \"format\": \"txt\" }' https://rem.mit-license.org\n```\n\nYou can also encode the data as URL query parameters like so:\n\n```bash\ncurl -X POST \"https://rem.mit-license.org/?copyright=Remy%20Sharp\u0026url=http%3A%2F%2Fremysharp.com\u0026email=me%40mysite.com\u0026format=txt\"\n```\n\nIf there are any problems in the automated creation, send me a pull request and it'll go live soon after.\n\nEqually, if you need to update the user file to include more details that you didn't initially include (extra fields in the next section) you will need to send a pull request on that `user.json` file via GitHub.\n\n## The user.json file\n\nThe `users` directory contains a list of files, each representing a host on mit-license.org. The minimum requirement for the JSON is that it contains a `copyright` field - everything else is optional. Remember to ensure the `user.json` file is [valid JSON](https://jsonlint.com/).\n\nAvailable fields:\n\n* copyright (required)\n* URL\n* email\n* format\n* gravatar\n* theme\n* license\n\n### copyright\n\nCreate a new file and give it the name of the CNAME you want (in my case it's `rem.json`). This file contains a JSON object containing at least a `copyright` property:\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\"\n}\n```\n\nMeans I can now link to \u003chttps://rem.mit-license.org\u003e and it will show my license name (note that the date will always show the current year).\n\nYou can also use an array to hold multiple copyright holders:\n\n```json\n{\n  \"copyright\": [\"Remy Sharp\", \"Richie Bendall\"]\n}\n```\n\nWhich will be formatted as:\n\n    Remy Sharp and Richie Bendall\n\nIf you additionally want to include a URL and email with each copyright holder, use objects in the array:\n\n```json\n{\n  \"copyright\": [\n    {\n      \"name\": \"Remy Sharp, https://remysharp.com\",\n      \"url\": \"https://remysharp.com\",\n      \"email\": \"remy@remysharp.com\"\n    },\n    {\n      \"name\": \"Richie Bendall, https://www.richie-bendall.ml\",\n      \"url\": \"https://www.richie-bendall.ml\",\n      \"email\": \"richiebendall@gmail.com\"\n    }\n  ]\n}\n```\n\n### url\n\nIn addition to the `copyright` property, if you want to make a link from the copyright text, you can include a `URL` property:\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\",\n  \"url\": \"https://remysharp.com\"\n}\n```\n\n### email\n\nYou can also include a link to your email which is displayed after the copyright notice using the `email` property (note the `mailto:` is automatically added):\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\",\n  \"url\": \"https://remysharp.com\",\n  \"email\": \"me@mysite.com\"\n}\n```\n\n### format\n\nAnd if you want your license to appear as plain text, just add the `format` property (currently only `txt` and `html` are supported):\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\",\n  \"url\": \"https://remysharp.com\",\n  \"format\": \"txt\"\n}\n```\n\n### gravatar\n\nAnd if you want to show your gravatar, just add the `gravatar` boolean property:\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\",\n  \"url\": \"https://remysharp.com\",\n  \"email\": \"me@mysite.com\",\n  \"gravatar\": true\n}\n```\n\nNote that the gravatar option requires the email property. You also need to check the compatibility of the chosen theme.\n\n### Themes\n\nIf you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. You can use the latest CSS technologies since they are automatically polyfilled. The default theme is simple and clean, but you can add your own as you like.\n\nTo use a theme, add the `theme` property to your `user.json` file, for example:\n\n```json\n{\n  \"copyright\": \"Remy Sharp, https://remysharp.com\",\n  \"url\": \"https://remysharp.com\",\n  \"theme\": \"flesch\"\n}\n```\n\n\u003cdetails\u003e\u003csummary\u003e\u003ch4\u003eBrowse custom themes\u003c/h4\u003e\u003c/summary\u003e\n\n* default - [preview](https://mit-license.org) (by\n  [@remy](https://github.com/remy),\n  [@raphaelbastide](https://github.com/raphaelbastide) \u0026\n  [@evertton](https://github.com/evertton))\n* flesch - [preview](https://jsbin.com/ufefid/3) (by\n  [@flesch](https://github.com/flesch))\n* eula-modern - [preview](https://jsbin.com/ExiVida/1/) (by [@sauerlo](https://github.com/lsauer))\n* afterdark - [preview](https://jsbin.com/ivufon/4) (by [@rmartindotco](https://github.com/rmartindotco))\n* orange - [preview](https://jsbin.com/uzubos/2) (by [@kirbylover4000](https://github.com/kirbylover4000))\n* plaintext - [preview](https://jsbin.com/uzubos/4) (by [@barberboy](https://github.com/barberboy))\n* double-windsor - [preview](https://jsbin.com/uzubos/5/) (by [@desandro](https://github.com))\n* cherry - [preview](https://jsbin.com/ufefid/5/) (by [@mustafa-x](https://github.com/mustafa-x))\n* white cherry - [preview](https://jsbin.com/uzezas/2/) (by [@mustafa-x](https://github.com/mustafa-x))\n* blackwood - [preview](https://jsbin.com/uzezas/) (by [@mustafa-x](https://github.com/mustafa-x))\n* hipster-gray - [preview](https://jsbin.com/ivufon/10) (by [@noformnocontent](https://github.com/noformnocontent))\n* xtansia - [preview](https://jsbin.com/ereren/1/) (by [@tomass1996](https://github.com/tomass1996))\n* magic-mint - [preview](https://jsbin.com/obibot/1/) (by [@ekhager](https://github.com/ekhager))\n* default-dark - [preview](https://jsbin.com/uhagaw/10) (by\n  [@remy](https://github.com/remy),\n  [@raphaelbastide](https://github.com/raphaelbastide) \u0026\n  [@evertton](https://github.com/evertton))\n* black-beauty - [preview](https://jsbin.com/dovivu) (by [@evertton](https://github.com/evertton))\n* silver-style - [preview](https://jsbin.com/erezijI/2) (by [@dev-dipesh](https://github.com/Dev-Dipesh))\n* friendly - [preview](https://jsbin.com/hilula) (by [@evertton](https://github.com/evertton))\n* opensans - [preview](https://jsbin.com/UfepUvah) (by [@pburtchaell](https://github.com/pburtchaell))\n* solarized - [preview](https://jsbin.com/yimax/1) (by [@anmoljagetia](https://github.com/anmoljagetia))\n* willpower - [preview](https://jsbin.com/piheyicoyi/1) (by [@willpowerart](https://github.com/willpowerart))\n* rokkitt - [preview](https://jsbin.com/zudayiqeco/1) (by [@luizpicolo](https://github.com/luizpicolo))\n* mitserrat - [preview](https://jsbin.com/xeqekutuwe/1) (by [@WouterJanson](https://github.com/WouterJanson))\n* material - [preview](https://ahaasler.github.io/mit-license-material-theme/) (by [@ahaasler](https://github.com/ahaasler)). *Available colours: blue gray (default), red, pink, purple, deep purple, indigo, blue, light blue, cyan, teal, green, light green, lime, yellow, amber, orange, deep orange, brown and grey. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `material-deep-orange`.*\n* hmt-blue - [preview](https://jsbin.com/naqorar/) (by [@J2TeaM](https://github.com/J2TeaM))\n* dusk - [preview](https://output.jsbin.com/giqivoh) (by [@georapbox](https://github.com/georapbox))\n* dusk-textured - [preview](https://output.jsbin.com/xakudav) (by [@georapbox](https://github.com/georapbox) and [@robfrawley](https://github.com/robfrawley))\n* 8bits - [preview](https://matricali.github.io/mit-license-8bits-theme/) (by [@matricali](https://github.com/matricali)). *Available colours: monochrome, monochrome-white, monochrome-blue-white, monochrome-green, monochrome-amber. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `8bits-monochrome`.*\n* hacker - [preview](https://tommy.mit-license.org/) (by [@TommyPujol06](https://github.com/TommyPujol06))\n* anon-pro - [preview](https://b.mit-license.org) (by [@bbbrrriiiaaannn](https://github.com/bbbrrriiiaaannn))\n* richienb - [preview](https://richienb.github.io/mit-license-richienb-theme/demo) (by [@Richienb](https://github.com/Richienb)). *Dark variant: `richienb-dark` - [preview](https://richienb.github.io/mit-license-richienb-theme/demo-dark).*\n* tryhtml - [preview](https://output.jsbin.com/cawihuwuku) (by [@abranhe](https://github.com/abranhe))\n* clarity - [preview](https://output.jsbin.com/likezir) (by [@Richienb](https://github.com/Richienb))\n* darkblog - [preview](https://chand1012.dev/mit-license/) (by [@chand1012](https://github.com/chand1012))\n* ubuntu mono - [preview](https://kuameh.github.io/ubuntu-mono-theme-preview/) (by [@Kuameh](https://github.com/Kuameh))\n* purple yam - [preview](https://jade-arinal-banares.github.io/purple-yam-preview-theme/) (by [@Bañares](https://github.com/jade-arinal-banares))\n* dark mineral - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-mineral\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [dark sienna mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-sienna-mineral\u0026avatar=true), [dark gold mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-gold-mineral\u0026avatar=true), [dark coral mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-coral-mineral\u0026avatar=true), [dark beige mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-beige-mineral\u0026avatar=true), [dark aquamarine mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-aquamarine-mineral\u0026avatar=true), [dark aliceblue mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-aliceblue-mineral\u0026avatar=true), [dark blue mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-blue-mineral\u0026avatar=true), [dark mineral borderless](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-mineral-borderless\u0026avatar=true), [dark mediumvioletred mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-mediumvioletred-mineral\u0026avatar=true), [dark royalblue mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-royalblue-mineral\u0026avatar=true), [dark tan mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-tan-mineral\u0026avatar=true), [dark tomato mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-tomato-mineral\u0026avatar=true), [dark seagreen mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=dark-seagreen-mineral\u0026avatar=true)\n* light mineral - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=light-mineral\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [light coral mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=light-coral-mineral\u0026avatar=true), [light tomato mineral](https://axorax.github.io/mit-license-org-themes/preview?theme=light-tomato-mineral\u0026avatar=true), [light mineral borderless](https://axorax.github.io/mit-license-org-themes/preview?theme=light-mineral-borderless\u0026avatar=true)\n* green mineral - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=green-mineral\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* spicy - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=spicy\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [spicy-light](https://axorax.github.io/mit-license-org-themes/preview?theme=spicy-light\u0026avatar=true)\n* github readme - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=github-readme\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [github readme light](https://axorax.github.io/mit-license-org-themes/preview?theme=github-readme-light\u0026avatar=true)\n* excess red - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=excess-red\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* document-dark - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=document-dark\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* cursive - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=cursive\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* 3D - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=3D\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* terminal - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [terminal black and white](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-black-and-white\u0026avatar=true), [terminal black and white reverse](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-black-and-white-reverse\u0026avatar=true), [terminal darkorange](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-darkorange\u0026avatar=true), [terminal firebrick](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-firebrick\u0026avatar=true), [terminal dodgerblue](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-dodgerblue\u0026avatar=true), [terminal darkslateblue](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-darkslateblue\u0026avatar=true), [terminal wheat](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-wheat\u0026avatar=true), [terminal yellow](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-yellow\u0026avatar=true), [terminal fuchsia](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-fuchsia\u0026avatar=true), [terminal olive](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-olive\u0026avatar=true), [terminal pink gradient](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-pink-gradient\u0026avatar=true), [terminal blue gradient](https://axorax.github.io/mit-license-org-themes/preview?theme=terminal-blue-gradient\u0026avatar=true)\n* zebra - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=zebra\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* purple gradient - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=purple-gradient\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* rainbow - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=rainbow\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* unity - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=unity\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available types: [unity lights on](https://axorax.github.io/mit-license-org-themes/preview?theme=unity-lights-on\u0026avatar=true)\n* isolate - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=isolate\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* united colors - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=united-colors\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* official document - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=official-document\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available Types: [official document roboto](https://axorax.github.io/mit-license-org-themes/preview?theme=official-document-roboto\u0026avatar=true)\n* circle - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=circle\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* riri - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=riri\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* midnight - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=midnight\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* boat - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=boat\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* browser code - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=browser-code\u0026avatar=true) (by [@axorax](https://github.com/Axorax))\n* vex red - [preview](https://axorax.github.io/mit-license-org-themes/preview?theme=vex-red\u0026avatar=true) (by [@axorax](https://github.com/Axorax)) *Available Types: [vex blue](https://axorax.github.io/mit-license-org-themes/preview?theme=vex-blue\u0026avatar=true)\n\n\u003c/details\u003e\n\n## Formats \u0026 URLs\n\nThe following types of requests can be made to this project:\n\n* \u003chttps://rem.mit-license.org/\u003e HTML, or the default format specified in\n    the json file (currently none specified on `rem`)\n* \u003chttps://rem.mit-license.org/license.html\u003e HTML\n* \u003chttps://rem.mit-license.org/license.txt\u003e Text\n\nThe URL also supports including a start year:\n\n* \u003chttps://rem.mit-license.org/2009/\u003e will\n    show a license year range of 2009-2016 (2016 being the current year)\n* \u003chttps://rem.mit-license.org/2009-2010\u003e\n    allows me to force the year range\n* \u003chttps://rem.mit-license.org/2009-2010/license.txt\u003e year range of 2009-2010 in plain text\n\nYou can also specify either the `MIT` or `ISC` license in the URL:\n\n* \u003chttps://rem.mit-license.org/+MIT\u003e will\n    show the MIT License (default)\n* \u003chttps://rem.mit-license.org/+ISC\u003e\n    shows the ISC license instead\n\nFinally, the URL also supports pinning the year\n\n* \u003chttps://rem.mit-license.org/@2009\u003e\n    this is useful for when your software copyright should expire ([as discussed here](https://github.com/remy/mit-license/issues/771))\n\n## Ways to contribute\n\nAside from code contributions that make the project better, there are a few other specific ways that you can contribute to this project.\n\nDevelopment contributions from:\n\n* [remy](https://github.com/remy)\n* [batuhanicoz](https://github.com/batuhanicoz)\n* [georgebashi](https://github.com/georgebashi)\n* [mathiasbynens](https://github.com/mathiasbynens)\n* [evertton](https://github.com/evertton)\n* [Richienb](https://github.com/Richienb)\n\n**SSL and wildcard DNS is supported by [CloudFlare](https://www.cloudflare.com) - thank you 🙏💙**\n\n### 1. Donate domain years\n\nI host the domain with namecheap.com and yearly renewal is $9.69 per year. If you want to contribute a year, send me a message and I'll add the years on.\n\nOf course, I'll do my best to continue running the domain and hosting, but this is your chance to contribute to the community project.\n\nDomain contributions:\n\n* [remy](https://github.com/remy) - 2011-2012\n* [barberboy](https://github.com/barberboy) - 2012-2013\n* [paulirish](https://github.com/paulirish) - 2013-2014\n* [batuhanicoz](https://github.com/batuhanicoz) - 2014-2015\n* [buritica](https://github.com/buritica) - 2015-2016\n* [adamstrawson](https://github.com/adamstrawson) - 2016-2018 (2 years)\n* [keithamus](https://github.com/keithamus) - 2018-2026 (8 years)\n* [pmuellr](https://github.com/pmuellr) - 2026-2027\n* [danielknell](https://github.com/danielknell) - 2027-2029 (2 years)\n* [barberboy](https://github.com/barberboy) - 2029-2030\n* [mostly-magic](https://github.com/mostly-magic) - 2030-2032\n\n_Please note that the whois says 2021 as you can only have 10 active registered years with ICANN - but the domain is set to auto-renew, so it's all good :)_\n\n### 2. Hosting\n\nFor the first 5 years, mit-license.org was hosted on my own dedicated server, but I've now moved to Heroku and am paying a monthly fee. If you would like to donate **[please donate here](https://www.paypal.me/rem)** include a message and I will add your name to the credit. Hosting currently costs $7 per month if you want to donate in months or years, it's gratefully received ❤\n\nHosting contributions:\n\n* [remy](https://github.com/remy) - 2011-2016 Apr...\n* [therebelrobot](https://github.com/therebelrobot) 1 month\n* [mkody](https://github.com/mkody) 2 months\n* [dan9186](https://github.com/dan9186) 1 year\n* Kristin Anthony 1 year\n* [zhengyi-yang](https://github.com/zhengyi-yang) 5 months\n* [catodd](https://github.com/catodd) 2 months\n* [lrz0](https://github.com/lrz0) 1 month\n* [matricali](https://github.com/matricali) 3 months\n* [youchenlee](https://github.com/youchenlee) 12 months\n* [ramsey](https://github.com/ramsey) 12 months\n* [rmm5t](https://github.com/rmm5t) 1 month\n* [wrainaud](https://github.com/wrainaud) 3 months\n* [romkey](https://github.com/romkey) 12 months\n* [kylewelsby](https://github.com/kylewelsby) 6 months\n* [wiesner](https://github.com/wiesner) 1 month\n* [rajinwonderland](https://github.com/rajinwonderland) 3 months\n* [miszo](https://github.com/miszo) 1 month\n* [Bisa](https://github.com/Bisa) 3 months\n* [you?](https://www.paypal.me/rem)\n\n### 3. A lick of paint\n\nI'm a developer, I seem only capable of _grey_! If you're a designer and want to contribute a decent lick of paint on the project that would be super. Just create a new theme and send me a pull request.\n\n## License\n\nAnd of course:\n\nMIT: \u003chttps://rem.mit-license.org\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremy%2Fmit-license","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremy%2Fmit-license","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremy%2Fmit-license/lists"}