Skip to content

Instantly share code, notes, and snippets.

View lokeshsoni's full-sized avatar
🏠
Working from home

Lokesh Soni lokeshsoni

🏠
Working from home
View GitHub Profile
@lokeshsoni
lokeshsoni / bash-cheatsheet.sh
Created December 30, 2017 06:14 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@lokeshsoni
lokeshsoni / nlp.py
Created April 10, 2017 16:18
checking stop words out of nlp.vocab spacy
for word in nlp.vocab:
if nlp.vocab[word.orth_].is_stop:
print(word.orth_)