Scientific categorization with basic descriptions
HUMAINE proposal for EARL (Emotion Annotationand Representation Language)
- Negative and forceful
| // 16 + 24 @ 1/2 | |
| // 15 + 20 @ 1/2 | |
| // 16 + 20 @ 1/2 | |
| scale = { | |
| main: 16, | |
| secondary: 20, | |
| fraction: 1/2, | |
| measurements: [], | |
| create: function(greater, lesser) { |
| <?php | |
| function obrazki($tag) { | |
| $dir = './images/foto'; | |
| if (is_dir($dir)) { | |
| if ($dir_open = opendir($dir)) { | |
| while ($file = readdir($dir_open)) { | |
| if ($file == "." || $file == "..") continue; | |
| $file_tag = substr($file,0,strlen($file)-7); | |
| if ($file_tag == $tag) $tab[] = $file; | |
| } |
| // Fisher-Yates shuffle algorithm: http://bost.ocks.org/mike/shuffle/ | |
| function shuffle(array) { | |
| var m = array.length, t, i; | |
| // while there remain elements to shuffle | |
| while (m) { | |
| // pick a remaining element | |
| i = Math.floor(Math.random() * m--); | |
| // and swap it with the current element | |
| t = array[m]; | |
| array[m] = array[i]; |
| <table data-comprowssor> | |
| <caption>Middle Jurassic sections</caption> | |
| <thead> | |
| <tr> | |
| <th>Name</th> | |
| <th>Period <small>[Mya]</small></th> | |
| <th>Duration <small>[My]</small></th> | |
| <th>Species</th> | |
| </tr> | |
| </thead> |
| # Your snippets | |
| # | |
| # Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
| # expand the prefix into a larger code block with templated values. | |
| # | |
| # You can create a new snippet in this file by typing "snip" and then hitting tab. | |
| #------------------------------------------------------------------------------- | |
| # CoffeScript |
| /* | |
| +-----------------------------------------------------------------+ | |
| | Created by Chirag Mehta - http://chir.ag/projects/ntc | | |
| |-----------------------------------------------------------------| | |
| | ntc js (Name that Color JavaScript) | | |
| +-----------------------------------------------------------------+ | |
| All the functions, code, lists etc. have been written specifically | |
| for the Name that Color JavaScript by Chirag Mehta unless otherwise |