Skip to content

Instantly share code, notes, and snippets.

View skashan-ali's full-sized avatar
🏠
Working from home

Kashan Ali skashan-ali

🏠
Working from home
View GitHub Profile
@skashan-ali
skashan-ali / PY0101EN-3-2-Loops.ipynb
Created August 19, 2019 09:39
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-3-1-Conditions.ipynb
Created August 19, 2019 08:18
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-2-4-Dictionaries.ipynb
Created August 18, 2019 21:38
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-2-3-Sets.ipynb
Created August 18, 2019 21:29
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-2-1-Tuples.ipynb
Created August 18, 2019 21:15
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-1-2-Strings.ipynb
Created August 18, 2019 21:00
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / PY0101EN-1-1-Types.ipynb
Created August 18, 2019 20:45
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skashan-ali
skashan-ali / README.md
Created June 3, 2019 09:12 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@skashan-ali
skashan-ali / install-kafka
Created October 10, 2018 13:35 — forked from mottyc/install-kafka
Kafka 0.8.2.0 installation + zookeeper on a single machine
#!/bin/bash
#title :kafka-install.sh
#description :The script to install kafka 0.8.x
#author :Motty Cohen
#date :05-Feb-2015
#usage :/bin/bash install-kafka.sh
KAFKA_VERSION=0.8.2.0
SCALA_VERSION=2.10
@skashan-ali
skashan-ali / kafka-service-script
Created October 10, 2018 13:34 — forked from mottyc/kafka-service-script
Kafka service script (copy to file: /etc/init.d/kafka)
#! /bin/sh
# /etc/init.d/kafka: start the kafka daemon.
# chkconfig: - 80 20
# description: kafka
KAFKA_HOME=/usr/share/kafka
KAFKA_USER=root
KAFKA_SCRIPT=$KAFKA_HOME/bin/kafka-server-start.sh
KAFKA_CONFIG=$KAFKA_HOME/config/server.properties