Action | One-finger gesture | Multi-finger gesture |
---|---|---|
Move to the next item on the screen | Swipe Right | -- |
Move to the previous item on the screen | Swipe Left | -- |
Select an item | Tap | -- |
Scroll up or down | 2-finger swipe up or down | -- |
Scroll left or right | 2-finger swipe left or right | -- |
Activate | Double-tap | -- |
Long press the focused item | Double-tap and hold | -- |
Move up the slider ( Increasing the volume ) | Up, or right then left | -- |
This file contains 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
<!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>Async vs Defer</title> | |
<script> | |
console.log('Start HTML Parsing'); | |
</script> |
This file contains 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
<p>...content before scripts...</p> | |
<script> | |
document.addEventListener('DOMContentLoaded', () => alert("DOM ready!")); | |
</script> | |
<script async src="https://javascript.info/article/script-async-defer/long.js"></script> | |
<script async src="https://javascript.info/article/script-async-defer/small.js"></script> | |
<p>...content after scripts...</p> |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Async vs Defer</title> | |
<script> | |
console.log('Start HTML Parsing'); | |
</script> | |
</head> |
Action | Command |
---|---|
Move to the next item on the screen | Vo + Right Arrow |
Move to the previous item on the screen | Vo + Left Arrow |
Click on any element | Vo + Spacebar |
Increase the pitch | Vo + Command + Up Arrow |
Decrease the pitch | Vo + Command + Down Arrow |
Move focus of voiceover on a current webpage | Vo + Shift + Down Arrow |
Navigation by heading [ 85% percentage of users navigate via heading ] | Vo + Command + H |
Open the rotor ( To list down all the interactive elements ) | Vo + U ( Press the right arrow to move around the different interactive element ) |
This file contains 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
"[git-commit]": { | |
"editor.rulers": [{ | |
"column": 50, | |
"color": "#50e782" | |
}, | |
{ | |
"column":72, | |
"color": "#ff7b00" | |
}], | |
"editor.wordWrap": "on", |
This file contains 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
import os | |
# For Removing this warning : "Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found" | |
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' | |
import logging | |
logging.getLogger('tensorflow').disabled = True | |
# "0" means no logging. # For Removing XLA warnings | |
import tensorflow as tf |
This file contains 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/sh | |
# Run the file inside terminal | |
# $ bash git-automation.sh "Commit message" | |
echo "Git Automation Starts ....." | |
message=$1 # First parameter will be the commit message | |
currentBranch=$(git symbolic-ref --short -q HEAD) # Getting the current branch | |
if [ ! -z "$1" ] # checking if the commit message is present. If not then aborting. |
This file contains 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
# --------------------------# | |
# Author : Hritik Jaiswal | |
# Github : https://github.com/hritik5102 | |
# --------------------------# | |
# Import package | |
import streamlit as st | |
import pandas as pd | |
from PIL import Image |
NewerOlder