Our technical vision is to establish a highly efficient and streamlined software development process that incorporates automation, monitoring, communication, and orchestration to enable seamless and reliable delivery of software releases. Our key goals are as follows:
- Automated Releases with Continuous Integration and Delivery: Our development process will be integrated with robust and automated continuous integration and delivery (CI/CD) pipelines that allow for efficient and frequent releases of software updates. This will include automated testing, building, and deployment processes that minimize human error and accelerate the time to market for new features and bug fixes.
- Production Environment Monitoring and Error Insight: We will implement comprehensive monitoring solutions that provide real-time insights into the performance, errors, and health of our production environment. Our development team will have access to detailed error and performance data, allow
- How do you explain the purpose of breakpoints, and what can you learn by using them?
- Explain the benefits of using the debugger for someone learning the basics of software development.
- How does a call stack help a developer focus on code that is incorrect?
- What is the purpose of "stepping through" your code when using the debugger?
Hello! The web development instruction team at Nashville Software School is currently seeking a new part-time senior instructor to help mold the next generation of developers here in Nashville. Our current need is for our C#/ASP.NET portion of the course.
As an evening instructor, you have a unique opportunity to coach students for 6 months at a time because the students are in the NSS program for an entire year.
- Monday: 6:00 PM - 9:30 PM
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
// Import the radio | |
import { radio } from "./broker.js" | |
// Listen on a channel | |
radio.listen("potteryCreated", data => { | |
// Use the data that was broadcast on the `potteryCreated` channel | |
const firedPottery = firePottery(data.piece, 2100) | |
// Broadcast on another channel with new data | |
radio.broadcast("potteryFired", { firedPottery }) |
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
const dadJokes = [ | |
{ | |
"id": 1, | |
"question": "What did one pirate say to the other when he beat him at chess?", | |
"answer": "Checkmatey" | |
}, | |
{ | |
"id": 2, | |
"question": "Why did I quit my job at the coffee shop the other day?", | |
"answer": "It was just the same old grind over and over." |
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
import "./AnimalCard.css" | |
import React from "react" | |
export default props => { | |
return ( | |
<li> | |
<div className="card-body"> | |
<div className="animal__header"> | |
<h5 className="card-title"> |
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
import React, { useState, useContext, useEffect, useRef } from "react" | |
import Animal from "./Animal" | |
import AnimalDialog from "./AnimalDialog" | |
import { AnimalContext } from "../providers/AnimalProvider" | |
import useModal from "../../hooks/ui/useModal" | |
import "./AnimalList.css" | |
export default (props) => { | |
const { toggleDialog, modalIsOpen } = useModal("#dialog--animal") |
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
import { useState } from "react" | |
const useModal = (selector) => { | |
const [modalIsOpen, setIsOpen] = useState(false) | |
function toggleDialog() { | |
setIsOpen(!modalIsOpen) | |
if (modalIsOpen) { | |
document.querySelector(`${selector}`).removeAttribute("open") |