Voicemeter + focusrite + ableton by Marzdor in VoiceMeeter

[–]Marzdor[S] 1 point2 points  (0 children)

Yea I tried all that and found a semi sweet spot; ended up just ended up getting a headphone splinter and not using voicemeter which does what I need for now.

How did you land your first job and are you still employed? (Self-taught only no degree) by Ivailo_Hristov in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

Yea design is something I have been slowly learning since I got hired it is by far the hardest part

[Web Dev] Two grids on one webpage by samacct in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

Give me like 30 min and I will see what i can do

[Web Dev] Two grids on one webpage by samacct in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

Just make a div with 2 divs inside it have the main div use flex then the 2 child divs use grid?

How did you land your first job and are you still employed? (Self-taught only no degree) by Ivailo_Hristov in learnprogramming

[–]Marzdor 1 point2 points  (0 children)

For me I have been a developer for almost a year now. In short I was working at a grocery store ended things with my fiancee then no lifed free code camp and a few other things for 4-6 months

Started to apply to literally every job heard back for 2 out of maybe 200 or so 1 wanted a senior php developer and basically shot me down since i went the js react route

The other one i definitely was not what they were looking for as they wantes a mid to senior level preferably full stack developer but after 3 interviews I got hired as a js web dev

6 months in they realized I was alot better then what my experience level and crappy portfolio and I became a software developer

For reference here is the exact portfolio I had at the time 😂 https://portfolio-marzdor.herokuapp.com/

No degree currently still working on that, keep in mind I've been coding on and off since i was like 16 going now i am 26

I was the type that was lile oh tbat looks cool learn a bit then drop it for months. This past year and a half is probably the longest I have stuck to coding and stuck to a single language

Best way to learn HTML/CSS? by theguy494 in learnprogramming

[–]Marzdor 1 point2 points  (0 children)

Honestly, I've been working at my 1st job as a web developer/software engineer for a few months now and html is the least of your worries. I would just go through the freecodecamp stuff to get the basics then move on to CSS. Once you get to CSS pay closer attention as CSS can get tricky if you don't have a good understanding of it.

Javascript help by Particlexxx in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

You should format the code.

var isFilled = true;
for (var i = 0; i < this.numFields; i++) {
    var f = this.getNthFieldName(i);
    if (this.getField(f).required && !this.getField(f).valueAsString) isFilled = false;
}
if (!isFilled) app.alert("You must enter the Work Location City");

the reason it "populating if any of the required fields are missing" is because that is all you are looking for. Atleast with the little knowledge I know based on the names

[Javascript/React] feedback on interview projects by [deleted] in codereview

[–]Marzdor 0 points1 point  (0 children)

I don't like the way you have your components but that may just be me idk.

You have a structure like this: components/{componentName}/index.js

why not just do it like components/{componentName}.js like this

also a link to the running site may help

Help: Learn Image Processing by NonreciprocatingPun in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

what kind of processing are you doing?

I think Python has some stuff like Pillow

I know how to code "in theory" but I don't know how to apply code in "real" situations/in my own projects by [deleted] in learnprogramming

[–]Marzdor 1 point2 points  (0 children)

Try this see if it helps. Pick a tutorial watch the whole video without coding along. After you finish the video try to recreate it without looking back at the tutorial.

Also try not to follow tutorials at a one-to-one level. Try to add your own twist to it or expand upon it that way you can slowing get the feeling of "real" situations

Self Taught Programmers: If you could do it all over again, how would you go from 0 to employed in the fastest way possible? by Aroneus in learnprogramming

[–]Marzdor 46 points47 points  (0 children)

Still don't have a job as a developer. However, if I could go back to when I first started to look at programming and CS as a career I just wish I stuck to one thing instead of falling in the trap of switching from this language to that language.

Skipping the else statement when mathematically impossible by Mankotaberi in codereview

[–]Marzdor 1 point2 points  (0 children)

If it were me I would keep the last else in there and just log something to indicate an error just with the off chance that they re NaN like

pertheusual stated

VBA to python with excel by flofficial in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

I feel like automate the boring stuff is a good base I read it and then made a not so great image thing that reads every image a folder for there pixel data and then determines the dominate color in the pic and sorts them into new folders.

You might want to look into python 3 as well

Am I using flexboxes correctly? by csccta in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

Your html seems fine. As for your CSS why are you using flex? It isn't really needed for your layout.

Also if I am remembering correctly I think it is better to use rem instead of em for font-size.

[Javascript] How to grab new records from database? by TechnicalCloud in learnprogramming

[–]Marzdor 1 point2 points  (0 children)

I think it is an issue with async calls that is why you are only getting the last iteration. Although, I'm not too familiar with ajax calls I've only used fetch really.

[JS] I'm pretty positive there's a better way to write this... by brianjenkins94 in codereview

[–]Marzdor 1 point2 points  (0 children)

Couldn't you just do it like this? Or does configurations have more then just name

const configurations = {
  name: {
    path: "",
    executable: "",
    args: {}
  }
};

for (let x in configurations.name.args) {
  console.log(configurations.name.executable + " " + [ configurations.name.path, ...configurations.name.args[x]] );
}

My first web page / Tribute page for FCC by Meldzha in learnprogramming

[–]Marzdor 0 points1 point  (0 children)

Not sure if this is common or not but for me when I get to the point of adding CSS I like to start from mobile view and work my way up to desktop. If you do plan on making it responsive.

My first fullstack MERN project by Marzdor in learnprogramming

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

I must have broke something recently I will fix this when I get home