Skip to content

Instantly share code, notes, and snippets.

View lsantana486's full-sized avatar

Luis Santana lsantana486

View GitHub Profile
@xeoncross
xeoncross / KJV_Spacy_.idea_KJV_Spacy.iml
Created September 14, 2017 17:55 — forked from denjn5/KJV_Spacy_.idea_KJV_Spacy.iml
Topic Modeling with Spacy and Gensim
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="jdk" jdkName="Python 3.5.2 (~/anaconda/bin/python)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="TestRunnerService">
<option name="PROJECT_TEST_RUNNER" value="Unittests" />
</component>
@LucaLanziani
LucaLanziani / encrypt.html
Last active September 23, 2023 07:50
AES encryption, equivalent implementation in python (PyCrypto) and Javascript (CryptoJS)
<html>
<head>
<script src="/javascripts/CryptoJS/rollups/aes.js"></script>
<script src="/javascripts/CryptoJS/components/mode-cfb-min.js"></script>
<script src="/javascripts/encrypt.js"></script>
</head>
<body>
</body>
</html>