The takeaway is in the JS!
throw new Error('Intentional Error Thrown');
View live at: https://codepen.io/popdemtech/pen/VwXGJQQ?editors=1010
| {"AuxAudioDevice1":{"balance":0.5,"deinterlace_field_order":0,"deinterlace_mode":0,"enabled":true,"flags":0,"hotkeys":{"libobs.mute":[],"libobs.push-to-mute":[],"libobs.push-to-talk":[],"libobs.unmute":[]},"id":"coreaudio_input_capture","mixers":255,"monitoring_type":0,"muted":false,"name":"Mic/Aux","prev_ver":453115908,"private_settings":{},"push-to-mute":false,"push-to-mute-delay":0,"push-to-talk":false,"push-to-talk-delay":0,"settings":{"device_id":"BuiltInMicrophoneDevice"},"sync":0,"versioned_id":"coreaudio_input_capture","volume":1.0},"current_program_scene":"slideshow only","current_scene":"slideshow only","current_transition":"Fade","groups":[],"modules":{"auto-scene-switcher":{"active":false,"interval":300,"non_matching_scene":"","switch_if_not_matching":false,"switches":[]},"decklink_captions":{"source":""},"output-timer":{"autoStartRecordTimer":false,"autoStartStreamTimer":false,"pauseRecordTimer":true,"recordTimerHours":0,"recordTimerMinutes":0,"recordTimerSeconds":30,"streamTimerHours":0,"streamT |
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 |