This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: "Avenir Next", Helvetica, Arial, sans-serif; | |
padding:1em; | |
margin:auto; | |
max-width:52em; | |
background:#FFFAFA; | |
} | |
h1, h2, h3, h4, h5, h6 { | |
font-weight: bold; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Step 1; table_name = sentwn | |
CREATE TABLE `sentiwn` ( | |
`pos` varchar(64) DEFAULT NULL, | |
`id` varchar(32) DEFAULT NULL, | |
`p` int(11) DEFAULT NULL, | |
`n` int(11) DEFAULT NULL, | |
`synset` varchar(64) DEFAULT '', | |
`gloss` text | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
NewerOlder