-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assingment#1 Dev Mike Lab #6
Comments
Here is my edited app.js code const express = require('express')
const app = express()
const port = process.env.PORT || 5500;
app.get('/', (req, res) => {
res.send(`
<h1>My Enneagram result: Type 9 "Peacemaker"</h1>
<p>I am Type Nine, which are known as the Peacemaker. I am a mediator of the group and thrive when helping differing parties resolve conflict. My motivation stems from a desire for peace of mind and fears of experiencing overwhelming strife.</p>
<p>I can handle difficult conversations and remain level-headed. I am commonly the person people go to when they need a resolution or a second opinion concerning a pressing issue.</p>
<p>My feelings do not drive them; I have keen instincts that help my teammates gather wisdom to share. I am not confrontational but can navigate conflict to ensure both sides feel understood.</p>
`);
})
app.listen(port, () => {
console.log(`mike app listening on port ${port}`)
}) |
|
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
find any free enneagram test, like so: https://enneagramtest.com/quiz?afid=gdnens&gad_source=1&gclid=EAIaIQobChMI1a3Wu8P0gwMVB8VMAh1aLQqOEAAYASAAEgKXhfD_BwE
Take it, report result & team compatibility on your Render server for mike
e.g.
I'm type no. XYZ
XYZ are good to work on dev teams cuz of their mullets
XYZ need to watch out for talking too much when everyone already gets it.
The text was updated successfully, but these errors were encountered: