What are the most significant knowledge gaps that "self taught" developers tend to have? learn programming |
- What are the most significant knowledge gaps that "self taught" developers tend to have?
- Need help building an interactive website using HTML, CSS, and Javascript
- Is programming the way to go to work for myself?
- [Homework!] Not last minute - but heavily stuck. Java Android app, canvas + buttons.
- [C#, Visual Studio] How do you run an instance of a server from a class library?
- Any comprehensive C++ 14/17 resources?
- New to programming! Need advice!
- I feel stupid.
- Is there any way to make the following code cleaner?
- JAVA - Using Focus subsystem
- [Python]Can't show plots on Jupyter Notebook
- Phyton/Rasberry pi voice activation help
- Need help with C++ project
- [C++] How to randomly generate numbers?
- Locating text on a webpage through webdriver
- C++ Programming help - Making change
- How to integrate a payment gateway in your mobile application?
- How does FontAwesome deliver icons in their style sheet ? All I see are coded strings
- Sudoku java problem
- Looking for good networking projects with python
- Programming dyslexia?
- I NEED HELP IN PYTHON I can't figure out the issue, it says index isn't defined
- Should I learn the Crystal programming language?
- Question for management/senior developers - would you consider a reddit profile on a resume? (Proof of research)
What are the most significant knowledge gaps that "self taught" developers tend to have? Posted: 29 Nov 2018 09:30 AM PST I'm teaching myself programming and I'm curious what someone like myself would tend to overlook. [link] [comments] |
Need help building an interactive website using HTML, CSS, and Javascript Posted: 29 Nov 2018 09:13 PM PST Hello, I have a project due in 5 days that requires me to build an interactive website using HTML, JS, and CSS. I have been fairly busy with my internship and all my other classes as well, and have not had time to pick up on Javascript. I know the bare minimum fundamentals, but not enough to be able to incorporate it into my website. I have most of the HTML and CSS done, but just need to add JS. I will be willing to pay anyone that could take some time out of their day and show me how to add JS into my website... hell, i'll even pay for someone to just do it, but I would rather someone walk me through it as well. If anyone is willing to help out, please feel free to shoot me a message. I appreciate any help. [link] [comments] |
Is programming the way to go to work for myself? Posted: 29 Nov 2018 11:16 PM PST I want to learn programming. I'm thinking of either doing a computer science bachelors degree or trying to teach myself. But the real question is, is this a skill that will allow me to work for myself? I grew up with my father owning his own business and my brother now owns his own business, and I have my own online shop were I do decently well. . I don't think it's in me to work for someone. That's my question and that's why I'm asking. I've always wondered but scared the question will be no. I think programming and coding is fascinating and would like to do it if possible. [link] [comments] |
[Homework!] Not last minute - but heavily stuck. Java Android app, canvas + buttons. Posted: 29 Nov 2018 11:47 PM PST I have a screen - it shows a user taken image (or stock image? whatever, an image) and I want to click on it to mark an X. It shows a body and you touch the screen to indicate location of say, a bruise. I can scale the image, set it to a viewing rectangle, mark an X only in the rectangle (so over the image) and I'm doing this in a Canvas. However I only want the image to be a portion of the screen, I want BUTTONS underneat and 2 on the side of the image, maybe. How do I make buttons? If I hardcore the buttons, then I'm fucked on resolutions and all that relative pixel position stuff and we lose marks on that. I can't put layout buttons on a canvas. I'm completely lost :((( Do I somehow extract the phone resolution and code buttons based on that? Is there a way to put layout buttons even though there isn't straight on? [link] [comments] |
[C#, Visual Studio] How do you run an instance of a server from a class library? Posted: 29 Nov 2018 11:28 PM PST So bit of detail...I've created a simple server-based tic tac toe game for some practice, and in order to run the unit tests, I have to connect to an instance of the server that I created. Problem is, the game itself is in a class library, which you can't run as it is. How can I get an instance of my server running so that I can run the unit tests? [link] [comments] |
Any comprehensive C++ 14/17 resources? Posted: 29 Nov 2018 07:26 PM PST Are there any resources that explain what C++ 14 and forward have added (from the POV of someone only comfortable with 0x or 11). I have read about the additions but am unsure of what they replace from the older frameworks or what to use instead of what. I'm trying to market myself as a more up to date C++ programmer. [link] [comments] |
New to programming! Need advice! Posted: 29 Nov 2018 08:08 AM PST Hello everyone! I am a 28m looking to step in the world of programming. I come from a construction background and recently quit my job to pursue something ive been interested in for about 4 years now. I dont have any background knowledge of html or css or any programming for that matter. The only tech stuff i know is how to build gaming computers! So, thinking about buying some books to read that can start this journey of mine. I recently purchased O'reilly "head first javascript programming" by eric freeman and elisabeth robson, but think this book is for people who already know about html and css... can any one recommend a good first book to buy ? I was recently told before i start "head first javascript", to get the "head first html and css" is this correct ? I am just really looking for advice on what first steps to take. I already have my computer ive built ready to go with google chrome as a web browser and i installed sublime text editor 3. I ak excited to dive into this! I have also been thinking about taking a course on coursehorse for beginner programming thats in my area! Upon youtube tutorials does anyone have any recommendations on what to start with ? [link] [comments] |
Posted: 29 Nov 2018 07:07 PM PST I took 3 different programming classes at my cc and the most I can do is create a webpage with my resume using html/css and also dumb little text based games in python. I can't seem to learn more advanced topics, or I just don't get it. I'm at the point where maybe im just not cut out to be a programmer. I don't want to quit, I practice every day. I guess its just not clicking for me very well. [link] [comments] |
Is there any way to make the following code cleaner? Posted: 29 Nov 2018 10:52 PM PST I have a method that needs to add an email string to a list. If the email is not present or the object that holds the email itself is not present I want to just ignore it. This is my Friday 5pm attempt at it: How would you refactor this to make it look nicer? This is for Java 8. [link] [comments] |
Posted: 29 Nov 2018 10:38 PM PST I am making a Sudoku game for my last project of this school semester. One of the requirements is to use the arrow keys to move around the board. I used FocusTraversalKeys to set the left and right arrow keys to back and forward respectively. I am having trouble doing the same for the Up and Down keys. Can I not use UP_CYCLE_TRAVERSAL_KEYS and DOWN_CYCLE_TRAVERSAL_KEYS the same way I'm using BACKWARD/FORWARD_TRAVERSAL_KEYS ? Edit: Formatting [link] [comments] |
[Python]Can't show plots on Jupyter Notebook Posted: 29 Nov 2018 10:26 PM PST Hello everyone, I have a problem. The thing is when I use this code in IDLE : import pylab as pl x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] pl.plot(x, y) pl.ylabel ('y') pl.xlabel ('x') pl.show() I can see the graph but when I use it in Jupyter Notebook it says <Figure size 640x480 with 1 Axes>. How can I fix this? [link] [comments] |
Phyton/Rasberry pi voice activation help Posted: 29 Nov 2018 10:24 PM PST Im making a prototype of a voice activation gatepass using rasberry pi and the premise of it is when i say the key word "open", the motor that is connected to our makeshift gate, would move, thus opening. What i want to happen is that it only works if it detected my voice saying the word "open". It would not move if any other person woud've said it. Is there any possible way i could do that? I've looked up some programs online but i could not find this type of voice recognition. I'm a beginner at Rasberry pi/ phyton so any help would be appreciated. Thanks in advance! [link] [comments] |
Posted: 29 Nov 2018 10:16 PM PST I had a test today where we had to read data from a file and we were given one function to use. From what I remember the function give was: size_t fillArray(string name[], int hoursWorked[], double payRate[], ifstream & in); Now we can assume the file is open and just go straight to reading data. In my function I have: int i = 0; while (in.peek() != EOF && i < 5) { string firstname, lastname; in >> name[i]; cout << name[i] << endl; } I am having trouble inputting data for hoursWorked and payRate. The file looks like this: Bob smith 39 13.5 [link] [comments] |
[C++] How to randomly generate numbers? Posted: 29 Nov 2018 10:04 PM PST Hello, so I'm very confused on how to do this first part of my assignment. I know how to add those numbers using the objects of the class but I have no clue how to generate random numbers, much less make it include certain numbers. We never learned how to do this and when trying to look through my textbook nothing on generating random numbers came up. Topic: Use a random number function to randomly generate 5 integers between 0 and 99 with 0 and 99 included. Add those numbers into an instance of class. [link] [comments] |
Locating text on a webpage through webdriver Posted: 29 Nov 2018 09:58 PM PST I truly feel like I have tried it all but I cannot find a way to do this. I don't have a code to correct because I'm not sure where to begin. The goal is to locate text on a page running on a Selenium browser. In this browser I interact with different profiles. The problem begins with needing to have the ability to use what ever url is given for each profile. Everywhere I look to check for text says to copy the url in the code but that wouldn't work for the next profile's page. Then I have the issue of even if I could figure this out, I wouldn't know what commands to use to make it react the correct way if the text is or is not found. I've spent days on this because my pride wouldn't let me ask for help. Reddit, please help Edit: Using Python in Virtual Studio [link] [comments] |
C++ Programming help - Making change Posted: 29 Nov 2018 09:51 PM PST I am unable to get this program to do the last half of my code. If anyone could help, that would be so amazing!! <3 #include "pch.h" #include <iostream> using namespace std; int main() { change = static_cast<int>(money * 100); quarters = change / 25; change = change % 25; dimes = change / 10; change = change % 10; nickels = change / 5; pennies = change % 5; isFinished = true; cout << "\n Quarters : " << quarters << endl; cout << " Dimes : " << dimes << endl; cout << " Nickels : " << nickels << endl; cout << " Pennies : " << pennies << endl; } [link] [comments] |
How to integrate a payment gateway in your mobile application? Posted: 29 Nov 2018 09:51 PM PST We are living in a time where web-based shopping and the web-based business solutions have become the order of the day. This has empowered the e-commerce application to execute and integrate the payment gateway that can complete online transactions with only a few clicks. [link] [comments] |
How does FontAwesome deliver icons in their style sheet ? All I see are coded strings Posted: 29 Nov 2018 09:43 PM PST I took a look at the style sheet FontAwesome delivers through a CDN to see the inner workings, I see that basically all of them have something like content:"\f170". How does this translate to their actual icons? [link] [comments] |
Posted: 29 Nov 2018 03:44 PM PST Hello I was hoping if someone could help me with a little game of mine. I wanted to create a sudoku game using java and its swing component. But I was having difficulty in reading integers from a text file and outputting them in a 9x9 grid using swing [link] [comments] |
Looking for good networking projects with python Posted: 29 Nov 2018 03:43 PM PST I currently have some free time and was curious what are some good computer networking projects that can be done in python? I currently just did a simple web server and was going to expand upon that...thanks in advance! [link] [comments] |
Posted: 29 Nov 2018 09:22 PM PST So I've started to dive into learning HTML/CSS/Javascript but feeling overwhelmed with learning syntax. I feel like as soon as I learn it I've already forgotten it the next day. Also I seem to be learning a lot of different methods to do the same things like functions in JavaScript but not the best practices. [link] [comments] |
I NEED HELP IN PYTHON I can't figure out the issue, it says index isn't defined Posted: 29 Nov 2018 09:17 PM PST
[link] [comments] |
Should I learn the Crystal programming language? Posted: 29 Nov 2018 09:01 PM PST It seems rather new yet it says it's easy as ruby and fast as C. Has anyone here used it and if so, is it worth learning? Does it live up to the hype? I plan to use it to make really fast web apps and social networks. [link] [comments] |
Posted: 29 Nov 2018 09:00 PM PST Just a thought.. I know that GitHub is a huge link to have on resumes with proof of projects, as well as things such as being apart of open source projects and adding your LinkedIn profile. But what about reddit? I mean if you look as some of us guys who are actively posting to this forum, java, swift, etc and even sysadmins and all kinds of tech roles. It could show that they did there research and are actively learning. So goes for stackoverflow in this situation. [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