├── README.md └── data.json /README.md: -------------------------------------------------------------------------------- 1 | # Personal API 2 | 3 | ## Wut 4 | 5 | An application programming interface for @mrmrs. Aggregated data from a variety of sources. Read-only. 6 | 7 | # License 8 | 9 | The MIT License (MIT) 10 | 11 | Copyright (c) 2015 @mrmrs 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining a copy 14 | of this software and associated documentation files (the "Software"), to deal 15 | in the Software without restriction, including without limitation the rights 16 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 17 | copies of the Software, and to permit persons to whom the Software is 18 | furnished to do so, subject to the following conditions: 19 | 20 | The above copyright notice and this permission notice shall be included in 21 | all copies or substantial portions of the Software. 22 | 23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 24 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 25 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 26 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 27 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 28 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 29 | THE SOFTWARE. 30 | 31 | 32 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": { 3 | "first": "Adam", 4 | "middle": "Charles", 5 | "last": "Morse" 6 | }, 7 | "birthday": "18-04-1984", 8 | "social": [ 9 | { 10 | "title": "twitter", 11 | "url": "http://twitter.com/mrmrs_" 12 | }, 13 | { 14 | "title": "github", 15 | "url": "http://github.com/mrmrs" 16 | }, 17 | { 18 | "title": "dribbble", 19 | "url": "http://dribbble.com/mrmrs" 20 | }, 21 | { 22 | "title": "instagram", 23 | "url": "http://instagram.com/mrmrs_" 24 | }, 25 | { 26 | "title": "soundcloud", 27 | "url": "http://soundcloud.com/mr_mrs" 28 | }, 29 | { 30 | "title": "exposure", 31 | "url": "http://mrmrs.exposure.com/" 32 | }, 33 | { 34 | "title": "flickr", 35 | "url": "http://flickr.com/photos/heyitsadam" 36 | } 37 | ], 38 | "homepage": "http://mrmrs.cc", 39 | "sites": [ 40 | { 41 | "title": "Mrs Jxn", 42 | "url": "http://mrsjxn.com", 43 | "tags": ["jxnblk", "music", "post future"] 44 | }, 45 | { 46 | "title": "Ill Lillies", 47 | "url": "http://mrmrs.github.io/ill", 48 | "tags": ["ill lillies", "music", "arthouse"] 49 | }, 50 | { 51 | "title": "Mrmrs Beats", 52 | "url": "http://mrmrs.io/beats", 53 | "tags": ["mrmrs", "music", "electronic"] 54 | }, 55 | { 56 | "title": "Colors", 57 | "subtitle": "A better color palette for the web", 58 | "url": "http://clrs.cc", 59 | "tags": ["css", "oocss", "design", "colors"] 60 | }, 61 | { 62 | "title": "CSS Stats", 63 | "subtitle": "Visualizing your css", 64 | "url": "http://cssstats.com", 65 | "tags": ["styleguide", "css", "oocss", "design"] 66 | }, 67 | { 68 | "title": "Btns", 69 | "subtitle": "A simple css module for creating ", 70 | "url": "http://clrs.cc", 71 | "tags": ["css", "oocss", "design", "open source", "buttons"] 72 | }, 73 | { 74 | "title": "Tachyons", 75 | "subtitle": "The fastest css framework in the world", 76 | "url": "http://clrs.cc", 77 | "tags": ["css", "oocss", "design", "open source", "design", "ui"] 78 | }, 79 | { 80 | "title": "CSS Uncut", 81 | "subtitle": "The entire css language in one file.", 82 | "url": "http://github.com/mrmrs/css-uncut", 83 | "tags": ["css", "oocss", "design", "open source", "design", "ui"] 84 | }, 85 | { 86 | "title": "Pesticide", 87 | "subtitle": "Kill your css layout bugs quickly and easily.", 88 | "url": "http://pesticide.io", 89 | "repo": "http://github.com/mrmrs/pesticide", 90 | "tags": ["css", "debugging", "open source", "browser extension"] 91 | } 92 | ], 93 | "reading": [ 94 | { 95 | "title": "title", 96 | "author": "name", 97 | "url": "name", 98 | "tags": [], 99 | } 100 | ], 101 | "listening": [ 102 | { 103 | "title": "title", 104 | "artist": "name", 105 | "url": "name", 106 | "tags": [], 107 | } 108 | ] 109 | } 110 | --------------------------------------------------------------------------------