The takeaway is in the JS!
throw new Error('Intentional Error Thrown');
View live at: https://codepen.io/popdemtech/pen/VwXGJQQ?editors=1010
The takeaway is in the JS!
throw new Error('Intentional Error Thrown');
View live at: https://codepen.io/popdemtech/pen/VwXGJQQ?editors=1010
| #!/bin/bash | |
| echo 'alias ppwwdd="pwd"' >> ~/.bashrc | |
| source ~/.bashrc | |
| ppwwdd | |
| # Execute Shell Script Using . ./ (dot space dot slash) | |
| # Executing a shell script using “dot space dot slash” |
| #! /bin/bash | |
| # Usage `. ./setup.sh` | |
| # Notice the dot-space before the file name. | |
| sudo apt-get update | |
| echo "Checking for nginx" | |
| if ! [-x "$(command -v nginx)"];then | |
| sudo apt-get install nginx -y |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| @font-face { | |
| font-family: 'freemono'; | |
| src: url("/usr/share/fonts/truetype/freefont/FreeMono.ttf") format('truetype'); | |
| } | |
| @font-face { |
| version: '3' | |
| services: | |
| database: | |
| image: mysql:5.7 | |
| volumes: | |
| - database-data:/var/lib/mysql | |
| restart: always | |
| environment: |
| { | |
| "id": "1", | |
| "name": "Jayson", | |
| "55rating": 0.55, | |
| "house": "AB", | |
| "capabilities": | |
| { | |
| "fishing": { "duration": "10000", "level": "master" }, | |
| "programming": { "duration": "4500", "level": "journeyman" }, | |
| "physics": { "duration": "140000", "level": "champ" } |
| <html> | |
| <head> | |
| <!-- This file defines a web component APICard/api-card --> | |
| <!-- which, when given an JSON returning route, --> | |
| <!-- renders the response returned by the route --> | |
| <!-- or the error message returned by the route --> | |
| <!-- in a graphical, user-friendly way --> | |
| </head> | |
| <body> |
| [ | |
| { | |
| "title": "Front Matter", | |
| "slug": "front-matter", | |
| "content": "# `smartsite` by Popular Demand\n\n*Web Application Fundamentals Made Simple*\n\nHey everyone. Welcome to a guide to Web Development.\n\nThe purpose of `smartsite` is to provide interested individuals with\na launch point for building a personal web application.\n\nBefore beginning, the individual must be able to:\n<ol type=\"a\">\n <li>Download and install programs</li>\n <li>Browse the internet</li>\n <li>Use the command-line interface</li>\n</ol>\n\nUsing the command-line interface is likely the least familiar of the skills.\nLuckily, commands that are **necessary** for building the application\nwill be given by the walkthrough. Still, because the command-line will be one of the primary development tools, beginner level proficiency is recommended.\n\nThe guides will present a path of Node.js web development that it known to work.\nDifferences in operating system and setup may require modifications to the instructions.\n\n## T |
| # How to Write a Book About Software | |
| # 1. Know something about Software | |
| # 2. Spend time collecting the stuff you know | |
| # 3. Use software to produce the manuscript | |
| # popdemtech | |
| #################### | |
| # SCRIPT STARTS HERE | |
| #################### |