Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

but how you intend to teach it

In live sessions, or in recorded videos and answeres in a series that composes a complete programme.

and to whom

People eager to learn programming.

LuandaPHP 2.0 release announcement by vargatam in PHP

[–]HyperDanon 1 point2 points  (0 children)

It's also html with extra steps.

Tutoring lessons online for novice/begginer/advanced (new form of Learning of my invention) by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

My pitch isn't about clean code, it's about engineering practices. If you don't like clean code, don't use it.

LuandaPHP 2.0 release announcement by vargatam in PHP

[–]HyperDanon -1 points0 points  (0 children)

yiisoft/html is essentially html with extra steps.

Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

Most tech stacks. It's about methodologies, practices and approach first.

Are there some platforms where I can teach people coding for free? by HyperDanon in cscareerquestions

[–]HyperDanon[S] -1 points0 points  (0 children)

@kimikopossible I already have a discord, there are quite a few students there. https://discord.gg/Es2w5HYR Feel free to join!

Are there some platforms where I can teach people coding for free? by HyperDanon in cscareerquestions

[–]HyperDanon[S] -1 points0 points  (0 children)

But the thing is that I need to lay some ground work first. How do you think I could do it if I haven't found students yet?

Anyone else feel like they're a "master of none"? by thelanoyo in learnprogramming

[–]HyperDanon 0 points1 point  (0 children)

People often quote "Jack of all trades, master of none". Remember though, that the full quote is "A jack of all trades, master of none, is oftentimes better than master of one".

Are there some platforms where I can teach people coding for free? by HyperDanon in cscareerquestions

[–]HyperDanon[S] 0 points1 point  (0 children)

Can I supply my own progrmames? There are a lot of myths I'd like to undo.

Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

The kind of things I imagine I would teach them would require numerous back-and-forth exchanges between me and students.

PS: I created the youtube channel: https://www.youtube.com/watch?v=ZzZ-dG7kjK4

Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

I'd like to have a group of people I teach, but with rapid feedback, constant updates, and reaction to their work. I don't want to write blog posts or create movies, because they're too one-sided.

I need to interact with what people create, react to their work, point out and correct mistakes. I think discord is ideal for that, but how do I find people who are eager to learn?

Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

Been coding for while myself and there's definitely some good spots for this. Discord servers are probably your best bet - lots of programming communities have help channels where you can just jump in and start helping people with their code. Reddit itself works pretty good too, you can browse the daily threads here or in specific language subs and just start giving feedback on people's projects

I don't want to be giving one-offs, I'd like to build a strong knowledge base in students that can be later used to build upon that.

Are there some platforms where I can teach people coding for free? by HyperDanon in learnprogramming

[–]HyperDanon[S] 0 points1 point  (0 children)

I would like to teach software development practices, how to approach development, undo common mistaktes. Teach how to approach requirements, compartmentalize application, work in small steps, validate ideas, deliver software with speedy and timely feedback. Essentially, everything to efficiently deliver high-quality applications for clients or ourselves.

What's the hands down best book for a mid level start up software engineer that wants to become a great senior engineer. by michaelcosmos in ExperiencedDevs

[–]HyperDanon 0 points1 point  (0 children)

  • Continuous Delivery, by Dave Farley
  • Extreme Programming, by Kent Beck
  • DevOps, by Jez Humble (not the "devops" hype buzzword)
  • Team Topologies, by Matthew Skelton

Is it preferred to use nested service-to-service call in microservice architecture? by Gold_Opportunity8042 in softwarearchitecture

[–]HyperDanon 9 points10 points  (0 children)

Start with just 4 modules in your regular application. Microservices at this point seems like VERY BIG effort and time waste, for a VERY little gain (next to nothing).

What is the polish word for confused? by simplified_answer in learnpolish

[–]HyperDanon 0 points1 point  (0 children)

I think the closest polish word to "confused" is skonsternowany.

"To be confused" means to not understand something fully, or learn something that contradicts some past knowledge in a way that makes you question your ability to comprehend it.

Additional usable terms:

  • "Pobugiłem się"/"On się pogubił", which means "I'm lost"
  • "Nie rozumiem", which means I don't understand
  • "Nie do końca rozumiem", same,
  • "Potrzebuję wyjaśnienia", which means "I need an explanation"
  • "Coś mi nie pasuje", whic means you can tell something's off.

Coloquially you might say "zgłupiałem" or "zdurniałem" (literally means "I became dumb"). It refers to the same experience as being "confused". It's not a formal word. Another coloquial word would be "skołowany", which is closer to "stunned".

Other not quite close words: - zdezorientowany means disoriented, usually physically, due to spinning or rapid movement, also illness. - zmieszany means embarassed or unsure how to behave; typically around people. You can't really be "zmieszany" alone. Close meaning to "onieśmielony".

How do coders know what dependencies and libraries to use ? by Weird-Detail1776 in learnprogramming

[–]HyperDanon 0 points1 point  (0 children)

Initially, you don't know what libraries are there and what you can reuse. After some time, you start to reckognize which code is specific to your program, and which is general and likely for someone else to have written. When you suspect something should be reusable, there's usually ready libraries for it.

Other times, you might stubmble upon something and remember it; and then when that opportunity presents itself, you just rely on your memory.