This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme: | |
background-color: 0 0 0 | |
# background-color: 50 1 6 | |
primary-color: 209 88 54 | |
positive-color: 135 94 66 | |
negative-color: 0 100 67 | |
server: | |
port: 8383 | |
branding: | |
custom-footer: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true; do | |
echo "Menu:" | |
echo "1. Display the current working directory." | |
echo "2. List the files in your directory." | |
echo "3. Long listing of directory and store the output in a file." | |
echo "4. Create a file and copy it in your directory." | |
echo "5. Move the specified file into your parent directory." | |
echo "6. Rename a specified file." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
net stop NVDisplay.ContainerLocalSystem && net start NVDisplay.ContainerLocalSystem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source - https://github.com/msambol/youtube/blob/master/search/breadth_first_search.py | |
from collections import deque | |
graph = { | |
'A' : ['B','C'], | |
'B' : ['D', 'E', 'F'], | |
'C' : ['G'], | |
'D' : [], | |
'E' : [], | |
'F' : ['H'], |