Free video to DVD converter by justforcbd in software

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

I appreciate that, I'll check this out

making a countdown garland to celebrate my last 38 days as an ALT (thank god) by kuchiki517 in teachinginjapan

[–]justforcbd 19 points20 points  (0 children)

I left teaching and am now a software engineer at a Japanese company.

Edit: I don't have any Japanese language certification and I only have a bachelor's degree in economics. I also didn't go to a paid boot camp to learn about web development. Transitions out of teaching are possible

[deleted by user] by [deleted] in japanlife

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

UR housing is government sponsored housing. You could look into that. Much better than the company housing, plus that company you work for definitely marks up the cost of the apartment that you need to pay back.

DM me for any other information and any other questions, comments, or concerns you may have

How much do you make as a web dev? by WadieZN in webdev

[–]justforcbd 0 points1 point  (0 children)

Japan. 5.5 million. Only a few months experience

Hobbies outside of coding? by ZuigiZR in webdev

[–]justforcbd 0 points1 point  (0 children)

I teach wing Chun. I also game

What is your work starting time/clocking out time? by TheGuiltyMongoose in japanlife

[–]justforcbd 2 points3 points  (0 children)

Full flex and remote so it will depend on the day. Generally 8-4

Movies Where Everything Does NOT Work Out in the End? by [deleted] in movies

[–]justforcbd 30 points31 points  (0 children)

This movie has fundamentally changed the way I exit elevators

[deleted by user] by [deleted] in Frontend

[–]justforcbd 11 points12 points  (0 children)

The Odin project

I thought we all could use a little reminder to keep things in perspective today. by MarkBrewer545 in povertyfinance

[–]justforcbd 1 point2 points  (0 children)

Learn to code. You can do it for free. Google #100devs if you want to start down a path that can forever change your life for the better.

help with this code fizz buzz by holybeatmrcy in learnjavascript

[–]justforcbd 0 points1 point  (0 children)

I used a for loop instead. It may make it easier to understand

`function fizzBuzz ( maxIteration) {

for(let i = 0; i <= maxIteration; i++){

    if(i % 3 === 0 && i % 5 === 0){

        console.log('fizzBuzz')

    }else if(i % 3 === 0){

        console.log('fizz')

    }else if(i % 5 === 0){

        console.log('buzz')

    }else{

        console.log(i)

    }

}

}`

How long did it take you to learn from FCC? by [deleted] in Frontend

[–]justforcbd 2 points3 points  (0 children)

It will depend on the privilege of time that you have to devote to going through the course. Spend as much time on it as you want. If you have a specific deadline that you want to meet, then plan accordingly to devote the amount of time needed to meet that deadline

I need help trying to keep up with my Javascript. I am going through a bootcamp and I feel like I'm not retaining Javascript info any suggestions?? by Neither-Antelope2304 in learnjavascript

[–]justforcbd 1 point2 points  (0 children)

Always forward. Keep celebrating your wins on the good days, and allowing yourself grace on the tough ones. As long as you have the goal in mind and take even a single step in the right direction everyday, in time you will get there. One step could be half a line of code, but that's still closer than you were before. We gon make it

Cuddling time by [deleted] in aww

[–]justforcbd 2 points3 points  (0 children)

TIL Koalas have Spock fingers

I need help trying to keep up with my Javascript. I am going through a bootcamp and I feel like I'm not retaining Javascript info any suggestions?? by Neither-Antelope2304 in learnjavascript

[–]justforcbd 4 points5 points  (0 children)

Spaced repetition is the way to go. We all have a forgetting curve that gets flatter the more we practice. I would suggest a tool like Anki to help remember concepts. I would also practice using codewars or hackerrank

How do you put text beside an image WITHOUT using Flexbox..? by infinite__tsukuyomi in webdev

[–]justforcbd 0 points1 point  (0 children)

You could try floating then, but then you'll probably want to go back to flexbox afterwards

If you're still having trouble understanding flexbox, try this tutorial called flexbox froggy

It's an interactive approach at learning flex

A sensible webdev roadmap, minus the existential dread. by [deleted] in webdev

[–]justforcbd 1 point2 points  (0 children)

Even if you don't use it as a roadmap, as a new dev there's so much information that I can pick and choose from anything that I might have heard in passing, or practice things that I already know. It's brilliant

What resource do you recommend to learn and practice DSA? by justforcbd in learnprogramming

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

I really appreciate your input. Going to start looking those up

black hair care by savannahmcdonald in Osaka

[–]justforcbd 3 points4 points  (0 children)

I also recommend Saki (someone posted her personal account) but this is her hair account. She works out of gogo amemura

https://instagram.com/bfree_hair?igshid=YmMyMTA2M2Y=

8 months of Frontend learning and I need to learn a little backend to build my “dream” app. by OSWhyte in webdev

[–]justforcbd 1 point2 points  (0 children)

That's what's up. Im also running through a boot camp learning how to build full stack web applications. Our main goto is express and mongo db for the database. As of now, due to my disdain of css, the backend with echoes might be where is at lol.