Skip to content

Instantly share code, notes, and snippets.

View Mantej-Singh's full-sized avatar
💭
~Life is Beautiful~

Mantej Singh Dhanjal Mantej-Singh

💭
~Life is Beautiful~
View GitHub Profile
Component Price Link
Crucial 8GB Single DDR4 2400 $31.99 https://www.amazon.com/gp/product/B01BIWKP58/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1
Seagate 2.5 HDD NA NA
@Mantej-Singh
Mantej-Singh / new_components.csv
Last active August 3, 2020 12:51
component list
Component Price Link
AMD Ryzen 3 3200G $99.99 https://www.amazon.com/gp/product/B07STGHZK8/ref=ppx_yo_dt_b_asin_title_o01_s00?ie=UTF8&psc=1
Thermal Pad $12.95 https://www.amazon.com/gp/product/B07CK9SHZG/ref=ppx_yo_dt_b_asin_title_o03_s01?ie=UTF8&psc=1
Crucial 16GB DDR4 2400 SODIMM $64.40 https://www.amazon.com/gp/product/B019FRBHZ0/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1
ASRock DESKMINI A300W $153.99 https://www.newegg.com/asrock-deskmini-a300w/p/N82E16856158064?Item=N82E16856158064
Crucial P1 500GB NVMe $56.99 https://www.newegg.com/crucial-p1-500gb/p/N82E16820156200?Item=N82E16820156200
@Mantej-Singh
Mantej-Singh / example1.py
Created January 6, 2017 18:13 — forked from onyxfish/example1.py
Basic example of using NLTK for name entity extraction.
import nltk
with open('sample.txt', 'r') as f:
sample = f.read()
sentences = nltk.sent_tokenize(sample)
tokenized_sentences = [nltk.word_tokenize(sentence) for sentence in sentences]
tagged_sentences = [nltk.pos_tag(sentence) for sentence in tokenized_sentences]
chunked_sentences = nltk.batch_ne_chunk(tagged_sentences, binary=True)