This file contains hidden or 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
https://mx-player-inspired-s-zlmz.bolt.host/ |
This file contains hidden or 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 name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Screen Wake Lock Timer</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; |
This file contains hidden or 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/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 |