Types of roles in Programming & How to find what's right for you learn programming |
- Types of roles in Programming & How to find what's right for you
- Understanding Computer Science: What else should I learn when starting programming?
- From Learning Python to Becoming Kaggle Kernels Top 20, A Road-map
- Pseudocode is easy... Actual Code is hard
- Coding is Too Hard For Me
- Self learners, how many hours a day do you study?
- Java mindset
- What's the fastest route for me to make freelance money with python?
- How do I make sure I've properly created a new release/version of a package on Github and that I can install it on another machine?
- Computer Science vs Software Engineering?
- Beginner programmer in need of help! (C++)
- Before I waste my money, is it worth it to get paid online courses, or should I just settle for free alternatives?
- Why does Draft.js have tons of if (true) s in its code?
- Is Javascript much inferior to Python when it comes to ML/Automation/AI?
- Beat way to learn frameworks like numpy, pandas, etc.?
- Returning to program. Help Please!
- I'm getting multiple errors but I cannot find where the errors are. (Java)
- Could use some help
- Dumb question
- Practice Websites Recommendations For C
- C++ What does int a[110] mean?
- What is it to be a Junior Developer?
- Question about filtering and sorting data pulled from a database? (Javascript)
- Why does the outer loop only iterate n-1 times for selection sort?
Types of roles in Programming & How to find what's right for you Posted: 26 Aug 2020 04:52 PM PDT Hi all, as someone with a CS degree and 2+ years experience in the industry, I thought it'd be useful to write up a guide on the different programming roles that exist currently. I believe this can be helpful to determine the tools/languages/skills to learn early on and can eventually lead to a fulfilling career. :) Please let me know your thoughts! [link] [comments] |
Understanding Computer Science: What else should I learn when starting programming? Posted: 26 Aug 2020 04:55 AM PDT Like many others learning programming, I lack any formal CS background. Outside of some exposure to C++ in school, all of my learning has been self directed. I've found myself asking many of the common questions posed here & in other related forums. When it comes to coding, It somewhat feels like I am a mechanic learning how to build an engine before I understand how a car operates. I can definitely see the advantage of learning CS at a university level in that you get a lot of the theoretical knowledge and better see how the pieces fit together.. Are there any resources or things I should supplement my studies with to understand the field more broadly? **EDIT*\* I appreciate the overwhelming response. Based on the replies, it would of better for me to expand on my question a bit as it relates to programming itself rather than to CS as a whole. Like with starting anything new, the depth of what there is to learn is daunting. I'm most interested in universal topics that are important to developers in general. I appreciate everyone's input. [link] [comments] |
From Learning Python to Becoming Kaggle Kernels Top 20, A Road-map Posted: 26 Aug 2020 07:24 AM PDT Road-map: https://imgur.com/a/czej6D9 Kaggle profile: https://www.kaggle.com/shahules I was talking to my friend and was super impressed with his journey, so I created this hoping it'd help people find their bearings and make things a bit more clear. I've added the courses, projects, and the approach he took to get here. Let me know what you think, and I'll start doing more Road-maps. :) [link] [comments] |
Pseudocode is easy... Actual Code is hard Posted: 26 Aug 2020 08:03 PM PDT Does anyone else feel like they can write the pseudocode to solve all of the problems they are given, but the skills they lack is the actual functional code? I'm trying to figure out how to bridge that gap, and I don't know if it's tutorials, or textbooks or what. Googling isn't helping me here and it may just be that my pseudocode is skipping steps. I'm not sure. [link] [comments] |
Posted: 26 Aug 2020 07:28 AM PDT I just started learning to program with the CS50 courses and everything is so hard despite being on Week 1. I thought the workload was okay for me until I tried to write a code for the Mario game and I absolutely had no idea where to start. I'm also too hard-headed to give up and look at the answer key. After hours of sitting in front of the screen trying to find a solution, I finally gave up and looked at the guide but I did not understand. Maybe it's because I'm a slow learner and it's hard for me to remember things but I feel like programming may not be right for me. But again, I remember that these courses are what motivates me to wake up and have something to look forward to doing. When I got my first code (hello world) to work, I felt like I was on top of the world. I don't want to give up, I really don't want to, but I need some reassurance. Please tell me I'm not the only one facing this problem and that if I find a problem as easy as this challenging then maybe I might need to find a different career path. Please tell me that there's a way for me to get better. [link] [comments] |
Self learners, how many hours a day do you study? Posted: 26 Aug 2020 03:16 PM PDT Your post body must containt text, so here you go. [link] [comments] |
Posted: 26 Aug 2020 07:54 PM PDT Hey yall, So I'm pretty decent at C, and I like to use Python for most personal projects, but I have to start using Java for work. How do I get into the Java mindset? I'm pretty unfamiliar with the language, but I am slightly more familiar with the OOP concepts. Are there any resources out there that skip the syntax and intro stuff, and are more of the'Java for programmers' type approach? [link] [comments] |
What's the fastest route for me to make freelance money with python? Posted: 26 Aug 2020 09:10 PM PDT I'm in highschool so I'm not looking to make a ton of money, making any money at all from doing something that I already love in itself would be incredible. But anyways, I'm willing to put in work for this I just want to know what the best route is. I have also been learning android development, is this something I could practically do freelance work with? I'm a highschooler so I understand that all of this might be impractical for someone in my stage of life but my question is, if i really put in the work whats the most practical route? Sidenote: I already know python, java, and basic html/css. For example: is webscraping or Django gonna get me there faster? [link] [comments] |
Posted: 26 Aug 2020 08:42 PM PDT I have a private repo that a former coworker used to manage and now I need to make an update to the repo and install the new version on another machine. I pushed the new source code and see the changes reflected on github.com. I made a new Github release (let's say v0.2) and see that it points to the newest changes as well. However, when I go to the machine where I want to upgrade the package from v0.1 to v0.2, I run How do I check that v0.2 is on Github and that I can install that newest version elsewhere? Do I need to pass in additional parameters to the [link] [comments] |
Computer Science vs Software Engineering? Posted: 26 Aug 2020 06:24 PM PDT I've seen so many articles and posts around here and honest to God I just want a simple answer. I want to code in University to eventually become a game dev and my specific uni offers both majors. Which one should I go into? I'm pretty good at Math, since apparently that makes a difference. [link] [comments] |
Beginner programmer in need of help! (C++) Posted: 26 Aug 2020 06:19 PM PDT this is my code: https://gist.github.com/homeinboy/e273ba0a07d154da9edf9aeb5657da16 (c++) What am I doing wrong? I think i'm falling behind from my peers and I have no idea what i'm doing. The instructions are: determine the smaller of two integer values passed in as parameters 1 and 2 store the result into a parameter 3 the return type must be void use pass by reference ONLY where needed parameters that do not need to change for the function to work should be pass by value or pass by const reference I also don't know how I should start with swap if anyone could help me [link] [comments] |
Posted: 26 Aug 2020 06:14 PM PDT I'm 14 and I've used free apps up until now, but I'm feeling like they're not doing much for me, and im wondering if I should upgrade to a paid course. Im starting with JavaScript btw Edit: thank you all so much, I've decided to stick with freecodecamp.com for now, and maybe get a book sometime later [link] [comments] |
Why does Draft.js have tons of if (true) s in its code? Posted: 26 Aug 2020 06:04 PM PDT I'm debugging a draft js editor right now, and I noticed an if (true) statement, which obviously always executes the code inside the statement. Is there any reason somebody would do this? I control-f'd it and it's used 138 times in one of my build files. This might not be a draft.js thing, by the way, as I'm just looking at next.js build files. example: [link] [comments] |
Is Javascript much inferior to Python when it comes to ML/Automation/AI? Posted: 26 Aug 2020 08:39 AM PDT I've been very torn between JS and Python, since i do wanna create websites, but i also wanna create AI software and things of that nature. I noticed in my country alone the number of JS jobs is twice as much as Python's, which is making me feel i probably should go for JS. In fact, since the absolute vast majority of the jobs require multiple languages, i think it would probably not be a bad idea to learn both. Though i don't know if Python and JS would be better than JS for back and frontend. [link] [comments] |
Beat way to learn frameworks like numpy, pandas, etc.? Posted: 26 Aug 2020 11:15 PM PDT Hey, I am starting a data science class that will deal w these python frameworks, and more. What is the best way to learn about them? [link] [comments] |
Returning to program. Help Please! Posted: 26 Aug 2020 10:48 PM PDT Hello! I write this post because I was a web developer with 2 years of experience in Frontens development, butI haven't been into programming since a year and six months I have forget a lot of things involving CSS3, Linux, Terminals, Angular, HTML5, Wordpress and other things, and I need some advice to return to be a web developer. I have been doing this wordpress course for almost a month and I have been trying to do other courses, involving CSS3, Linux and Nativescript at the same time. However, Í feel that I'm too slow at finishing at doing the Wordpress course (I dedicate a single hour every day to view that course), and I feel bloated watching the other courses (plus reading about other things that are not related to programming, like writing) every day while watching the Wordpress Course (I dedicate an hour to every one of these). On top of that, I feel that I am learning not much of wordpress because I'm only following the classes by doing the same that the instructor do in the classes. I'm not ingraining the knowledge by doing projects on my own. I don't know what to do. Help please. [link] [comments] |
I'm getting multiple errors but I cannot find where the errors are. (Java) Posted: 26 Aug 2020 06:52 PM PDT public class DiceRoller { } [link] [comments] |
Posted: 26 Aug 2020 10:37 PM PDT This might not be the right place to post this but I don't have anyone else who would understand. I've been trying to learn web dev on my spare time after work and on weekends. I have html and css down and am working on JS. I was concerned at first because I don't have any degree but after being on learn programming I know that should't stop me if I can show I can do the job. But covid completely messed me up. I was furloughed and am not sure if they will eventually lay us off because of how long this pandemic is lasting. I was determined to use this time to focus on learning and doing projects but then I saw that software engineers are getting laid off right now too. And I just can't stop worrying that I won't stand a chance against all the other developers looking for a job who either have degrees or experience plus everyone else who's using this time to learn programming. If there's a recession companies will slow down hiring. I don't have anyone to rely on but myself as a single mom of two I'm just so worried that I'll spend this time learning and the odds will still be stacked completely against me. Wondering if I should turn my focus on something else to have a better more realistic chance at getting a job. Sorry for the long post I just can't stop worrying about this. [link] [comments] |
Posted: 26 Aug 2020 06:49 PM PDT I literally started today learning programming, I'm using Visual Studio and every time I want to point with the mouse between two letters, it automatically marks one of those two letters to delete or replace it. It was working during the day but no it's like that. I hope you understand, english isn't my main language and reddit doesn't let me post a picture for some reason. [link] [comments] |
Practice Websites Recommendations For C Posted: 26 Aug 2020 07:50 AM PDT Can any of you recommed me good and free practice websites for beginners learning C? I think a good amount of practice problems would help me improve. Thanks! [link] [comments] |
C++ What does int a[110] mean? Posted: 26 Aug 2020 10:20 PM PDT I see a lot of competitive programmers do this? I know it's an array, but why the number 110? Is there a reason for this? [link] [comments] |
What is it to be a Junior Developer? Posted: 26 Aug 2020 10:07 PM PDT what does the first job for junior devs looks like I'm graduating this year and I don't have a specific idea what it's gonna be like working full time I've had 2 internship in the past, but I kinda wanna know what is gonna be like working full time in a big company do they consider the fact that we are fresh graduates and stuff?do the tasks given are gonna be from easy one to the hardest Ps:I really have this imposter syndrome & doubts. [link] [comments] |
Question about filtering and sorting data pulled from a database? (Javascript) Posted: 26 Aug 2020 09:55 PM PDT Hi guys, I'm working on a project using the MERN stack. I am using a get request to get data from my database and storing it into an array which then gets displayed into a table. I want to add filtering and sorting options. I want to know which of the following approaches is better in general. Is it better to just do the filtering and sorting operations on the array or do another get request with the sorting and filtering options included? [link] [comments] |
Why does the outer loop only iterate n-1 times for selection sort? Posted: 26 Aug 2020 09:43 PM PDT I have seen some people do the outer loop through n iterations while others do only n-1 iterations. If a person does n iterations for the outer loop, would that still count as selection sort? I cannot seem to figure out why though a person should only do n-1 iterations on the outer loop? I have seen many examples and videos and every time I keep thing the person should or is doing n iterations. Could someone guide me with this? [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