Skip to content

Instantly share code, notes, and snippets.

View parsa-asgari's full-sized avatar

Parsa Asgari parsa-asgari

View GitHub Profile
@parsa-asgari
parsa-asgari / cyb
Created September 18, 2018 15:17 — forked from b-coimbra/cyb
cyberpunk learning resources
**LEARNING**
http://cybrary.it/
http://n0where.net/
http://www.offensive-security.com/metasploit-unleashed
http://resources.infosecinstitute.com/
http://www.windowsecurity.com/articles-tutorials/
http://www.sans.org/reading-room/
https://www.corelan.be/index.php/articles/
http://opensecuritytraining.info/Training.html
@parsa-asgari
parsa-asgari / spark_numpy.py
Created November 17, 2018 08:23 — forked from koverholt/spark_numpy.py
Simple Numpy example in Spark
import numpy as np
from pyspark import SparkContext
from pyspark import SparkConf
conf = SparkConf()
conf.setMaster("spark://<HOSTNAME>:7077")
conf.setAppName("NumpyMult")
sc = SparkContext(conf=conf)