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
| Jerry Jones Pro Football: https://repl.it/live/Jgq0u28tXcLI5A |
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
| using System; | |
| class MainClass { | |
| public static void Main (string[] args) { | |
| // go here kiddo: https://gist.github.com/topherPedersen/bf5ca7969ca9d9120f159eadb854d27d | |
| // Concept No. 1: FUNCTIONS & METHODS | |
| Console.WriteLine("Console.WriteLine is a method. Methods do things."); | |
| // Concept No. 2: VARIABLES |
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
| // Concept No. 1: FUNCTIONS | |
| print("Print is a \"Funtion\" You know something is a function typically when you see a pair of ()") | |
| // Concept No. 2: VARIABLES | |
| var myVariable: String = "Hi" | |
| print(myVariable) | |
| // Concept No. 3: ARRAYS | |
| var myArray: Array<String> = ["Arrays", "are", "like", "variables", "but", "they", "contain", "many", "values"] |
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
| // Concept No. 1: Functions | |
| console.log("hello, world"); | |
| // Concept No. 2: Variables | |
| var myVariable = "Variables are containers which hold values."; | |
| // Concept No. 3: Arrays | |
| var myArray = []; | |
| myArray[0] = "moo"; | |
| myArray[1] = "zoo"; |
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
| // REFERENCE: https://flaviocopes.com/node-input-from-cli/ | |
| const readline = require('readline').createInterface({ | |
| input: process.stdin, | |
| output: process.stdout | |
| }) | |
| readline.question(`What's your name?`, (name) => { | |
| console.log(`Hi ${name}!`) | |
| readline.close() |
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> | |
| <head> | |
| <style> | |
| body { | |
| background: red; | |
| } | |
| </style> | |
| </head> | |
| <body> |
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://bit.ly/2D0OxuL |
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
| Krishi's Rock Paper Scissors Project: | |
| https://drive.google.com/open?id=1QCLDCV36Ezpn0TfTEIouEdHcmiZkEwXh | |
| // Build #40 of Oregon TrailMix | |
| https://drive.google.com/open?id=1UV6eG1EeMlnv_0KdLSHcaMxclHhsoFz0 | |
| // Live Coding Session Jan 26th, 2019 | |
| https://repl.it/live/gJQ2k0yBZN8ugA |
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
| // REFERENCE (UIAlertViewController): https://developer.apple.com/documentation/uikit/uialertcontroller | |
| let alert = UIAlertController(title: "", message: dialogMessage, preferredStyle: .alert) | |
| alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "Default action"), style: .default, handler: { _ in | |
| NSLog("The \"OK\" alert occured.") | |
| })) | |
| self.present(alert, animated: true, completion: nil) |