Here is a great blog that shows some practical business using Python.
This post is about how to use Python to read from Google Form where I can image it could be a good resource for crowd sourcing.
Link here
Here is a great blog that shows some practical business using Python.
This post is about how to use Python to read from Google Form where I can image it could be a good resource for crowd sourcing.
Link here
SHA1: Secure Hash Algorithm 1
Salt: Randomly generated number, “the password of password”
hashcat: a free password recovery tool that comes with Kali Linux.
The latest time I saw SHA1 is with iPython. You can secure your IPython server by adding a password, where you can generate using the passwd() function and store that into your config file, more.
The generated hash is supposed to be in the format of `hash_algorithm:salt:passphrase_hash`. And we can see the salt is 12 characters long and the passphrase hash is 40 characters long.
Then I start thinking, can I use hashcat to recover my passcode if I forget the password? I first pass the hash code to hashid, which is an application that can give you a best guess which type of hash method the target is encrypted in. After I stripped off the salt, the hashid recognizes it should be SHA1, which is exactly the hash type how it was generated.
Then the next step is how to use hashcat to recover the code.
How hashcat works is you have to provision a list of passwords and a set of rules that hashcat need to follow, Then hashtag will leverage the computing power of GPU to quickly recover the password if the combo of initial list and rules will cover the target. To learn more about hashcat, here is a decent tutorial to get you started.
For the POC, I will just provide a list containing the password `datafireball` and use the straight attach mode.
Based on the documentation about hashcat here, I think salt:pass should be matched to 120, or at least one of 110, 120, 130 and 140. However, neither of them works and they all prompted the error: separator unmatched.
The interesting thing is after I switched the order of salt and phrase_hash, then the hashcat works using mode 110 (sha1($pass.$salt)).
Anyway, it is a fun time getting to know hashcat and sha1. Still need to figure out how the hashcode is generated using salt with password and looking forward knowing more about Kali Linux.
Mohammad Fawad Alam from SAS wrote a iPython notebook to analyze the server log using pyspark.
His code is fairly clean and he also mentioned a few things that I have never heard of before.
Have you ever realized there are tons of build in libraries come with Python? Have you realized that you only happen to know very few of them? Have you ever wanted to learn more about the rest but it turned out that the documentation is meaningless because you are a “handy” people because you want to see examples?
Doug has a website called pymotw.com/2 where you can find the code examples for rarely used libraries, like this one about shlex (simple lexical analysis).
If you feel better holding a book in your hand, here is a book that you can buy.
Today I came across a Python library that I need to play around and learn how to use it, however, I am using my GF’s Windows desktop where Python interpreter is not installed at all, let alone any IDE.
That is where I came across Tutorialspoint. And they provided the functionality of online terminal and online IDE, which is called codingground
In my point of view, if you are really new to a certain area or programming language, this might be the easiest way to start writing your hello world example and gain some confidence 🙂
Here is the RDD module in pyspark
import copy
import operator
import shlex
import warnings
import heapq
import bisect
from functools import reduce
from itertools impoprt imap as map, ifilter as filter
If you have already decided to learn Scala, you had better well plan your time and study Scala in the right way.
Believe it or not, the designer of Scala – Martin Odersky actually have a whole series of tutorials on Coursera where you can learn Scala at your pace.
I watched the first video and my rating will be 5 out of 5.
The explanation if very clear and all the contents and software set up are fairly up2date. Generally, it is a fun time.
What I have done today:
(1) subscribe to the Scala class
(2) Installed Scala, Sbt, JDK8, Scala-Eclipse and typesafe on my Windows machine
(3) created my first scala object and the interactive Worksheet.
(4) Call-by-name and Call-by-value will have their own benefits in certain scenario.
AWS EMR
1. spot instance
pricing
took me 20 minutes to start the cluster
2. hue
Dynamic Port forwarding
http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-connect-master-node-proxy.html
3. cluster group – master, core, task
#install anaconda python
mkdir ~/bwang
cd ~/bwang
wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.2.0-Linux-x86_64.sh
#!/bin/bash
for i in `seq 1987 2008`
do
wget “http://stat-computing.org/dataexpo/2009/${i}.csv.bz2”
done
bzip2 -d *