Skip to content

Instantly share code, notes, and snippets.

View milindchawre's full-sized avatar
🎯
Focusing

Milind Chawre milindchawre

🎯
Focusing
View GitHub Profile
@milindchawre
milindchawre / cka-ckad-bookmarks
Created December 14, 2020 10:57
Bookmarks for cka and ckad exam
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!-- This is an automatically generated file.
It will be read and overwritten.
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks</H1>
<DL><p>
<DT><H3 ADD_DATE="1604897638" LAST_MODIFIED="0" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks bar</H3>
<DL><p>
@milindchawre
milindchawre / python3-cli-development-steps
Last active October 21, 2020 07:36
General steps while developing cli tools using python3 (following proper TT Test Driven Development)
Create project folder
mkdir -p code/fileops
Initialize virtualenv
cd code/fileops
pipenv -python 3.9
pipenv shell
cat Pipefile
git init
git status
You can choose to use any scripting language to automate (great if you could do in Ansible/ Terraform).
Use the free-tier resources from AWS. Feel free to comment your code and/or put detailed information in the instructions.
The exercise will be 2.5 hours.
## Following is the goals of the exercise:
1. Demonstrate your hands-on skills, you can code for building cloud hosted solution
2. Demonstrate that you can think of other cross-cutting-concerns like security
3. A nice segue to our discussion after you submit the code
@milindchawre
milindchawre / docker_demo_commands.txt
Last active December 28, 2021 13:14
Docker demo commands
docker run -d -it centos:7 sh
#Dockerfile
-----------------------------------------------
FROM ubuntu:14.04
RUN \
apt-get update && \
apt-get -y install apache2