Skip to content

Instantly share code, notes, and snippets.

View pramodthammaiah's full-sized avatar

Pramod Thammaiah pramodthammaiah

View GitHub Profile
@jonathanhculver
jonathanhculver / Default.sublime-theme
Created July 13, 2013 21:36
Dark theme (twilight) for sublime text folder sidebar. Click Browse Packages and add file named "Default.sublime-theme" to Packages/User
[
{
"class": "sidebar_container",
// right border
"layer0.tint": [84,84,84],
"layer0.opacity": 1.0,
"layer0.draw_center": false,
"layer0.inner_margin": [0, 0, 1, 0],
"content_margin": [0, 0, 1, 0]
},
# coding=UTF-8
import nltk
from nltk.corpus import brown
# This is a fast and simple noun phrase extractor (based on NLTK)
# Feel free to use it, just keep a link back to this post
# http://thetokenizer.com/2013/05/09/efficient-way-to-extract-the-main-topics-of-a-sentence/
# Create by Shlomi Babluki
# May, 2013