Skip to content

Instantly share code, notes, and snippets.

View shreshthmohan's full-sized avatar
💭
working at code uncode

Shreshth Mohan shreshthmohan

💭
working at code uncode
View GitHub Profile
@shreshthmohan
shreshthmohan / achalu-betta.md
Created February 18, 2024 10:31
achalu betta
area ramanagara
difficulty easy-moderate
highlights hilltop, scramble, cave
gps 12.694036949845378, 77.28696446880019
rating 4

I have graded this trail as easy-moderate. It has a few sections of steep rock sections, so carry footwear with a good grip. You might have to come down on all four limbs in some short sections.

@shreshthmohan
shreshthmohan / .gitignore
Created November 18, 2023 09:36
gitignore
node_modules
.DS_Store
@shreshthmohan
shreshthmohan / settings.json
Created July 27, 2023 09:01
Visual Studio Code Settings
{
"editor.tabSize": 2,
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"editor.fontSize": 10,
"colorize.languages": ["javascript"],
"vetur.format.defaultFormatter.html": "prettier",
"html.format.contentUnformatted": "",
"explorer.confirmDragAndDrop": false,
@shreshthmohan
shreshthmohan / index.html
Created September 21, 2022 06:48
Bypass OS setting by toggling dark mode styles using JS (unsatosfactory solution)
<!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>Document</title>
<meta name="color-scheme" content="dark light" />
<style>
html {
@shreshthmohan
shreshthmohan / index.html
Last active September 21, 2022 05:26
Override user-agent dark mode styling with `prefers-color-scheme` media query
<!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" />
<meta name="color-scheme" content="dark light" />
<title>
Override user-agent dark mode styling with `prefers-color-scheme` media
query
@shreshthmohan
shreshthmohan / index.html
Last active September 21, 2022 01:19
Dark mode support with minimal CSS
<!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" />
<style>
:root {
color-scheme: dark light;
}
@shreshthmohan
shreshthmohan / index.html
Last active September 21, 2022 00:48
Dark mode support without any CSS or JS. User agent will take care of the colors in each mode.
<!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" />
<meta name="color-scheme" content="dark light" />
<title>Document</title>
</head>
<body>
@shreshthmohan
shreshthmohan / description-semantic.html
Created September 3, 2022 18:21
dl dt dd tags in html (semantics)
<!-- Used to present information that exists in the form of a key value pair -->
<dl><!-- desciption list -->
<dt><!-- description term: the term being described -->
Term
</dt>
<dd><!-- description details -->
A word or phrase used to describe a thing or to express a concept, especially in a particular kind of language or branch of study.
</dd>
</dl>
@shreshthmohan
shreshthmohan / 1.jpg
Last active September 1, 2022 11:41
Images of Gujarat Assembly Constituencies for 2022 elections
1.jpg
@shreshthmohan
shreshthmohan / dl.sh
Last active September 1, 2022 12:16
multiline echo with variable in bash (shell)
#!/bin/bash
for i in {1..414}
do
wget https://embedwistia-a.akamaihd.net/deliveries/3c663245548ad526f09fc4b1e2b4bb73927800bf.m3u8/seg-$i-v1-a1.ts
done
# wget files in a for loop