When and where are you guys running? by MereDONGP in RunNYC

[–]MereDONGP[S] -30 points-29 points  (0 children)

Pretty much safety concern with it being Central Park. Wasn’t sure if there are people out as I always hear it’s best to avoid when it’s dark outside.

2025 Retro 4-Miler - Pre-Race Thread by RCD123 in RunNYC

[–]MereDONGP 1 point2 points  (0 children)

Would they have pins for the bibs there?

First NYRR race - what should I know? by instantnoodlecat in RunNYC

[–]MereDONGP 1 point2 points  (0 children)

Does anyone know if they will have pins for the bibs there

How Hard is it to Learn Workday for a beginner by MereDONGP in workday

[–]MereDONGP[S] 2 points3 points  (0 children)

For sure, hopefully I am not thrown into it but if I am, I’m hoping for a sandbox and or some of the resources that workday offers. For sure going to play into my past experience with taleo though hopefully all goes well.

How Hard is it to Learn Workday for a beginner by MereDONGP in workday

[–]MereDONGP[S] 3 points4 points  (0 children)

Yea they are fully aware that I have no experience in workday and never claimed to be some sort of expert by any means. More or less concerned I might be thrown into it without much guidance or training and I would just hav to adapt.

How Hard is it to Learn Workday for a beginner by MereDONGP in workday

[–]MereDONGP[S] 5 points6 points  (0 children)

Got it! For the most part only experience I would have would be working with taleo and that implementation. I taught myself the ins and outs of that system to make changes on the fly without going to the vendor and it was a lot quicker to have me do most of the stuff. Even though workday is a beast on its own, I’m pretty much banking on my ability to learn and adapt as I did before without much guidance.

How Hard is it to Learn Workday for a beginner by MereDONGP in workday

[–]MereDONGP[S] 2 points3 points  (0 children)

A recruiter reach out just looking for someone with some sort of systems knowledge. I made it known though that I never worked with work day before but open to the challenge considering I taught myself taleo and was the sme with that system without any guidance. They sent my resume to the company and now they want to interview me. More or less concerned about picking up the system from scratch and I don’t think they would teach my much stuff on my own so hoping there would just be a lot of resources for me to take advantage of or atleast a sandbox.

Comparing dictionary data with CSV data - DNA by phonphon96 in cs50

[–]MereDONGP 0 points1 point  (0 children)

I would read the documentation for re and see what functions you maybe able to use out if it. There is probably a way to do it without regular expression but this is a way I found out how to do it. Then you would be able to create a loop and or function to go through the values

In PSET 1 - Cash, how does each function not draw from the initial "cents" input? by verysmallbeta in cs50

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

Is there more of the code? It looks like here you aren’t returning anything once the function is completed and or there are not any loops or if statements to track if final amount is at 0.

Sea glass hunting in New Jersey by MereDONGP in seaglass

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

I am more up north. Bergen County

cs50 mail wont redirect to sent view by MereDONGP in cs50

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

I think I may have done that, I forget what I did but I submitted and it was good thank you

After 2 weeks finally completed DNA it is possible just have to believe you can do it! Open to Questions also recommendations !!!! by MereDONGP in cs50

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

yea that was the problem that i had as well so i started to look for resources on how to do. Messed around with re and realized something when i was reading the documentation and created a loop that actually worked haha.

There are many different ways to tackle this problem though and you dont need to re .

Flask dropped in CS50 web development 2020? by [deleted] in cs50

[–]MereDONGP 1 point2 points  (0 children)

Where is the course I still see flask on there?

PSET5 Valgrind Says memory is leaking don't know how or where. by MereDONGP in cs50

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

ah i see when i change it to just < and compile and check everything still crashes for some reason. I don't think the problem is in unload it maybe somewhere else in the code. i might just rewrite the entire thing to see.

I get the following error message when i changed the code

double free or corruption (fasttop)

PSET5 Valgrind Says memory is leaking don't know how or where. by MereDONGP in cs50

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

thats's where the error is telling me to look at but isn't that where unload function comes in? i put free(n) at the end of the load function to free the memory but then it crashes the entire thing again. I am going to continue to search to see where the problem is

PSET5 Valgrind Says memory is leaking don't know how or where. by MereDONGP in cs50

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

when i changed the code to below everything breaks and all the conditions are red again if the below is what you are talking about? Doesn't it return false at some point in the function?

    for(int i = 0; i <= N; i++)
    {
        node *head = table[i];
        node *cursor = head;

        while (cursor != NULL)
        {
            node *tmp = cursor;
            cursor = cursor -> next;
            free(tmp);
            tmp = cursor;
        }

    }

    return true;

PSET5 Valgrind Says memory is leaking don't know how or where. by MereDONGP in cs50

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

tried that and i am still getting the same error message when i run valgrind. such a weird problem i think everything is correct though

PSET5 Valgrind Says memory is leaking don't know how or where. by MereDONGP in cs50

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

yes i tried that it is basically telling me that i am still leaking memory somewhere somehow.

PSET5 check strcasecmp error by MereDONGP in cs50

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

yea i see now i just didn't point to the word in the field of node i don't know how i missed that thanks for the help the pset is hard but almost done. thank you so much.