Skip to content

Instantly share code, notes, and snippets.

View ab007shetty's full-sized avatar
💻
I'm just warming up!

Anirudha B Shetty ab007shetty

💻
I'm just warming up!
View GitHub Profile
@ab007shetty
ab007shetty / bootstrap4-starter-pack.html
Last active July 4, 2021 09:41
Bootstrap4 Template for Quick Start
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap4</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
@ab007shetty
ab007shetty / simple-dark-mode-switch.html
Created July 3, 2021 18:14
Simple Snippet to enable Dark Mode Switch
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
padding: 25px;
background-color: white;
color: black;
font-size: 25px;
@ab007shetty
ab007shetty / dark-mode-switch.css
Last active July 3, 2021 18:11
Add a dark-mode theme switch with a Bootstrap Custom Switch
[data-theme="dark"] {
background-color: #111 !important;
color: #eee;
}
[data-theme="dark"] .bg-black {
background-color: #fff !important;
}
@ab007shetty
ab007shetty / powershell-commands.txt
Created June 30, 2021 15:06
Important Powershell Commands Used in Google IT Support Specialization
Week 1:
(related to bash)
1. ls C:\ -list
2. get-help ls -full -full info about ls
3. ls C:\ -force -to show hidden items
4. pwd -print working directory
@ab007shetty
ab007shetty / bash-commands.txt
Created June 30, 2021 15:05
Important Bash Commands Used in Google IT Support Specialization
Week 1:
1. ls / or ls /home -list all
2. ls --help -help menu
3. man ls -more than help
4. ls / -l -properties with longlist
@ab007shetty
ab007shetty / google-tranlate-button.html
Created June 30, 2021 14:56
How To Add Google Translate Button On Your Webpage ?
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
How To Add Google Translate
Button On Your Webpage ?
</title>
</head>
@ab007shetty
ab007shetty / showcase_webpage.html
Created June 30, 2021 13:54
Scrollable sidenav with webpage embedding using iframe tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AB Shetty</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">