Skip to content

Instantly share code, notes, and snippets.

View Aniketwarule's full-sized avatar

Aniket Warule Aniketwarule

  • SPPU IT 26
  • Pune
View GitHub Profile
https://mx-player-inspired-s-zlmz.bolt.host/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Screen Wake Lock Timer</title>
<style>
* {
margin: 0;
padding: 0;
#!/bin/bash
# Function to create records in a specified text file create() {
echo "----- Welcome to the Address Book Application! "
echo ""
echo "Enter the name of the address book text file (without extension): " read address_book_name address_book_file="${address_book_name}.txt"
# Check if file already exists or create new if [ ! -f "$address_book_file" ]; then
touch "$address_book_file"
echo "Created new address book: $address_book_file" else