Skip to content

Instantly share code, notes, and snippets.

View sonAndrew's full-sized avatar
🤓
Always learning?

Andrew Jackson sonAndrew

🤓
Always learning?
  • Hogwarts
View GitHub Profile
mkdir project
touch index.html styles.css README.md
read -p "Press [Enter] to continue..."
echo "Congratulations"
mkdir boilerP
mv project boilerP/
open index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>index.html</title>
</head>
<body>
<h1>Honey Badger</h1>
<h3>AKA, The Bear Skunk (not really though)</h3>
<article>
@sonAndrew
sonAndrew / characters.html
Created May 23, 2017 20:19
Project-Star-HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Star vs. the Forces of Evil</title>
</head>
<body>
<nav>
<ul>
<a href="index.html">Home</a>
mkdir project
touch index.html styles.css README.md
read -p "Press [Enter] to continue..."
echo "Congratulations"
mkdir boilerP
mv project boilerP/
open index.html
body {
font-family: Helvetica,Arial,sans-serif;
line-height: 1.6;
background-image: url("./bg.jpg");
border: 2px solid yellow;
border-radius: 5px;
margin-top: 5px;
margin-right: 100px;
* {
box-sizing: border-box;
}
@font-face {
font-family: Oleo Script;
font-style: normal;
font-weight: 400;
src: local('Oleo Script'), url(http://fonts.gstatic.com/s/oleoscript/v5/_weQNDK6Uf40CiGFKBBUjogp9Q8gbYrhqGlRav_IXfk.woff2) format('woff2');
}
@font-face {
*, *:before, *:after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
@sonAndrew
sonAndrew / java
Created March 11, 2020 16:05
This method is used to get user name.
public static String getUserName(Scanner borrowedInput)
{
// LOCAL VARIABLES
String localUserName = "";
// FIRST NAME
System.out.println("\nWhat is your first name?");
localUserName = borrowedInput.nextLine();
return localUserName;
} // END - getUserName
/** AUTHOR : [ Andrew Jackson ]
* COURSE : [ CPT 187 ]
* PURPOSE : [ To calculate and generate a receipt for your purchase at SodNotZod.]
* STARTDATE : [ 03/12/2020 ] **/
package edu.cpt187.jackson.project1;
import java.util.Scanner;
public class Metropolis {
/** AUTHOR : [ Andrew Jackson ]
* COURSE : [ CPT 187 ]
* PURPOSE : [ To calculate and generate a receipt for your purchase at SodNotZod.]
* STARTDATE : [ 03/17/2020 ] **/
package edu.cpt187.jackson.participation2;
import java.util.Scanner;
public class SodNotZod {