50% - votes_percentage | constituency | state |
---|---|---|
20.71 | Baramulla | Jammu & Kashmir |
17.83 | Anantnag | Jammu & Kashmir |
17.53 | Aurangabad | Maharashtra |
17.25 | Kokrajhar | Assam |
16.68 | Kishanganj | Bihar |
16.15 | Nabarangpur | Odisha |
16.06 | Ladakh | Jammu & Kashmir |
15.64 | Koraput | Odisha |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h2>Privacy Policy</h2> | |
<p>Hackesta built the Pearls of Speech as a free Google Assistant Action and Facebook Messenger Bot. This SERVICE is provided by Hackesta at no cost and is intended | |
for use as is.</p> | |
<p>This page is used to inform website visitors regarding our policies with the collection, use, and | |
disclosure of Personal Information if anyone decided to use our Service.</p> | |
<p>If you choose to use our Service, then you agree to the collection and use of information in | |
relation with this policy. The Personal Information that we collect are used for providing and | |
improving the Service. We will not use or share your information with anyone except as described |
Contact: [email protected], [email protected]
Website: haideralipunjabi.com, hackesta.org
Blog: Blog, Dev.to,Medium
Twitter: HAliPunjabi
LinkedIn: haideralipunjabi
Instagram: haideralipunjabi
Github: haideralipunjabi
500px: haideralipunjabi
- Kusu Taawan
- Che ma dolmut
- Katihaz Chuv?
- Paksa Baya
- Shakh ma chu kyeh?
- Yi chaz theek?
- Fikri torah kyeh?
- Kyeh chune parwway
- Ye chu lokut masle
- Ye chuv tohi mubarak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h2>Privacy Policy</h2> | |
<p>Hackesta built the Tweet2Pic app as a free app. This SERVICE is provided by Hackesta at no cost and is intended | |
for use as is.</p> | |
<p>This page is used to inform website visitors regarding our policies with the collection, use, and | |
disclosure of Personal Information if anyone decided to use our Service.</p> | |
<p>If you choose to use our Service, then you agree to the collection and use of information in | |
relation with this policy. The Personal Information that we collect are used for providing and | |
improving the Service. We will not use or share your information with anyone except as described |
A small python script used to generate Atom Icons inspired from team logos of Football / Soccer leagues.
Check out the atom-icons project for these and other such icons for Atom
Replace URL
and prefix
with the following to generate icons for different leagues
League | URL | prefix |
---|---|---|
English Premier League | https://teamcolorcodes.com/premier-league-color-codes/ | epl_ |
La Liga | https://teamcolorcodes.com/soccer/laliga-color-codes/ | laliga_ |
A small python script used to generate Atom Icons inspired from Flags of different countries.
Check out the atom-icons project for these and other such icons for Atom
You can find the flagColors.json file here
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rest_framework.views import APIView | |
from rest_framework.response import Response | |
import requests | |
import os | |
import simplejson | |
# Simple Django View to return number of each language used by a user in their Github Repositories (pulic & private) | |
# To use, add environment variables, GITHUB_USERNAME = <your-github-username> & GITHUB_PAT = <github-personal-access-token-with-repo-access> | |
class LanguageView(APIView): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void PostToGroup(final Activity activity, final byte[] image, final String caption, final PostDelegate postDelegate) | |
{ | |
String post_request = "/" + "1631546380475418"; | |
if(image != null) post_request += "/photos"; | |
else post_request += "/feed"; | |
Bundle params = new Bundle(); | |
params.putString("message", caption); | |
if(image != null) params.putByteArray("source", image); | |
FacebookSdk.setOnProgressThreshold(1l); | |
GraphRequest.OnProgressCallback gCallBack = new GraphRequest.OnProgressCallback() { |