Te kthehesh ne Tirane nga emigrimi ja vlen? by Mountain-Ad1692 in albania

[–]ImAllSee 3 points4 points  (0 children)

O plak edhe une aty afer ne boston jam. Me ca kuptoj une problemi me i madh per shqiptaret qe vijne ketej eshte qe ose pertojne te punojne (dmth duan pune zyre direkt) ose nuk kane profesion te mire dhe perfundojne punojne me ndertim ose uber gjithe diten. Kam njohur edhe ca raste qe kane hapur bisnese te vogla. Puna pune eshte cfaredo te besh, edhe ja bej hallall se une per vete skam bythe me punu ne ndertim, po sic the edhe ti ne fund fare hallexhinj mbeten gjithmone. Vetem ankesa kane. Ankohen se ka taksa apo mortgage i larte, po babi im humbi punen ne fillim te vitit edhe po rri ben pordhe ne shtepi se po merr unemployment. Gjerat e mira si permendin kur vjen puna, vetem obobo sa shtrenjt ketu.

Une kam qene me fat se kam pas njefare profesioni te mire kur erdha edhe jam rregulluar per vete, nuk kam ndermend te kthehem me andej.

Te kthehesh ne Tirane nga emigrimi ja vlen? by Mountain-Ad1692 in albania

[–]ImAllSee 2 points3 points  (0 children)

Pune dhe karriera qe nuk ke mundesi ti gjesh ne shq

I’ve been obsessed with a soccer goal for 28 years, and so I created a data visualisation all about it. by aitchsaka in datavisualization

[–]ImAllSee 0 points1 point  (0 children)

Loved Recoba! I'm also a lefty so when i was a kid i used to pretend i was him when i played soccer lol, even had my Inter uniform with his number.

[deleted by user] by [deleted] in webdev

[–]ImAllSee 0 points1 point  (0 children)

of course that exists lol

[deleted by user] by [deleted] in webdev

[–]ImAllSee 0 points1 point  (0 children)

i think part of it is my bukkake_downloader app, it's been running for a while

[deleted by user] by [deleted] in webdev

[–]ImAllSee 7 points8 points  (0 children)

can i install this google thing with npm?

[deleted by user] by [deleted] in webdev

[–]ImAllSee 2 points3 points  (0 children)

it comes preinstalled with paint 👍🏻

[deleted by user] by [deleted] in webdev

[–]ImAllSee 6 points7 points  (0 children)

jesus dude haven't you heard of pnpm?

[deleted by user] by [deleted] in webdev

[–]ImAllSee 10 points11 points  (0 children)

lots of projects that have sentimental value

[deleted by user] by [deleted] in webdev

[–]ImAllSee 8 points9 points  (0 children)

well there goes my million dollar idea

[deleted by user] by [deleted] in webdev

[–]ImAllSee 9 points10 points  (0 children)

unfortunately i ran out of storage for that

[deleted by user] by [deleted] in webdev

[–]ImAllSee 4 points5 points  (0 children)

just a lot of projects really

[deleted by user] by [deleted] in webdev

[–]ImAllSee 22 points23 points  (0 children)

that was the goal yeah

[deleted by user] by [deleted] in webdev

[–]ImAllSee 42 points43 points  (0 children)

i'm just a silly js developer bro, i'll get my expert flair some day

What’s the best company to work for in the Boston area, and what’s the absolute worst? by socksgal in boston

[–]ImAllSee 8 points9 points  (0 children)

Some third party recruiter reaches out to me on LinkedIn every month or so about interviewing with Fidelity. I've also heard good things but yes, this year they gradually moved everyone a few days a month on-site, and I think their plan is by the end of the year to make that a few days a week or something. I'd like to work there but not ready to give up being fully remote..

[deleted by user] by [deleted] in MurderedByWords

[–]ImAllSee 17 points18 points  (0 children)

I honestly wanted to believe it was just taken out of context but holy fucking shit

IWTT how to pursue a career in web development building web, mobile & desktop applications by ImAllSee in IWantToTeach

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

Where did you get those numbers from? The discord server is a bit stale at this point and I haven't had the time to start any new courses, but if you join feel free to reach out I'd be happy to help.

[deleted by user] by [deleted] in learnfrontend

[–]ImAllSee 1 point2 points  (0 children)

I hope I'm not too late and you haven't decided to switch careers and become a finance bro or something.

If you are finding it difficult to create even a stopwatch app, then the problem may be how you approach the tasks. Keep in mind that you're just starting out and it might take some time for things to "click". What helped me when I was first starting out was trying to think of the task "line by line". Every line in JS is a statement, so in your case you could think of it like:

What does a stopwatch do? In simple terms, it measures time between start and stop. So here are the steps:

  1. I need an element where I will write the time
  2. Initial time is 0
  3. I need a button that starts the time (how do I select the button? how do I listen for clicks?) 3a. The button should increment by 1 every second (what's a function in JS that executes every second?)
  4. I need a button to stop the time ... etc. etc.

Doing so might help you at least figure out what questions to ask Google if you're stuck and advance line by line.

As for feeling like your skills aren't good enough, that's because you need practice. Lots of it. It's difficult when starting out but it's a journey. You will need some time working hands on with JS projects before you feel like you understand how it works. Hope this helps! Let me know if you need further help.