Skip to content

Instantly share code, notes, and snippets.

View kevincobain2000's full-sized avatar

Pulkit Kathuria kevincobain2000

View GitHub Profile
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;
@kevincobain2000
kevincobain2000 / sentiwn-to-mysql.sql
Last active December 27, 2015 20:39
senti word net to mysql
-- 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;