Skip to content

Instantly share code, notes, and snippets.

View pa1pal's full-sized avatar

Pawan Pal pa1pal

View GitHub Profile
@pa1pal
pa1pal / shots
Last active September 27, 2020 09:01
{
"total":100,
"count":10,
"offset":1,
"limit":10,
"results":[
{
"creator":{
"name":"viaks",
"user_name":"vikky007"

GSoC 2017 Phimpme Android, Pawan Pal - FOSSASIA

This Summer, I worked on FOSSASIA's Phimpme Android for a complete all in one Open Source Image app. The app contains the gallery where user can browse his/ her local directory, Image editor with optimized filters and other transformation and tuning features. Also you can share images to multiple platform without their standalone app installed in your phone.

  • Browse the local gallery inside the app with folder and all photos mode. Copy, move to images, add description the images.
  • Edit images with various advance filters, optimized performace using OpenCV library.
  • Enhance contrast, hue, satur, temp, tint and sharpness of the image.
  • Crop and rotate feature from Transform section.
  • Apply different stickers of facial, express, objects, comments, wishes, emojis, hashtag
[
{
"id": "4",
"photo": "https://dl.dropboxusercontent.com/u/231329/xyzreader_data/images/p004.jpg",
"thumb": "https://dl.dropboxusercontent.com/u/231329/xyzreader_data/thumbs/p004.jpg",
"aspect_ratio": 1.49925,
"author": "Carl Sagan",
"title": "Mysteries of the Universe Solved",
"published_date": "2013-06-20T00:00:00.000Z",
[
{
"name": "Chutti",
"id": 1915
},
{
"name": "Rajan",
"id": 1919
},
{
@pa1pal
pa1pal / result.py
Created March 14, 2016 11:24
This is a script checks for Result of DU
#This is a script checks for Result of DU
import urllib2
import re
import os
import time
while 1:
html_content = urllib2.urlopen('http://du.ac.in/du/index.php?page=students-welfare').read() #Change url as per you result website
matches = re.findall('B.Tech. (I.T. and Mathematical) CIC :- V-Semester',html_content);
if len(matches) == 0:
@pa1pal
pa1pal / guass.cpp
Created September 29, 2015 19:12
Guass elimination method
#include<iostream>
#include<cmath>
using namespace std;
/*
Function to print the matrix
*/
void print(double **a, int unk, int eq)
{
//Build system to run c++ program on sublime text on Windows
{
"windows":
{
"cmd": ["g++", "$file_name","-o", "${file_base_name}.exe", "-lm", "-Wall", "&","start", "${file_base_name}.exe"]
},
"selector": "source.c++",
"shell": true,
"working_dir": "${file_path}"
}