Skip to content

Instantly share code, notes, and snippets.

View kannandreams's full-sized avatar
🎯
Focusing

Kannan Kalidasan kannandreams

🎯
Focusing
View GitHub Profile
@kannandreams
kannandreams / tweet_image_dumper.py
Created February 17, 2018 19:00 — forked from freimanas/tweet_image_dumper.py
Get twitter user's photo url's from tweets - download all images from twitter user
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
import sys
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
@kannandreams
kannandreams / 00-CreatingSequenceFile
Created May 27, 2016 05:09 — forked from airawat/00-CreatingSequenceFile
Hadoop Sequence File - Sample program to create a sequence file (compressed and uncompressed) from a text file, and another to read the sequence file.
This gist demonstrates how to create a sequence file (compressed and uncompressed), from a text file.
Includes:
---------
1. Input data and script download
2. Input data-review
3. Data load commands
4. Mapper code
5. Driver code to create the sequence file out of a text file in HDFS
6. Command to run Java program
@kannandreams
kannandreams / devops_training.txt
Created March 2, 2016 09:13 — forked from ssmythe/devops_training.txt
Training materials for DevOps
======
Videos
======
DevOps
What is DevOps? by Rackspace - Really great introduction to DevOps
https://www.youtube.com/watch?v=_I94-tJlovg
Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept)
@kannandreams
kannandreams / ScalaTest_ReferenceCard.md
Last active September 26, 2018 19:04
ScalaTest Quick Reference

#ScalaTest Quick Reference

Contents are noted from the Oreilly Book "Testing in Scala" by Daniel Hinojosa. I recommend this book to learn ScalaTest in detail.

Introduction :

  • ScalaTest and Specs2 are two most dominant testing frameworks for Scala around today.
  • ScalaTest and Specs2 borrowed ideas from Cucumber.
  • Cucumber is BDD ( Behavior-driven development ) model.