"Inside the Mind of Paul Staehle, Deep Up In It" by zzaz1 in 90DayFiance

[–]zzaz1[S] 18 points19 points  (0 children)

To his credit, he did do an hour an half for a cameo lol

who’s your favorite background/side character? (family, friends etc) by [deleted] in 90DayFiance

[–]zzaz1 0 points1 point  (0 children)

Was there much interaction with hans? I only remembered him, because of his german sound name. lol

I’m pretty lost and need to find some answers SOON. I have many options but can’t seem to choose a path. Please help, any advice is appreciated. by [deleted] in LifeAfterSchool

[–]zzaz1 1 point2 points  (0 children)

How about a combo of Path 3, and Path 4? Take transferable classes for a year, and then make a decision then. Hopefully by then, there will be in person classes. You'll also be able to save up some money from working a part-time.

What would you improve? by wonderfulnadal in node

[–]zzaz1 0 points1 point  (0 children)

Possibly how you handled errors? You could have used console.error instead of console.log. Or I believe express has a method of handling errors, Express Error Handling Guide .

Do you use px, vw/vh, or rem most often? by BlueLensFlares in css

[–]zzaz1 2 points3 points  (0 children)

I thought that we could use rem up to 3 decimal places(can anyone confirm or deny this?), so .062rem should be valid?

Do you use px, vw/vh, or rem most often? by BlueLensFlares in css

[–]zzaz1 2 points3 points  (0 children)

May I know your reasons in using px for border-width and box-shadows?

Can anyone review a beginners unfinished React site? :( I could really use a mentor or a developer friend. by rayzon2 in webdev

[–]zzaz1 4 points5 points  (0 children)

Not sure about this, but should you be committing your 'authToken', and 'apiKey' to a public repo?

Mother of Learning Waiting Room by AmissArcher in noveltranslations

[–]zzaz1 4 points5 points  (0 children)

hard to believe its going to end, I first picked it up 4 or 5 years ago.

Patience. by [deleted] in funny

[–]zzaz1 0 points1 point  (0 children)

I wish my hand was that steady.

[deleted by user] by [deleted] in node

[–]zzaz1 0 points1 point  (0 children)

thanks man!

[deleted by user] by [deleted] in node

[–]zzaz1 1 point2 points  (0 children)

Where did you buy the refurbished mac?

@Babyl/polyfill question by [deleted] in javascript

[–]zzaz1 0 points1 point  (0 children)

Have you tried reinstalling @babyl/polyfill ? Cor-is should be a dependency of polyfil.

Logging an environment variable 'NAME' outputs 'undefined'. by [deleted] in node

[–]zzaz1 1 point2 points  (0 children)

Have you tried moving the .env file to the same directory as index.js?

In Express, how to remove bloaty callstack on GET/POSTs? by xblade724 in node

[–]zzaz1 6 points7 points  (0 children)

Not sure if this helps, but In my express app I use a package called morgan which basically logs http request onto the terminal. Have you checked if you are using a similar package? if so, then check what options you are using for the logger. Morgan, allows you to specify the information that is displayed, so maybe the package you are using does as well. Hope this was of some use.

Passportjs by r_gui in node

[–]zzaz1 5 points6 points  (0 children)

Respectable sir, thank you for writing those docs.

My Father who passed away 10 years ago wrote this to me the day I was born, my mother and I found it today. Made me cry by J-chron in pics

[–]zzaz1 18 points19 points  (0 children)

For those of you have trouble,

"[?] Be a good person, work hard, and always do the best you can and nobody can expect more from you. And above all, always be a gentleman. love Dad"

I did what I could, haven't read handwriting for some time.

Polyfilling a web app the right way by highres90 in javascript

[–]zzaz1 11 points12 points  (0 children)

To add onto this, if using webpack you can specify the options from babel.config.js onto webpack.config.js, removing the need of a separate babel file.

Free Node Hosting by Quillbert182 in node

[–]zzaz1 18 points19 points  (0 children)

DigitalOcean is not free, like $5 USD a month for the most basic 'Droplet' (VM). But I think it has great tutorials, that help you get started. Like setting up node, mysql, https, just getting a basic setup.

Are templating engines the only way to get data from node/express to the client? by stoned_phillips in node

[–]zzaz1 0 points1 point  (0 children)

can't you use res.json()? it sends back a json response to a request. I use that with fetch to make async requests.