This project is being primariliy focsing on the work reuqest management in IIT Dharwad. A platform to seamlessy let the users push their issues to the required authorities. It will act as medium between the users and the responsible authorites in IIT Dharwad.
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
// Location: app/(login)/login/page.tsx | |
"use client" | |
import { useState } from "react" | |
import LoginLayout from "./layout"; | |
export default function Page() { | |
const [name, setName] = useState("") | |
const [date, setDate] = useState(Date.now().toString()); | |
const [secs, setSecs] = useState(0); |
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
#include<bits/stdc++.h> | |
using namespace std; | |
int solve(){ | |
int n,m; | |
cin>>n; | |
cin>>m; | |
int sum=0; | |
for(int i=0;i<m;i++){ | |
int a,b; |
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
#Gist Created By Saksham ChhimwalAt 1668695778 |
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
#Gist Created By Saksham ChhimwalAt 1668695720 |
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
# change above line to point to local | |
# python executable | |
import urllib, urlparse, string, time | |
# create URL with desired search parameters | |
url = "http://archive.stsci.edu/pointings/search.php?" | |
url = url + "primary=ACS&outputformat=CSV" |
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
#Gist Created By Saksham ChhimwalAt 1668680979 |
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
def main1(): | |
for i in range(1,3): | |
print(i) | |
if(i<5): | |
print("Yes") | |
else: | |
print("NO") | |
def main(): | |
for i in range(1,5): | |
if(i<2): |
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
#Gist Created By Saksham ChhimwalAt 1668679906 |
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 __future__ import annotations | |
import sys | |
from io import StringIO | |
from typing import Callable, TextIO, cast | |
def _run(main_wrapper: Callable[[TextIO, TextIO], None]) -> tuple[str, str, int]: | |
stdout = StringIO() |
NewerOlder