A complete computer science study plan to become a software engineer learn programming |
- A complete computer science study plan to become a software engineer
- I’ve been learning python and java for a while and i’m able to solve problems, but how do i actually MAKE something?
- PSA For Anyone Learning Python: The help() function gives you really detailed information on just about anything!
- I get frustrated when using c#
- Drawing circles in CSS/other languages
- What is the most accurate way of predicting a user's location?
- C++ Project
- What is the error in this method that finds the distance between two characters?
- Found myself in a "Promise hell in Javascript"
- The dummy guide to Cloud computing/solutions?
- Python project ideas for intermediate learner
- Is there any places that I can get the pre-made modules for C/C++?
- [system design] how would you answer this off the top of your head?
- Javascript: differentiate libraries
- Would love to hear some advices from bootcamp grads!!
- Java and c#
- Can you help me understand how Doom works?
- Simple C++ problem about dynamic arrays
- What are some REAL problems of companies do programmers solve? What are some projects that programmers make in their REAL job?
- How can you write a method that iterates through elements in a string and returns them as integers to be used in another method?
- Well, here is my second project, what should I do next?
- A fun language
- Creating an App in Matlab
- Can someone explain this openssl decryption command piece by piece?
A complete computer science study plan to become a software engineer Posted: 25 Feb 2020 01:13 AM PST A multi-month study plan for going from web developer (self-taught, no CS degree) to software engineer for a large company. [link] [comments] |
Posted: 25 Feb 2020 04:45 PM PST i don't really understand what do to after i have a good understanding of the language. [link] [comments] |
Posted: 25 Feb 2020 07:16 PM PST Ever spent a solid 10 minutes trying to Google information about why you're getting an error? Or needed to know all the options you could use for a library? Try using the Works on libraries, classes, variables, object types, functions... anything really. Super useful! [link] [comments] |
I get frustrated when using c# Posted: 25 Feb 2020 10:36 PM PST I'm not here to complain, but to notice how I always have a hard time whenever I try to use c#. Thank God I'm working with PHP in My first job as a web developer. Is it just me not working hard enough to understand the language or is it something odd about c#? Some people might say it's just because C# is more complex than PHP and other high level languages but I've used Java too and it's not as Bad. Any advices? I know c# is not a popular language but I'm worried I'm gonna need it sometime in the future and I'm gonna be as phobic as now. [link] [comments] |
Drawing circles in CSS/other languages Posted: 25 Feb 2020 08:09 PM PST Hi all, I have been thinking about this for a while but I was wondering why circles are drawn as squares (height/width) but with a radius parameter, not just an x,y for the center and a radius. Is it just to allow adding a small radius to a rectangle for rounding corners? Or is it becuase of how it is understood in machine code? Thanks for any input :), sorry if this is the wrong place to ask this type of question. [link] [comments] |
What is the most accurate way of predicting a user's location? Posted: 25 Feb 2020 07:30 PM PST I am in the process of developing a weather application in Python that can display the current weather conditions as well as a predicted forecast for their local area. The only problem is that I would like to spare the user the hassle of typing in their address every time they change locations. I have tried getting the user's IP address by calling the IPify API and I have also tried using GeoCoder to convert their IP address to a set of latitude & longitude coordinates. The thing is whenever I try to search the coordinates on Google Maps I see that they are over 135+ miles away from my actual location. I am well aware that IP addresses are not exact locations and that they often display the ISP's location rather than the user's. My question then is how should I go about getting the user's current location? I am planning on porting this program from desktop form to mobile as well, so I would prefer it if your solution was somewhat universal in use. Thanks once again to all of the wonderful people on this subreddit for your helpfulness and patience! [link] [comments] |
Posted: 25 Feb 2020 07:28 PM PST I have linked sales.cpp, Song.cpp and Song.h, but nothing outputs. No errors pop up. Ignore the error messages on the .h file but am i doing something wrong? [link] [comments] |
What is the error in this method that finds the distance between two characters? Posted: 25 Feb 2020 05:44 PM PST It keeps telling me it has to return an integer. Im guessing its because I am not hitting all the possible outcomes but Im not sure how to fix it. [link] [comments] |
Found myself in a "Promise hell in Javascript" Posted: 25 Feb 2020 09:13 PM PST Technically this works, but I know it's not efficient and difficult to read. Any advice on how to control this? [link] [comments] |
The dummy guide to Cloud computing/solutions? Posted: 25 Feb 2020 06:49 PM PST Can someone please explain cloud computing/solutions to me in the most layman terms? What is going on at Amazon AWS and Microsoft azure? I saw one definition that said it puts costly IT resources on the cloud. What resources? [link] [comments] |
Python project ideas for intermediate learner Posted: 25 Feb 2020 11:10 AM PST I'm looking for some Python project ideas but all the ones I can find online are things such as tictactoe or calculator apps. Ideally I'm looking for a project involving a database but I'm open to other suggestions! To give some gauge of my level:
Thanks. [link] [comments] |
Is there any places that I can get the pre-made modules for C/C++? Posted: 25 Feb 2020 11:46 PM PST Hi, I have been using Python for quite a bit now and decided to learn a new programing language such as C/C++. I have noticed that C/C++ also allow to import a pre-made modules for the ease of remaking functions but can't seem to find anywhere to download it like Python. [link] [comments] |
[system design] how would you answer this off the top of your head? Posted: 25 Feb 2020 11:35 PM PST Got asked this question during my onsite for an all levels SWE position at a high-growth, but very small start-up. I flunked it badly and I just want to know how others would approach this in an interview setting w/o access to online resources AKA off the top of your head. The prompt from what I remember was: "Design a restaurant reservation platform so that it allows restaurants to best manage their reservations and maximize profits." They also made sure to explain the format of the interview/how I should form my response/what to focus on:
Finally, any useful/not well known tips for how the interviewee could make sure to portray work culture fit for an extremely fast-paced/chaotic startup? Sorry this was super long - just trying to improve as much as possible from my failed interviews and get hired before burning out completely... Thanks :") EDIT: I also recorded myself answering this question during the interview - if anyone would be down to critique it for me (or if listening to an entire hour is too long - I can transcribe it) I would really really appreciate it! I'm uncomfortable asking my CS friends here at UC Berkeley to listen to it b/c they're pretty insensitive and kind of sexist (they're all asian males). The last couple of times I asked them to help mock interview me or critique my recordings they didn't provide any constructive criticism - they just laughed and poked fun and I got extremely discouraged. [link] [comments] |
Javascript: differentiate libraries Posted: 25 Feb 2020 11:31 PM PST EDIT: Please ignore the title, it should be "differentiate objects from arrays" Recently I had a question that I got wrong because my refactored solution was unable to separate an empty object from an empty array (in both cases they could also have k/v pairs or elements). I tried to test length just now as a solution; even that doesn't work: Do you guys how how to differentiate them in vanilla Js without helper libraries? I feel like [link] [comments] |
Would love to hear some advices from bootcamp grads!! Posted: 25 Feb 2020 10:09 PM PST I really want a career change and I have been researching about different bootcamp in Seattle area. At this point I am looking at one bootcamp which focus on teaching front-end and the other one teaches you 3 full stacks which basically helps you learn how to how new programming language quickly in the future. Please don't tell me I should learn by myself, I love learning with a community where I can interact and learn from other people and struggle together. And I would love to hear any advice from bootcamp grads and current bootcamp students! [link] [comments] |
Posted: 25 Feb 2020 09:46 PM PST So as of rn I am paying for team treehouse to learn java. Since I am paying I wanna get the best out of it. I would like to make games in unity but that is in c# so is it better for me and my money if I stay with java finish and then move over or move over as of rn. I also rly wanna get a good grasp on oop concepts [link] [comments] |
Can you help me understand how Doom works? Posted: 25 Feb 2020 09:21 PM PST https://github.com/id-Software/DOOM/tree/master/linuxdoom-1.10 I'm new to programming and trying to understand how games are created but I can't seem to grasp where the main game in this code of DOOM is, it is like navigating a maze. [link] [comments] |
Simple C++ problem about dynamic arrays Posted: 25 Feb 2020 08:58 PM PST Why can't I get the length of the dynamic array? Also, can someone explain why when I run the program, it takes a bit of time to compile? I'm trying to get the size of the array, even though I know the size already. [link] [comments] |
Posted: 25 Feb 2020 08:51 PM PST I decided to study programming and have a real career in it. But I know that the world of programming is huge, and me studying by myself might end up with nothing. I want to have a niche in my career, so I want a REAL grasp of what programmers REALLY do. I have no mentors so I have no guide, only reddit. But I wanna know what kind of projects do junior/intermediate programmers REALLY make for the company they are working for? What are some common needs/problems of the company/client that a hired programmer need to solve? [link] [comments] |
Posted: 25 Feb 2020 08:51 PM PST Unlike writing it in main where you can write a for loop, I want to write a method that takes a string and returns each character of the string as the ascii value. [link] [comments] |
Well, here is my second project, what should I do next? Posted: 25 Feb 2020 04:39 PM PST https://codepen.io/pearlslugs/full/RwPpGpV I was wondering if anyone had any ideas for a project that I would find very challenging to do on my own. The harder the better. [link] [comments] |
Posted: 25 Feb 2020 08:12 PM PST So I know this is purely opinion base but what language is the most fun to code in? What is just the most enjoyable language to you guys and why? I'm looking to get into learning to code for fun and maybe to help my career in the future. Everyone always says to start with python because it's easy but I always liked a challenged and I just want something that is " fun" I guess. I was thinking about learning Nim. [link] [comments] |
Posted: 25 Feb 2020 08:09 PM PST Creating an App using Matlab I'm an engineering student who has just about a month and a half of experience with cose. So I have a physics project that I need to complete near the end of the semester and for the project I decided to use simple kinematic equations to calculate the slope of a ski hill using data obtained from my phone. So I looked on google and found this videoon how to convert Matlab code onto an iPhone and to be quite frank I'm completely lost. I tried to follow the video with a simple piece of code and the Matlab Coder kept giving me error messages so I'm not too sure what I should do. Are their certain commands that I need to use to ask for the data that I need? Is their a more simple way to calculate for my equations? Sorry if this is a somewhat complex question, I'm just completely lost and am probably considering changing my project idea. [link] [comments] |
Can someone explain this openssl decryption command piece by piece? Posted: 25 Feb 2020 07:56 PM PST
Can anyone help me fill in the blanks and correct anything I mis understood? Also, are there any good tutorials on the encryption method that would result in this being the appropriate DEcryption method? Thanks. [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