Teach Yourself Computer Science learn programming |
- Teach Yourself Computer Science
- Finally got a job, thank you guys!
- 4 month free web-development program for people who want to start their career in tech.
- [Python] How does count[character] = count[character] + 1 add 1 to the value of zero?
- Question regarding the math involved in video game design/programming
- When to start doing Leetcode questions?
- Language for Cybersecurity?
- Can someone give me some advice on c++ memory management
- What are the differences between AngularJS, NodeJS, ReactJS, VueJS, jQuery?
- Copy and pasting, then redesigning it myself?
- Any program that doesn't use "X = {Y}" is a shitty language to teach people to code with.
- [Node - https] Need help sending request to website API
- Need a 10-day project idea...
- Question about large storage segment faults
- How can i make a line of text print on a random line? (C++)
- Imposter’s Handbook: Anybody bought it & read it ?
- You Should Take an Algorithms Design Class through MIT OCW With Me!
- Radio/Live Audio Streaming
- Best way to put GTK+3, Python3 and Sublime Text 3 on a flash drive for portable use?
- Do you like programming challenges? Check out new Kotlin puzzlers!
- Building a bot that comments on a Facebook profile
- help with seg fault (with github link)
- If you've been coding for a while go back and look and the more advanced features of your language/framework.
- Is there a way to take inspiration from gog.com without seeming like a copycat?
Teach Yourself Computer Science Posted: 19 Apr 2018 05:57 AM PDT If you're a self-taught engineer or bootcamp grad, you owe it to yourself to learn computer science. Thankfully, you can give yourself a world-class CS education without investing years and a small fortune in a degree program 💸. There are plenty of resources out there, but some are better than others. You don't need yet another "200+ Free Online Courses" listicle. You need answers to these questions: - Which subjects should you learn, and why? - What is the best book or video lecture series for each subject? This guide is our attempt to definitively answer these questions. https://teachyourselfcs.com/ *Note: The above text is a description directly taken from the site. This is not my own work. I'm only sharing what I found interesting and useful. [link] [comments] |
Finally got a job, thank you guys! Posted: 19 Apr 2018 06:45 PM PDT Just wanted to say thank you to all of you. I've been lurking and learning to program off of here for about two years. Everybody was very welcoming and I think that made learning it so much easier. After spending a year and a half teaching myself and then attended a C# .Net bootcamp I've finally landed a position. I really believe it was because of my projects I made before joining the bootcamp (the projects where I learned from you guys) that set me apart. I'll definitely try to give back to this community as much as I can. If anybody has any questions about the process to how I got here, feel free to ask. Thank you everybody again my life is changed forever! Edit: In case you want to know how many applications and whatnot it took. It took 21 apps to get one offer. I had three interviews from those apps and one offer (so far) from those three interviews. One i just went to the final round interview this morning before I got my offer at another company. Then there's the company I accepted the offer today, and then a large company you've probably heard of and had a second round of interviews scheduled for next week. [link] [comments] |
4 month free web-development program for people who want to start their career in tech. Posted: 19 Apr 2018 04:47 AM PDT HackerBay has started a free 4 month program to help people start a career in tech for free. It's a not-for-profit initiative. Students in the final or pre-final year who think the education system is not serving them well should definitely apply. Here's the link: https://university.hackerbay.io/ Here are the reasons why you should apply: 1. You get to learn skills that are in most demand in the world of web-development today. 2. You can learn it from anywhere. Just need a computer and a decent internet connection. 3. It's free. [link] [comments] |
[Python] How does count[character] = count[character] + 1 add 1 to the value of zero? Posted: 19 Apr 2018 09:58 PM PDT Hello, I am quite confused as to how this function works. But I am unsure how the count[character] adds one when it is a string value that is being added to 0: https://gist.github.com/Stephen150/25bf36703c4c4b483f9dd5b2cc516ff1 Edit: Could someone break down this function for me? [link] [comments] |
Question regarding the math involved in video game design/programming Posted: 19 Apr 2018 07:49 PM PDT Hi, I'm 15 and very interested in pursuing a career in programming/video game development. However, math is not my strong suit. So my question is, how big a part of programming is math, from what I hear, it's mostly algebra, is it advanced algebra or basic? Is there anywhere I could see an example of it, or is there somewhere better to post this? [link] [comments] |
When to start doing Leetcode questions? Posted: 19 Apr 2018 09:44 PM PDT I am currently going through Problem Solving with Algorithms and Data Structures with Python By Brad Miller and David Ranum, Luther College: http://interactivepython.org/runestone/static/pythonds/index.html Will going through all of this enable me to start doing easy problems? [link] [comments] |
Posted: 19 Apr 2018 05:57 PM PDT Hello Reddit. I'm a complete beginner when it comes to programming. I'm interested in Cybersecurity, but I don't know what language would be best for beginners/Cybersecurity. Any suggestions? Thanks in advance :) [link] [comments] |
Can someone give me some advice on c++ memory management Posted: 19 Apr 2018 07:27 PM PDT I'm having a little bit of trouble figuring out how to utilize heap vs stack allocated objects in c++. Coming from a Java background, this isn't really something I do often, but i'm trying to learn. One big problem i'm having is the Stack created objects lifetime thing. I know that with Stack created objects, they get destroyed when the variables go out of scope, but how does that work in the case of arrays inside class? For example, If I had an array member inside a class, and I populated the array with stack created objects from within a method, would the array elements be destroyed as soon as I leave the method? or would they stay inside the array until the object instance was destroyed? Again, i'm really out of my element here, so please don't be too harsh. Any advice you could give to help me understand memory management better would be greatly appreciated. [link] [comments] |
What are the differences between AngularJS, NodeJS, ReactJS, VueJS, jQuery? Posted: 19 Apr 2018 09:39 PM PDT Hello everyone and good evening/day, I'm fairly new to javascript and I'm looking for a real simple explanation between the different purposes of these JS libraries/frameworks. For example purpose does each library have, let's say in what scenario will someone use Angular vs in stead of nodeJS for example. Thanks in advance for everyone's help and the more detail and simple the explanation the more it will help me and other newbies like myself Ha [link] [comments] |
Copy and pasting, then redesigning it myself? Posted: 19 Apr 2018 09:31 PM PDT I'm free code camp right now and just got to the first project, I drew out an amazing site structure on paper, and to implement a lot of it I googled "how to make a navbar in css" and copy and pasted, then restyled a lot. Is this straight up cheating, or is this common practice? [link] [comments] |
Any program that doesn't use "X = {Y}" is a shitty language to teach people to code with. Posted: 20 Apr 2018 12:35 AM PDT Assigning variables needs to make sense when you're teaching from nothing. (using X and Y as placeholders. {Y} is the Variable, X can be anything that becomes assigned to Y so now {Y} is whatever it needs to be.) [link] [comments] |
[Node - https] Need help sending request to website API Posted: 20 Apr 2018 12:29 AM PDT Hey everyone, I am trying to make a simple https request in Node to a websites API. However, when I make the request I get a message saying 'Missing required request header. Must specify one of: origin, x-requested-with'. Not really sure what to do and can't find a solution online. When I make the request using Python it works fine but it won't work for some reason with Node.js. Here is the code: https://codeshare.io/G6XdJm API : api.smash.gg Thanks for helping! [link] [comments] |
Posted: 20 Apr 2018 12:20 AM PDT As it turns out, I'm gonna have10 days off college, interrupted only by 2 hous of classes on the first day. Very cool, but I have literally no idea what to do during the break. What are some medium-sized projects one could do in around that amount of time? Is doing a small game in Unity just 4 fun a good idea or should I rather polish my existing skills? I know C++ and some web dev basics (front- amd back- end). Thanks! [link] [comments] |
Question about large storage segment faults Posted: 20 Apr 2018 12:16 AM PDT So I have a program I am working on right now, and after inserting ~1.4 Million values into a linked list, it seg faults, and I do not quite understand why it just seg faults after it already inserted 1.4 million values and was just curious as to how that is possible. [link] [comments] |
How can i make a line of text print on a random line? (C++) Posted: 19 Apr 2018 08:15 PM PDT Anyone have any idea how i could make a line of text print to a random line? For example if i have 5 'cout' statements like cout << cout<< cout << cout << cout << How could i take some lines of text i have and print it out to a random line? [link] [comments] |
Imposter’s Handbook: Anybody bought it & read it ? Posted: 19 Apr 2018 11:54 PM PDT |
You Should Take an Algorithms Design Class through MIT OCW With Me! Posted: 19 Apr 2018 07:59 PM PDT Hi Friends, This is literally my first post on Reddit, so bear with me haha. I'm about to start taking another class through MIT OCW (Design and Analysis of Algorithms) and had the idea of trying to get a group of interested people together to go through the course with. I've gone through a couple OCW classes now and to me, they've been incredibly valuable in furthering my understanding of core computer science concepts. They're highly detailed, very challenging, and cover a wide variety of topics. To me, they go much deeper than typical 6-week online courses. This course will cover some awesome topics (you can see the outline here), so if you have any interest or questions, you should PM me or join the discord channel here. Feel free to commit to any level you're comfortable with, but I would suggest taking it as seriously as you can to get the most out of the course! You'll get some cool projects out of it to put on GitHub, and you'll be better equipped to handle certain interview questions. There are some pre-requisites for the course, you can find the course outlines for those here and here. The pre-reqs cover discrete mathematics and an intro to algorithms, so if you think you're comfortable with those concepts, then you should be fine! The course is just for fun and personal growth, but it would be great to find some people to study with as learning with others is always nicer than solo. I'm aiming to start the course ~May 1st. I'll be cross-posting this to a few other boards, I hope that's okay. Best, Logan [link] [comments] |
Posted: 19 Apr 2018 11:28 PM PDT I've been playing around with websites integrating apis and libraries and messing around a bit, and I was wondering how a website plays audio such as kusc.org, where they have an audio stream from the radio, I was wondering if there is a software/hardware requirement that the broadcasters have that also allows them to put their audio stream onto their website, or if there is a software method for getting an audiostream from the radio and playing it live, onto the website. I've been trying to learn sequentially with small projects that I find interesting, and this one in particular I would really like to try to work on, but I haven't been able to find out how to do it online yet. The end goal is to be able to (hopefully) build a website that may be able to get and integrate live audio from the radio and stream it, or from my own live audio stream. Any and all help/suggestions would be so awesome! [link] [comments] |
Best way to put GTK+3, Python3 and Sublime Text 3 on a flash drive for portable use? Posted: 19 Apr 2018 11:21 PM PDT I've tried using MSYS2 , but I don't think I understand it enough to set it up. I'm planning to use these mostly on a windows computer at work. [link] [comments] |
Do you like programming challenges? Check out new Kotlin puzzlers! Posted: 19 Apr 2018 11:20 PM PDT |
Building a bot that comments on a Facebook profile Posted: 19 Apr 2018 10:43 PM PDT Hey guys, I make my living as a web developer (mainly WordPress sites, as well as some maintenance stuff on other CMSes and custom-built sites). I wouldn't say Google is likely to hire me as a software engineer any time soon, but I do know my way around some code. I want to start a new project and I have no idea where to start; maybe this sub can be helpful. I'd like to create an automatic Python script that monitors a particular Facebook page for new posts that contain a certain word. If a post contains that particular word, the script should comment on that post with a simple string. That's it. I've already knocked out a few Python tutorials so I'm comfortable enough with setup and syntax. What do you think the next step is? [link] [comments] |
help with seg fault (with github link) Posted: 19 Apr 2018 09:56 PM PDT i am getting a seg fault on line 53 in prioqueueUNS, insertItem when trying to access head and I have no clue why, any help is appreciate https://gist.github.com/colbygrappe/0adced0385d4a2336c10b5698e8ade74 [link] [comments] |
Posted: 19 Apr 2018 03:56 PM PDT Chances are there are features glossed over by tutorials or things you read about and didn't understand. Now that you are more advanced go back and take a look. Once you learn something new look how it can be used to improve your code. Maybe refactor a function, maybe just save it for the next time you do something similar. [link] [comments] |
Is there a way to take inspiration from gog.com without seeming like a copycat? Posted: 19 Apr 2018 09:25 PM PDT I love both their desktop and mobile websites, I kinda want to take inspiration from them. So, how do I go about this without seeming like a copycat? [link] [comments] |
You are subscribed to email updates from learn programming. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment