├── media └── the_phoenix_exultant_by_perinigricon-d4t6bf4.png ├── .gitattributes ├── .gitignore └── DeckX.json /media/the_phoenix_exultant_by_perinigricon-d4t6bf4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stvad/DeckX/master/media/the_phoenix_exultant_by_perinigricon-d4t6bf4.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /DeckX.json: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "Deck", 3 | "children": [], 4 | "crowdanki_uuid": "09ad0840-875a-11e6-ada5-28187845b040", 5 | "deck_config_uuid": "a69dd698-6d5b-11e6-adf3-8c705a50cbf0", 6 | "deck_configurations": [ 7 | { 8 | "__type__": "DeckConfig", 9 | "autoplay": true, 10 | "crowdanki_uuid": "a69dd698-6d5b-11e6-adf3-8c705a50cbf0", 11 | "dyn": false, 12 | "lapse": { 13 | "delays": [ 14 | 10 15 | ], 16 | "leechAction": 0, 17 | "leechFails": 8, 18 | "minInt": 1, 19 | "mult": 0.0 20 | }, 21 | "maxTaken": 60, 22 | "name": "Default", 23 | "new": { 24 | "bury": true, 25 | "delays": [ 26 | 1, 27 | 10 28 | ], 29 | "initialFactor": 2500, 30 | "ints": [ 31 | 1, 32 | 4, 33 | 7 34 | ], 35 | "order": 1, 36 | "perDay": 20, 37 | "separate": true 38 | }, 39 | "replayq": true, 40 | "rev": { 41 | "bury": true, 42 | "ease4": 1.3, 43 | "fuzz": 0.05, 44 | "ivlFct": 1.0, 45 | "maxIvl": 36500, 46 | "minSpace": 1, 47 | "perDay": 100 48 | }, 49 | "timer": 0 50 | } 51 | ], 52 | "desc": "", 53 | "dyn": 0, 54 | "extendNew": 10, 55 | "extendRev": 50, 56 | "media_files": [], 57 | "mid": 1356407517832, 58 | "name": "Psychology", 59 | "note_models": [ 60 | { 61 | "__type__": "NoteModel", 62 | "crowdanki_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 63 | "css": ".card {\n font-family: arial;\n font-size: 20px;\n text-align: center;\n color: black;\n background-color: white;\n}\n\n.cloze {\n font-weight: bold;\n color: blue;\n}", 64 | "flds": [ 65 | { 66 | "font": "Arial", 67 | "media": [], 68 | "name": "Text", 69 | "ord": 0, 70 | "rtl": false, 71 | "size": 20, 72 | "sticky": false 73 | }, 74 | { 75 | "font": "Arial", 76 | "media": [], 77 | "name": "Extra", 78 | "ord": 1, 79 | "rtl": false, 80 | "size": 20, 81 | "sticky": false 82 | }, 83 | { 84 | "font": "Arial", 85 | "media": [], 86 | "name": "Source", 87 | "ord": 2, 88 | "rtl": false, 89 | "size": 20, 90 | "sticky": true 91 | } 92 | ], 93 | "latexPost": "\\end{document}", 94 | "latexPre": "\\documentclass[12pt]{article}\n\\special{papersize=3in,5in}\n\\usepackage{amssymb,amsmath}\n\\pagestyle{empty}\n\\setlength{\\parindent}{0in}\n\\begin{document}\n", 95 | "name": "Cloze [extra, source]", 96 | "sortf": 0, 97 | "tags": [ 98 | "bash", 99 | "link", 100 | "ln" 101 | ], 102 | "tmpls": [ 103 | { 104 | "afmt": "{{cloze:Text}}\n
\n{{Extra}}\n
\n{{Source}}", 105 | "bafmt": "", 106 | "bqfmt": "", 107 | "did": null, 108 | "name": "Cloze", 109 | "ord": 0, 110 | "qfmt": "{{cloze:Text}}" 111 | } 112 | ], 113 | "type": 1, 114 | "vers": [] 115 | } 116 | ], 117 | "notes": [ 118 | { 119 | "__type__": "Note", 120 | "data": "", 121 | "fields": [ 122 | "The {{c1::Barnum effect}}, also called the {{c2::Forer effect}}.", 123 | "", 124 | "https://en.wikipedia.org/wiki/Barnum_effect" 125 | ], 126 | "flags": 0, 127 | "guid": "Q:)4`gXD$^", 128 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 129 | "tags": [ 130 | "Psychology", 131 | "effect", 132 | "rationality" 133 | ] 134 | }, 135 | { 136 | "__type__": "Note", 137 | "data": "", 138 | "fields": [ 139 | "{{c1::The Barnum effect}} is the observation about the fact, that individuals will give {{c2::high accuracy ratings to descriptions of their personality that supposedly are tailored specifically for them}}, but are in fact {{c3::vague and general enough to apply to a wide range of people.}}", 140 | "", 141 | "https://en.wikipedia.org/wiki/Barnum_effect" 142 | ], 143 | "flags": 0, 144 | "guid": "@@cv4Rqn^", 145 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 146 | "tags": [ 147 | "Psychology", 148 | "effect", 149 | "rationality" 150 | ] 151 | }, 152 | { 153 | "__type__": "Note", 154 | "data": "", 155 | "fields": [ 156 | "{{c1::This Barnum effect}} can provide a partial explanation for the {{c2::widespread acceptance of some beliefs and practices,}} such as:
{{c3::1) astrology;}}
{{c4::2) fortune telling;}}
{{c5::3) graphology;}}
{{c6::4) aura reading; }}
and {{c7::some types of personality tests}}.
", 157 | "", 158 | "https://en.wikipedia.org/wiki/Barnum_effect" 159 | ], 160 | "flags": 0, 161 | "guid": "y]9{mLKZ}H", 162 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 163 | "tags": [ 164 | "Psychology", 165 | "effect", 166 | "rationality" 167 | ] 168 | }, 169 | { 170 | "__type__": "Note", 171 | "data": "", 172 | "fields": [ 173 | "The Barnum effect can be described as a more specific case of {{c1::subjective validation phenomenon}}.", 174 | "", 175 | "https://en.wikipedia.org/wiki/Barnum_effect" 176 | ], 177 | "flags": 0, 178 | "guid": "c1C(J+tp*#", 179 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 180 | "tags": [ 181 | "Psychology", 182 | "effect", 183 | "rationality" 184 | ] 185 | }, 186 | { 187 | "__type__": "Note", 188 | "data": "", 189 | "fields": [ 190 | "{{c1::Subjective validation}} occurs when {{c2::two unrelated or even random events}} are {{c3::perceived to be related}} because a {{c4::belief}}, {{c5::expectation}}, or {{c6::hypothesis}} demands a relationship.", 191 | "", 192 | "https://en.wikipedia.org/wiki/Barnum_effect" 193 | ], 194 | "flags": 0, 195 | "guid": "v&s_-3cZ[u", 196 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 197 | "tags": [ 198 | "Psychology", 199 | "effect", 200 | "rationality" 201 | ] 202 | }, 203 | { 204 | "__type__": "Note", 205 | "data": "", 206 | "fields": [ 207 | "{{c1::Example of subjective validation phenomenon:}} people tend to {{c2:: actively seek a correspondence}} between {{c3::their perception of their personality}} and the {{c4::contents of a horoscope.}}", 208 | "", 209 | "https://en.wikipedia.org/wiki/Barnum_effect" 210 | ], 211 | "flags": 0, 212 | "guid": "deq,
{{c3::1) The subject believes that the analysis applies only to them, and thus applies their own meaning to the statements.}}
{{c2::2) The subject believes in the authority of the evaluator.}}
{{c1::3) The analysis lists mainly positive traits.}}
", 225 | "", 226 | "https://en.wikipedia.org/wiki/Barnum_effect" 227 | ], 228 | "flags": 0, 229 | "guid": "ew;dN7Y_u+", 230 | "note_model_uuid": "b999bc9a-7ce6-11e6-9d08-8c705a50cbf0", 231 | "tags": [ 232 | "Psychology", 233 | "effect", 234 | "rationality" 235 | ] 236 | } 237 | ] 238 | } --------------------------------------------------------------------------------