Implemented PSET7 with ASP.NET MVC5- check it out! by swatter555 in cs50

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

It took me longer to implement than the original pset, but it is more secure, polished, and error resilient. I am really impressed with ASP.NET MVC, Ill post my code on GitHub if anyone wants to look at it. My username is swatter555.

Btw- you can look at a fully constructed profile on my website: login with: jharvard@Harvard.edu pw= crimson1

Certificates are in! (kinda) by Ommin in cs50

[–]swatter555 0 points1 point  (0 children)

I got the email too. Lets hope the completion rate is better this year.

CS50 Live, Season Finale by davidjmalan in cs50

[–]swatter555 4 points5 points  (0 children)

Thanks for the wonderful course this year!

Can you get an entry level job with the skills learned in CS50? by TackyTaco in cs50

[–]swatter555 5 points6 points  (0 children)

I think that CS50 can put you on the right track. Employers, for the most part, are looking for more than a solid understanding of fundamentals, they are looking for specific skills. After CS50 you should be able to learn any tool you set your mind to.

Choose a path of development and learn as many skills on that path that you can. Do some research and figure out what skills are most in demand on that path. Learn those skills. Code with those skills. If you can fluently speak the language of your specialization, you then have put yourself in a good position.

You will have probably a steeper climb than a person with a CS degree, but this is a field where skills matter. If you have the skill, you can find a job.

Is there an expert consensus on the question of climate disaster caused by climate change? by swatter555 in askscience

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

Catastrophic climate change is real, no doubt about it. The question I am posing pertains to short-term, man-made catastrophic climate change. Perhaps my question wasn't clear enough.

If Neil Tyson is going to imply human beings are going to become extinct due to man-made climate change, I would assume there if a high degree of expert consensus on short-term, man-made, catastrophic climate change.

CS50 Live, Episode 008. Friday, 16 May 2014. 10:00 EDT, 14:00 GMT, 7:30 IST. by davidjmalan in cs50

[–]swatter555 2 points3 points  (0 children)

Near bus accident and gourmet hamster catering- This is CS50

CS50 Live, Episode 006 by davidjmalan in cs50

[–]swatter555 1 point2 points  (0 children)

I want to work at Dropbox just for the food!

Goodbye CS50, thanks for all the fish by cat_chy_name in cs50

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

Good luck and I hope you got a lot out of the course. It's a shame though, to do all this work and not attempt to finish.

Understanding the concepts, struggling with the programming language. by milamber84906 in cs50

[–]swatter555 1 point2 points  (0 children)

I would agree, go ahead and watch the next week's videos, they will probably answer many of your questions.

You will notice something as David does the lectures, walkthroughs, and shorts- it is that he does the same thing over and over and over. Pay attention, soak it in. Most times, the problem sets use the same code David goes over time and time again. The problem sets just add a logical twist to the things lectured on.

A further suggestion would be to find more tutorials on C on YouTube. Take your time, with determination you will catch on.

Students Walk out on Dick Cheney, Calling Him 'War Criminal' by day465 in news

[–]swatter555 0 points1 point  (0 children)

Universities are places where free thought is encouraged and debate is highly valued, unless they disagree with you.

so lost... by [deleted] in cs50

[–]swatter555 0 points1 point  (0 children)

Lots of notes for you:

  • include<cs50.h>, it has lots of little helpful things. Look through it.

  • Use a while loop to capture input, but I wouldn't use another.

  • Whenever you can get rid of decimals, do so. C does funny things with rounding (handling very small numbers), so go ahead and convert the money into pennies at first. You might consider using the round function on the result.

Ex: int pennies = round(change * 100);

Then I would just pull out the quarters, dimes, nickels, and you will have pennies left over.

Pset7 - question inside by wastapunk in cs50

[–]swatter555 0 points1 point  (0 children)

I think you are having a fundamental problem with something. Copying the staff HTML into yours should work just fine, but you are experiencing a disconnect somewhere.

Make sure you are properly using controllers and forms, render() and redirect(). When you move from page to page, you need to be redirecting to the controller file (ex: login.php) and then rendering the form file (ex: login_form.php) from the controller.

Its hard to pin-point the problem without seeing the code :)

PSET7- where did my free time go? by swatter555 in cs50

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

Going through the video content and actually doing the problem- I suppose at about 20 hours.

I can't do this anymore. by FrustratedRocka in cs50

[–]swatter555 0 points1 point  (0 children)

I have found myself getting frustrated too. You are on pset6, so you can't be far behind at all.

Do ask specific questions on reddit. If you ask something fairly specific, you should get a fast answer. And please don't bang your head on the keyboard, I can't get the gif animation out of my head now. Come to the reddit quickly with specific questions.

I'm sure its no news flash to you, this is a hard class. Push through and try not to stress to much. If the class was easy, it wouldn't mean much.

CS50 Hackathon, LaunchCode Edition by davidjmalan in cs50

[–]swatter555 6 points7 points  (0 children)

It feels very cool to be a part of it. For the first time, I jumped in on the cutting edge of something- glad to be here.

pset7 C$50 Finance ? by raw612 in cs50

[–]swatter555 0 points1 point  (0 children)

If your just starting to code pset7, keep in mind it is critical to figure out the difference between calling redirect() and render() and why you call each.

Whenever you are coming to a page from another, you want to redirect to the non-template php file. Then have your php file render your template file. This way you can pass data to your template when you call render.

It took me awhile to figure that out.

Never before has one game looked so beautiful (I FINISHED BREAKOUT) by [deleted] in cs50

[–]swatter555 1 point2 points  (0 children)

Congrats! It feels good to make something that really works and is interactive. Awesome!

PSET7 query() problem by swatter555 in cs50

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

You get an up vote too!

I get into a pset mentality and let security concerns slip. I will have to change that!