Skip to content

Instantly share code, notes, and snippets.

View Ameen-Alam's full-sized avatar
💭
I may be slow to respond.

Ameen Alam Ameen-Alam

💭
I may be slow to respond.
View GitHub Profile
## Contributor License Agreement (CLA)
**Panaversity**
[https://panaversity.org](https://panaversity.org)
Contact: [contact@panaversity.org](mailto:contact@panaversity.org)
### 1. **Introduction**
Thank you for your interest in contributing to the Panaversity project ("Project"). This Contributor License Agreement ("Agreement") ensures that Panaversity has the necessary rights to use, modify, and distribute your contributions. Please read this Agreement carefully before contributing to the Project.

Contributor License Agreement (CLA)

By making a contribution to this project, you agree to the following terms and conditions for your present and future contributions submitted to the NeuronAPI project.

  • You grant us the right to use your contributions in any way.
  • You affirm that your contributions are your original work, or you have the rights to submit them.
  • You agree to comply with the project's license (MIT License).

Contributor License Agreement (CLA)

By making a contribution to this project, you agree to the following terms and conditions for your present and future contributions submitted to the NeuronAPI project.

  • You grant us the right to use your contributions in any way.
  • You affirm that your contributions are your original work, or you have the rights to submit them.
  • You agree to comply with the project's license (MIT License).
@Ameen-Alam
Ameen-Alam / AWSTopics.txt
Created September 8, 2022 21:44
AWSTopics.txt
1. IAM Users & Groups
2. IAM Policies
4. AWS Access Keys, CLI and SDK
5. AWS CLI
6. AWS CloudShell: Region Availability
@Ameen-Alam
Ameen-Alam / cloudflare.Ips
Created August 25, 2022 12:33
cloudflare.Ips
https://www.cloudflare.com/ips-v4
173.245.48.0/20
103.21.244.0/22
103.22.200.0/22
103.31.4.0/22
141.101.64.0/18
108.162.192.0/18
190.93.240.0/20
188.114.96.0/20
@Ameen-Alam
Ameen-Alam / number in words
Created July 18, 2022 00:18
number in words
const a = ["", "one ", "two ", "three ", "four ", "five ", "six ", "seven ", "eight ", "nine ", "ten ", "eleven ", "twelve ", "thirteen ", "fourteen ", "fifteen ", "sixteen ", "eventeen ", "eighteen ", "nineteen"];
const b = ["", "", "twenty ", "thirty ", "fourty ", "fifty ", "sixty ", "seventy ", "eighty ", "ninety "];
const c = ["", "thousand ", "million ", "billion ", "trillion ", "quadrillion ", "quintillion ", "sextillion ", "septillion ", "octillion ", "nonillion ", "decillion ", "Googol ", "Centillion ", "Googolplex ", "Skewer's Number "]
@Ameen-Alam
Ameen-Alam / linuxAddUser
Created May 23, 2022 10:56
linuxAddUser
sudo adduser inifinity
sudo passwd inifinity
sudo echo 'inifinity ALL=(ALL:ALL) ALL' >> /etc/sudoers
sudo usermod -a -G root inifinity
gcloud config set project projectID
gcloud config set compute/zone us-central1-a
us.gcr.io/projectID/image:version
GKE create cluster
gcloud container clusters create gk-cluster --num-nodes=1
gcloud container clusters get-credentials gk-cluster
@Ameen-Alam
Ameen-Alam / dockercompose.setup
Created March 14, 2022 10:02
dockercompose setup
https://docs.docker.com/compose/install/
https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64
cp /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
docker-compose --version
kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')&env.IPALLOC_RANGE=172.30.0.0/16"