I hereby claim:
- I am datasapient on github.
- I am adarshpathak (https://keybase.io/adarshpathak) on keybase.
- I have a public key ASD6iA4RdVsti85kenVj_0HhPNPEoEA1S6lAfrThT4RDvwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
These are my notes basically. At first i created this gist just as a reminder for myself. But feel free to use this for your project as a starting point. If you have questions you can find me on twitter @thomasf
example.com, as which we (the git client) connect (push) to exmaple.com.sudo useradd -m -s /usr/bin/git-shell git| // Computes value of Sine function upto the desired limit using Sine series expansion. | |
| // powered by -> HELL Labs (http://helllabs.in) | |
| #include<math.h> | |
| #include<stdio.h> | |
| int main() | |
| { | |
| int times = 8, value = 10; // default values, should return -215.751221 | |
| scanf("%d", ×); |
| """ | |
| Our Aim is to check whether the given "number" is a perfect square as well as a perfect cube or not. | |
| """ | |
| def cuber(num): # Calculates whether the given number is a perfect cube or not. | |
| inte = int(round(num**(1/3.0000000))) | |
| if num == inte**3: | |
| return True | |
| else: | |
| return False |