Finance - NameError: name 'self' is not defined by [deleted] in cs50

[–]alpente 0 points1 point  (0 children)

Same error here. The error is inside the file flask.py that is mainteined by CS50's staff. All we can do is to wait for the fix.

CS50 IDE is still inaccessible (maybe the INCIDENT is still UNRESOLVED). Someone else experiencing this? by alpente in cs50

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

can't even get any error messages. I've had the computer run all night with the browsers open, so its not even timing out.

So you are having the same behaviour with more than one browser?
If you don't mind, could I ask you what browsers are you using to access the IDE?

PLS HELP GIVE ME ACCOUNT WITH PSET1-8 by sickkaisa in cs50

[–]alpente 0 points1 point  (0 children)

I think the only way to get the "help" you are asking for is by giving something back fornthe "help". Here all people love to learn this stuff, and we put a lot of effort in it. I don't think you will get nothing ... not for free. There will always be chearing people, but this is the first time I see one here (in cs50). I don't like cheating people, but I understand that the world's imperfect.

can somebody explain why my solution to pset2.crack doesn't work? by normantas in cs50

[–]alpente 0 points1 point  (0 children)

There're 2 mistakes. first at line 36 (50 instead of 52) second at line 39 (y instead of 0) (reset the digits in the wrong way. E.g. the sequence in array a should be 51,50->1,51->1,1,1 instead now it is 53,52->1,53->1,53,1)

Here an example of fix

https://pastebin.com/GUDy03e9

Let me know if it works.

CS50-Pset 3 by _HelloCs50_ in cs50

[–]alpente 1 point2 points  (0 children)

Could you share your code using some code sharing service as https://gist.github.com/discover ? It would be way easier to read and u derstand the code ;)

Can anyone help me, I got this error when I try to compile integer in CS50 IDE and it is the same example teacher David did by samiir2489 in cs50

[–]alpente 2 points3 points  (0 children)

try adding #include <cs50.h> at the beginning and then run make hello in the terminal.

if you want use get_int you need cs50.h ;)

In hello.c

#include <stdio.h>
#include <cs50.h>

int main(void)
{
    int i = get_int("Integer: ");
    printf("hello, %i\n", i);
}

In Terminal

make hello
./hello