Skip to content

Instantly share code, notes, and snippets.

View jitunayak's full-sized avatar
🏠
Working from home

Jitu Nayak jitunayak

🏠
Working from home
View GitHub Profile
@jitunayak
jitunayak / Calender Scheduling program.py
Created February 20, 2020 20:01
problem: Find the free slots from two persons calender's schedule
# Calender Scheduling program
# Solved by Jitu Nayak
# Email id : [email protected]
# problem: Find the free slots from two persons calender's schedule
c1 =[['9:30','10:30'],['13:00','14:00']] #calender schedule for person1
c2 =[['9:00','10:00'],['12:00','12:30']] #calender schedule for person2
ss=[360,] #let person1 starts job at 6:00 morning
ee=[480,] #let person2 starts job at 8:00 monring

APFS support on Linux

  sudo apt update
  sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev

  git clone https://github.com/sgan81/apfs-fuse.git
  cd apfs-fuse
  git submodule init
 git submodule update
@jitunayak
jitunayak / install fish shell and bobthefish theme.md
Last active August 11, 2019 16:11
install oh-my-fish on ubuntu 18.04

First install fish shell on your system

sudo apt-get update sudo apt-get install fish

Now install oh-my-fish

sudo apt-get update
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
fish install