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 / datatablesDemo.html
Created January 2, 2023 06:16
Bootstrap Datatables
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap4 - DataTable</title>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.12.1/css/jquery.dataTables.css">
<script src="https://code.jquery.com/jquery-3.5.1.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.js"></script>
@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 / css-reset.css
Created June 30, 2021 15:08
Remove Default CSS styles of Browser
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
@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 / bootstrap-cdn-links.md
Created June 30, 2021 14:58
Bootstrap CDN Links
@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>