Skip to content

Instantly share code, notes, and snippets.

View froghramar's full-sized avatar
🏠
Working from home

Feroz Ahmmed froghramar

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am froghramar on github.
  • I am froghramar (https://keybase.io/froghramar) on keybase.
  • I have a public key whose fingerprint is AC2E A69A 93D2 3445 223B FC91 6D47 624C A3C2 6475

To claim this, I am signing this object:

@froghramar
froghramar / BigInt.cpp
Last active March 10, 2016 02:19
Coding Help
struct Bigint {
string a;
int sign;
Bigint(){}
Bigint(string b){
*this = b;
}
int size(){
return a.size();
}
@froghramar
froghramar / Applications Menu in Ubuntu.sh
Last active August 18, 2016 09:25
Installation of Ubuntu essential softwares
sudo apt-add-repository ppa:diesch/testing
sudo apt-get update
sudo apt-get install classicmenu-indicator
#include<stdio.h>
char *months[]={" ","\n\n\n\n\t\t January","\n\n\n\n\t\t February","\n\n\n\t\t March","\n\n\n\n\t\t April","\n\n\n\n\t\t May","\n\n\n\n\t\t June","\n\n\n\n\t\t July","\n\n\n\n\t\t August","\n\n\n\n\t\t September","\n\n\n\n\t\t October","\n\n\n\n\t\t November","\n\n\n\n\t\t December"};
int dayinmonth[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int getdaycode(int year)
{
int daycode,n;
n=year-1;
daycode=1 + (2 * 13) + ((3 * (13+1))/5) + n + (n/4) - (n/100) + (n/400) + 2;