Skip to content

Instantly share code, notes, and snippets.

View dipankardas011's full-sized avatar
:octocat:
Hustling

Dipankar Das dipankardas011

:octocat:
Hustling
View GitHub Profile
###########################
# IT IS ONLY
# INSTRUCTIONS (NOT MENT TO BE EXECUTABLE DIRECTLY)
###########################
# reference: https://gist.github.com/saiyam1814/c3e91322441fdb53bbf5958b943a41f3
# 192.168.1.6 kubeadm-cp-1-5db6-f1562d
# 192.168.1.7 kubeadm-cp-2-11ce-f1562d
# 192.168.1.8 kubeadm-cp-3-16c3-f1562d
[Watch the video in YouTube<br> ![thumbnail](http://img.youtube.com/vi/6-UJzEXMvGY/0.jpg)](https://youtu.be/6-UJzEXMvGY)
@dipankardas011
dipankardas011 / HuggingFace Dockerfile
Last active June 10, 2023 11:44
kubesimplify-hugging-face
# Use the official Python 3.9 image
FROM python:3.9
# Set the working directory to /code
WORKDIR /code
# Copy the current directory contents into the container at /code
COPY ./requirements.txt /code/requirements.txt
# Install requirements.txt
@dipankardas011
dipankardas011 / copy.c
Created January 13, 2022 11:07
Linux system utility commands in C programming language E.g. cp, mv
/***
* @author Dipankar Das
* cc -o util copy.c
*
* ./util cp <source> <destination>
*
* ./util mv <source> <destination>
*/
#include <stdio.h>