- Theme: Arc dark
- Icons: flat-remix-dark
- Lightdm GTK+ Greeter (login interface customization)
- Login icons: Moka
- Login theme: Arc dark
- Window manager theme: Arc dark
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/bash | |
export DISPLAY=:0.0 | |
export SONGPATH=(~/Music/Aerosmith\ -\ Complete\ Discography/"01. Mama Kin.mp3") | |
read -p "How many hours should I wait? " hours | |
read -p "How many minutes should I wait? " minutes |
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
<!-- index.html --> | |
<html> | |
<h1> Who's Herschel Evans? </h1> | |
"Herschel Evans was an American tenor saxophonist who | |
worked in the Count Basie Orchestra. He also worked with | |
Lionel Hampton and Buck Clayton. He is also known for starting | |
his cousin Joe McQueen's interest in the saxophone." - Wikipedia | |
<h1> Why does this page exist? </h1> | |
This is an example page for my web development series. I started |
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
<!-- index.html --> | |
<html> | |
<h1> Who's Herschel Evans? </h1> | |
"Herschel Evans was an American tenor saxophonist who | |
worked in the Count Basie Orchestra. He also worked with | |
Lionel Hampton and Buck Clayton. He is also known for starting | |
his cousin Joe McQueen's interest in the saxophone." | |
- <a href="https://en.wikipedia.org/wiki/Herschel_Evans">Wikipedia</a> | |
<h1> Why does this page exist? </h1> |
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
<!-- index.html --> | |
<html> | |
<h1> Who's Joe McQueen? </h1> | |
"Joe McQueen (aka Joe Lee McQueen; né Joe Leandrew McQueen; born 30 May 1919) | |
is an American jazz saxophonist raised in Ardmore, Oklahoma. He played tuba, | |
clarinet, and then saxophone in the Ardmore High School band. He was also on the | |
football squad." - <a href="https://en.wikipedia.org/wiki/Joe_McQueen"> Wikipedia </a> | |
<h1> Why does this page exist? </h1> | |
This is an example page for |
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
<!-- index.html --> | |
<html> | |
<h1> Who's Herschel Evans? </h1> | |
"Herschel Evans was an American tenor saxophonist who | |
worked in the Count Basie Orchestra. He also worked with | |
Lionel Hampton and Buck Clayton. He is also known for starting | |
his cousin Joe McQueen's interest in the saxophone." | |
- <a href="https://en.wikipedia.org/wiki/Herschel_Evans">Wikipedia</a> | |
<h1> Why does this page exist? </h1> |
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
<form> | |
Did you enjoy this page?<br> | |
<input type="radio" name="liked" value="yes" checked> Yes <br> | |
<input type="radio" name="liked" value="no"> No <br> | |
<input type="submit" value="Submit"> | |
</form> |
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
<html> | |
<form> | |
<b>How old are you?</b><br> | |
<input type="radio" name="age" value="0-10"> 0 to 10 <br> | |
<input type="radio" name="age" value="10-30"> 10 to 30 <br> | |
<input type="radio" name="age" value="30-50"> 30 to 50 <br> | |
<input type="radio" name="age" value=">50"> More than 50 <br> | |
<br> |
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
<html> | |
<body> | |
<?php | |
echo "<h1>Hello World!</h1>"; | |
?> | |
</body> | |
</html> |
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
<?php | |
echo "<h1>Hello World!</h1>"; | |
?> |
OlderNewer