I hereby claim:
- I am vipul-08 on github.
- I am vipul_08 (https://keybase.io/vipul_08) on keybase.
- I have a public key ASAe7oXiJG7OILQ1jxkUCVQX-8kmIb0UweAO-8SHGzOAqgo
To claim this, I am signing this object:
Best Colleges in Mumbai (Sorted Way) | |
- VJTI | |
- Sardar Patel | |
- KJ Somaiya | |
- Vivekanand Education Society | |
- Thakur College | |
- Thadomal Shahani | |
- Fr. Agnels College (Christian College and Very Strict) (Bandra and Vashi) | |
- Vidyalankar Institute (Wadala) |
spring: | |
datasource: | |
driver-class-name: com.mysql.jdbc.Driver | |
url: jdbc:mysql://localhost:3306/ipl | |
username: root | |
password: | |
jpa: | |
hibernate: | |
ddl-auto: update | |
generate-ddl: true |
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
int i, j,k = 0; | |
int flag = 1, a[16], g[16], r[20],div[16], n, m,n1,m1; | |
system("clear"); | |
printf("Enter the no. of bits of divisor : "); | |
scanf("%d", &n1); | |
n=n1-1; |
# imports | |
import pymysql | |
from flask import flash, jsonify, request, Flask | |
from flaskext.mysql import MySQL | |
app = Flask(__name__) | |
mysql = MySQL() | |
app.config['MYSQL_DATABASE_USER'] = 'username' | |
app.config['MYSQL_DATABASE_DB'] = 'db name' |
import pymysql | |
from flask import jsonify, flash, request, Flask | |
from flaskext.mysql import MySQL | |
app = Flask(__name__) | |
mysql = MySQL() | |
app.config['MYSQL_DATABASE_USER'] = 'aEpRfjwBMq' | |
app.config['MYSQL_DATABASE_PASSWORD'] = 'fasJeDO8c0' | |
app.config['MYSQL_DATABASE_DB'] = 'aEpRfjwBMq' |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
class UDPSender implements Runnable{ | |
int message; | |
String ipAddress; | |
int port; | |
public UDPSender(int message, String ipAddress, int port) { | |
this.message = message; | |
this.port = port; | |
this.ipAddress = ipAddress; |
import csv | |
data = [] | |
with open('Ball_by_Ball.csv', newline='') as File: | |
reader = csv.reader(File) | |
for row in reader: | |
newRow = [] | |
for j in range(0,len(row)): | |
if j==len(row)-1: |
Pattern panPattern = Pattern.compile("[A-Z]{5}[0-9]{4}[A-Z]{1}"); | |
Pattern datePattern = Pattern.compile("[0-3][0-9][/][0-1][0-9][/][0-9]{4}"); | |
Pattern datePattern2 = Pattern.compile("[0-3][0-9][-][0-1][0-9][-][0-9]{4}"); | |
int dateIndex = 0; | |
int panIndex = 0; | |
if(type.equalsIgnoreCase("PAN Card")) { | |
int i = 0; | |
while ( i < jsonObject.names().length() ) { |