Skip to content

Instantly share code, notes, and snippets.

View gmelodie's full-sized avatar
🤟
Computing stuff

Gabriel Cruz gmelodie

🤟
Computing stuff
View GitHub Profile
@gmelodie
gmelodie / wakeup.sh
Created July 10, 2017 16:35
Script to play song after waiting some time, hence wakeup.sh
#!/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
@gmelodie
gmelodie / custom-hacks-list.md
Last active September 26, 2018 13:45
A list of my system customizations (for not getting lost every time I format my pc)

Custom Hacks

DE Themes

  • 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
@gmelodie
gmelodie / website_herschel_v1.html
Last active January 14, 2019 01:23
Herschel Evans' web page version 1
<!-- 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
@gmelodie
gmelodie / website_herschel_v2.html
Last active January 14, 2019 01:26
Herschel Evans' web page version 2
<!-- 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>
@gmelodie
gmelodie / website_joe_v1.html
Last active January 12, 2019 13:59
Joe McQueen's web page version 1
<!-- 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
@gmelodie
gmelodie / website_herschel_v2.html
Last active January 14, 2019 01:27
Including local file paths to Herschel's and Joe's pages
<!-- 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>
@gmelodie
gmelodie / website_herschel_vote_form.html
Created January 15, 2019 13:47
Herschel Evans' website with voting form
<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>
@gmelodie
gmelodie / health_form.html
Created January 15, 2019 14:07
Health form example with multiple choices in one form
<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>
@gmelodie
gmelodie / hello_world_php.html
Last active January 16, 2019 20:31
Hello World PHP
<html>
<body>
<?php
echo "<h1>Hello World!</h1>";
?>
</body>
</html>
@gmelodie
gmelodie / hello_world.php
Last active January 16, 2019 20:30
Hello World raw PHP
<?php
echo "<h1>Hello World!</h1>";
?>