- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
This file contains 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
/* | |
@author: karngyan | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
typedef long double ld; | |
typedef std::vector<ll> vll; |
This file contains 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
#!/usr/bin/env python | |
''' | |
CC : Yasho Bhaiya | |
''' | |
from selenium import webdriver | |
import sys | |
webbrowser = webdriver.Firefox() | |
webbrowser.get("https://172.16.1.1:8090/httpclient.html") |
This file contains 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
#!/usr/bin/env python | |
''' | |
CC: Yasho Bhaiya | |
''' | |
from selenium import webdriver | |
import time, sys | |
webbrowser = webdriver.Firefox() | |
webbrowser.get("https://172.16.1.1:8090/") | |
# time.sleep(3) |
This file contains 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
#include<stdio.h> | |
#include<stdlib.h> | |
#include<stdbool.h> | |
#define N 110 | |
double old_x[N]; | |
double new_x[N]; | |
double a[N][N]; | |
double b[N]; | |
double e = 0.0001; |
This file contains 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
#include<stdio.h> | |
#include<stdlib.h> | |
#include<stdbool.h> | |
#define N 110 | |
double old_x[N]; | |
double new_x[N]; | |
double a[N][N]; | |
double b[N]; | |
double e = 0.0001; |
This file contains 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
#include<stdio.h> | |
#include<stdlib.h> | |
#include<math.h> | |
#include<stdbool.h> | |
#define N 1010 | |
typedef struct pt | |
{ | |
double x , y; | |
} pt; |
This file contains 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
#include<stdio.h> | |
#include<stdlib.h> | |
#define N 1010 | |
#define INF 1e5 | |
typedef struct pt | |
{ | |
double x , y; | |
} pt; |
This file contains 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
/* | |
Author: @karngyan | |
Complete the run_scheduler function as per your requiremnts | |
tweak take_input function as required | |
To Do: | |
- Add function to print gantt chart | |
- Add function to print Process Table | |
*/ |
This file contains 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
/* | |
Author: @karngyan | |
Roll: BE/10546/17 | |
Date: April 5, 2019 | |
Language: C++ 14 Recomended | |
*/ | |
#include<bits/stdc++.h> |
OlderNewer