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
| ALTER TABLE [dbo].[user_roles] | |
| ADD id INT NOT NULL IDENTITY(1, 1) PRIMARY KEY; |
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
| /** | |
| * * * * * * * * * * * * * * * * * | |
| * * * * * * * * * * * * * * * * * | |
| * SETTINGS REGISTRATION | |
| * * * * * * * * * * * * * * * * * | |
| * * * * * * * * * * * * * * * * * | |
| */ | |
| register_setting( 'enchanté_settings_group', 'pinterest_handler' ); | |
| register_setting( 'enchanté_settings_group', 'reddit_handler' ); | |
| register_setting( 'enchanté_settings_group', 'tumblr_handler' ); |
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
| /** AUTHOR : [ Andrew Jackson ] | |
| * COURSE : [ CPT 187 ] | |
| * PURPOSE : [ To create and run a train simulator. ] | |
| * STARTDATE : [ 03/20/2020 ] **/ | |
| package edu.cpt187.jackson.project2; | |
| import java.util.Scanner; | |
| public class MainClass { |
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
| /** 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 { |
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
| /** 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 { |
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
| 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 |
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
| *, *:before, *:after { | |
| box-sizing: border-box; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| outline: 0; | |
| font-size: 100%; |
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
| * { | |
| 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 { |
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
| 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; |
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
| 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 |
NewerOlder