Skip to content

Instantly share code, notes, and snippets.

View cprakashagr's full-sized avatar
🧨
)))))) @#$%^&*^%$# ((((((

Chandra Prakash cprakashagr

🧨
)))))) @#$%^&*^%$# ((((((
View GitHub Profile
@cprakashagr
cprakashagr / Meteor.java
Last active January 4, 2016 14:21
The Meteor.java file can be used for social accounts login and signup. The file is made as an enhancement for the [Android-DDP] (https://github.com/delight-im/Android-DDP) repository. The users need to override the server side Accounts Handler which is shown in the file named, "socialAccountsLoginHandler.js". A working example is here: https://g…
/*
* modified by: cprakashagr
* date: Dec 01, 2015
* comments: registerWithGoogle method added for Google Plus Login in Android DDP Android Client
* Need to override the LoginHandler at calling the remote method login.
* For details, check the "socialAccountsLoginHandler.js" at server package.
*
* registerWithLinkedIn method added for Linked In Login in Android DDP Android Client
* Need to override the LoginHandler at calling the remote method login.
* For details, check the "socialAccountsLoginHandler.js" at server package.
@cprakashagr
cprakashagr / summary_tool.py
Last active March 4, 2016 10:02 — forked from shlomibabluki/summary_tool.py
A simplistic Natural Language Processing tool in Python to minify the texts from English based paragraphs.
# coding=UTF-8
from __future__ import division
import re
# This is a naive text summarization algorithm
# Created by Shlomi Babluki
# April, 2013
class SummaryTool(object):