A very good comprehensive tutorial to learn python learn programming |
- A very good comprehensive tutorial to learn python
- When switching workspace projects don’t load ECLIPSE
- Steam sale: Programming games, can they really be helpful?
- Wondering if there's another way of extracting info separated by delimiters
- Build 2 native apps or use Flutter?
- Should I try learning programming and a new operating system at once?
- What's more important as a student: Personal projects or preparing for coding-interviews?
- HOW TO POPULATE 2D Array USING DATA FROM FILE TXT? (JAVA)
- Udemy MERN Full Stack Course is 94% Off Right Now - Questions
- Inheritance and pointer to a member variable
- Learning Java Graphics and Hit a Wall with Tutorial code
- I need a little help with Python
- Why are binary searches 'fast' considering you have to compare the target to values, and uses indexes anyway?
- learnjavaonline.org any good for an absolute beginner?
- Static variables [language C]
- [C++11]Can someone breakdown the logic behind private/protected/public inheritance?
- Most in demand languages/frameworks for jobs?
- [C++] Need some help. Tried a bunch of if else statements but won't work.
- Is there a general best practice for archiving states/information in databases?
- CSV .txt file will loop until last entry
- Make HTML page editable for users?
- Need Help With Dice Roll Program
- How can I configure IntelliJ to accept MOOC courses?
- Where to 'store' modal code?
A very good comprehensive tutorial to learn python Posted: 27 Nov 2019 02:51 AM PST The link below serves as a quick crash course both on the Python programming language and on the use of Python for scientific computing. There is also a jupyter notebook version where you can directly run and play around with code. [link] [comments] |
When switching workspace projects don’t load ECLIPSE Posted: 27 Nov 2019 09:52 PM PST Hey all, when I copied all of my projects to my usb and then when losing that workspace on another computer the projects don't show up. I never swap workspace before so I don't know what to do, searched in google and they say to export it but I'm not at home and wondering if there's another way to do it when it's already on my usb. [link] [comments] |
Steam sale: Programming games, can they really be helpful? Posted: 27 Nov 2019 07:07 AM PST At the moment there is a big Steam sale going on and I had my eye on a couple of programming games. At the moment I am learning Java and for a couple of months really try to challenge myself daily learning it, writing some code, .. ect but for some day's now I feel discouraged to start and can't grasp any of the material. It feels like my brain is taking a little holiday to the coast of Mexico, sipping on margaritas and I might have bored him too much. I was thinking it might help to add some more fun to it, and try a few games which say are about programming and might improve some logical thinking skills while having fun. Do you think this could be of help or a waste of time and money? I have my eye on the following games:
Does anyone has experience with them? [link] [comments] |
Wondering if there's another way of extracting info separated by delimiters Posted: 27 Nov 2019 08:53 PM PST Currently, i'm getting the information like this, string result=John,25,Engineer string[ ] StrArr=result.spilt(','); string name=StrArr[0]; Not sure if this way of coding is the best, and just want to see if there are any other alternatives for doing this [link] [comments] |
Build 2 native apps or use Flutter? Posted: 27 Nov 2019 10:29 PM PST Hey tech lovers, We are a startup that heavily relies on the mobile app we are going to release. We have not yet started the development of our apps and are having a difficult time deciding on which of these options to choose: 1) build native apps in both Android and iOS, using Java and Swift (2 codebases) 2) use Flutter to build one cross platform app (1 codebase) Our priorities(descending): 1) beautiful, fast, great ui for the users 2) fast release This means that we value most the ui and performance of the app but still dont want the development to take long. We have a group of 2 developers in total (excellent software engineers). We want to have the apps ready for release in 2-3 months. UI prepared by the designer is ready. Taking these points in consideration, what path do you recommend us to follow? [link] [comments] |
Should I try learning programming and a new operating system at once? Posted: 27 Nov 2019 10:04 PM PST I'm trying to learn programming on linux, however I'm still not very knowledgable about linux. Should I just start on windows and gradually move to linux so I can focus on learning some programming rather than trying to learn some programming and linux at the same time? [link] [comments] |
What's more important as a student: Personal projects or preparing for coding-interviews? Posted: 27 Nov 2019 09:06 AM PST I'm a CS student in my second year, and I've been thinking about how I should spend my time outside of class developing my skills. My free time is pretty limited, so I want to spend it wisely and put my best foot forward. Should I put most of my development-time into the code-questions employers are inclined to ask or pursue a project? If I'm honest, I much prefer developing something meaningful rather than grinding away on leetcode samples, but I understand the place they have in the industry. My peers are also heavily into competitive programming which has coloured my viewpoint quite a bit. [link] [comments] |
HOW TO POPULATE 2D Array USING DATA FROM FILE TXT? (JAVA) Posted: 27 Nov 2019 08:57 PM PST I'm using for loop for the rows and column. I can't seem to figure out what to put in my inner for loop. Help please I've tried searching in google and watching YT videos nothing seems to help. [link] [comments] |
Udemy MERN Full Stack Course is 94% Off Right Now - Questions Posted: 27 Nov 2019 02:13 PM PST Has anyone taken the MERN Full Stack course on Udemy? Is there a better Web Development course on Udemy? They are all 94% off it seems because of Black Friday. I already know/familiar with HTML, CSS, some JS, C#, some python. Its currently 94% off which makes it much more appealing. React, NodeJS seem to both be pretty high priorities when checking out local Web Development job postings. Express and MangoDB seem less so. But if I have a decent and, now affordable, way of learning I am considering it. Just wondering if anyone here has tried it. I've generally avoided paid online 'courses' before as I'm decent and learning on my own via free resources. At this point I'm ready for a one stop shop to learn. https://www.udemy.com/course/react-nodejs-express-mongodb-the-mern-fullstack-guide/ At the very least, maybe this will serve as a PSA that udemy courses are highly discounted at the moment! Thanks! [link] [comments] |
Inheritance and pointer to a member variable Posted: 27 Nov 2019 11:29 PM PST Hello so I have this assignment and I am stuck at one point. Basically they want me to create 3 classes Author, Book and Library. (language C++) Author only contains one string member for author name. Book contains 4 members one of which needs to be a pointer to the real author. So, once the user creates a Book im guessing that author should be automatically be created with the input they give as a string, but I am keep getting errors that I wasnt able to construct it or that "no function call for author", I kinda get the problem but have no idea how to solve it. Edit: Fixed formatting and explained a bit more about my problem. Thank you! [link] [comments] |
Learning Java Graphics and Hit a Wall with Tutorial code Posted: 27 Nov 2019 10:36 PM PST I was going along with the tutorial i was reading, I was putting in the code it told me and reading its explanation of what the code did and at the end of the first section of the tutorial my code was like this The funny part was that at this point the tutorial said that if I ran my code a circle would appear in the middle of my frame. This was odd as the method that would make the circle was never called in the main method, but i tried it and guess what no circle, there was a frame but it was empty. I realized if i wanted to run the method i would need a graphics object to use it but the only 2 object i had were a canvas and a jframe and neither worked for running the method. Could i create some sort of other graphics object to run this? Failing that could I modify the paint method some how so that i could just call it an it will make a circle? [link] [comments] |
I need a little help with Python Posted: 27 Nov 2019 06:44 PM PST So I am pretty new to programming and I'm currently under going my first project. It's a text adventure game and i'm following a video but there are some errors that are happening for me but not for the guy in the video. Any idea what I'm doing wrong? Here's my code: Here is the link to the video: https://www.youtube.com/watch?v=DEcFCn2ubSg [link] [comments] |
Posted: 27 Nov 2019 05:55 PM PST Please help me understand why binary searches are viewed as so good and efficient (compared to a linear search), the issue I do not understand is say we have a simple list like 1,2,3,4,5,6,7,8,9,10 and our target is 7. When it does its first search and sees that 7 is higher than 5 what exactly went on here, did it count everything UP TO five? If it did not how exactly did it know where 5 was in the list, or that 7 is higher than it? Did it do some sort of pseudo-index? I suppose my confusion stems from that as I understand it .index() is a linear search, so how is doing a binary search which RELIES on indexes not also end up linear? Thank you. Edit: I am aware the binary searches only work on sorted lists. I suppose my question is more like what is actually happening in the computer when it accesses a value in a list via its index, compared to a index() call. Esp if you had a wonky list like [1,2,3,4,1000,5000,1000000,9999999999] how would the computer 'know' what the value is you are comparing without having to know the whole list at least up to that index? [link] [comments] |
learnjavaonline.org any good for an absolute beginner? Posted: 27 Nov 2019 08:59 PM PST Like I have no idea on even the basics of programming so will it help if I start from that site? [link] [comments] |
Posted: 27 Nov 2019 05:04 PM PST The code above is responsible for opening a text file and for each caracter of information it reads, stores it on a particular variable (stores it in info which is a array of structures). Each line of the text file has a distinct coordinate, ID number, name, street name, door number, and zip code. 1.1.9.1 5555169 example name1 example street1 14 7259-627 My problem is that i need to read and save 23040 of those lines. My program can run if i decide to read 600 lines but if i try 23040 the program just crashes. It is said "that the total information of this program is such that the variable may easily burst with the partition of memory "call stack" by being declared inside of a function (usually main) [by variable i think it refers of info?]. I must consider that variable as static to use in partition "data segment" ". What does any of that mean? What should i do? Edit: So i just wrote "static INFO info[23040]" on main and it appears to read and store everything without crashing .. [link] [comments] |
[C++11]Can someone breakdown the logic behind private/protected/public inheritance? Posted: 27 Nov 2019 09:28 AM PST I understand how each keyword works as far as what their children will be able to access and see. However, what is the programming logic behind using private/protected/public. Is it to defend against black hats? Hackers? Plagiarism? What is the thought process a programmer would go through to say "(private/public/protected), this inheritance is the best one for this child". [link] [comments] |
Most in demand languages/frameworks for jobs? Posted: 27 Nov 2019 08:43 PM PST What are the most in demand languages and frameworks that would apply to the majority of jobs? I know not all jobs are the same in terms of languages and frameworks being used but I'm wanting to learn some that will make me most competitive for the majority of jobs. I appreciate the input. [link] [comments] |
[C++] Need some help. Tried a bunch of if else statements but won't work. Posted: 27 Nov 2019 08:37 PM PST
^^In the game, if I select a KS (which stands for a king of spades) and win the turn, the score displays K when it should really display 13 (which is the King's Value). I've tried various variations of if else for hours now to try to get something else to display but can't get anything to work. TLDR: How do i get the value of K(13) to display instead of K itself? [link] [comments] |
Is there a general best practice for archiving states/information in databases? Posted: 27 Nov 2019 07:58 PM PST In my previous job, it was important that we were able to track every action an employee performed on every data instance because sometimes errors were made by users that could not be caught by checks (because they were thematic errors of the usage domain) and where the old state should be retrieved. I achieved this by creating an Now I want to create my very first end-to-end web application with authenticated users using a Postgres DB. I was wondering about what kind of actions/information should be archived in a database and if there is some general guideline for it. [link] [comments] |
CSV .txt file will loop until last entry Posted: 27 Nov 2019 07:43 PM PST My Code works until the very last entry reads it then reads one more line and gives me an error at line 46--NoSuchElementException--sFirstName;. I think somehow it's not registering that it doesn't have a next line. Or is somehow stuck in an infinite loop. Edit: Java, btw! Code in question: There are 100+ entries in the file but here's the first few if anyone cares to try the code out for themselves. File: 101 Martha,Lee,Washington,20,F,8776 Valley,Lincoln,LA,70912,3385476395,George Mason University,13,false,true,B,false Nancy,Juanita,Gibson,30,F,37 Harbor,Washington,AK,99716,2705968117,University of Louisiana,9,true,false,D,true Justin,John,Smith,29,M,6125 Lincoln,Cooltown,MA,02708,6272486106,University of Washington,14,true,true,B,false Grant,David,Smith,19,M,5456 Hoover,Madison,MN,55260,6761653002,Oklahoma State University,8,false,true,B,false Rachel,Maria,Smith,29,F,1864 Baxter,Nome,GA,31233,2587935221,University of Washington,4,false,true,A,false Hamilton,Lee,Fender,19,M,3628 Eighth,George,SC,29864,4408027223,University of Louisiana,17,false,false,A,false Justin,Joey,Jackson,17,M,6837 Fifth,Nome,VT,05417,2011102918,Gonzaga University,11,true,false,C,true Sarah,Gladys,Mallard,27,F,5443 King,Fremont,DE,19782,4404553097,Ohio State University,10,false,false,D,true Thank you! [link] [comments] |
Make HTML page editable for users? Posted: 27 Nov 2019 06:58 PM PST I'm learning to program/ code on my own. I know how to make html pages, but how do I make them editable for people? I am on one of the sites where you can sell the templates/ page. How do I make the pages editable? [link] [comments] |
Need Help With Dice Roll Program Posted: 27 Nov 2019 06:42 PM PST I have already completed this dice roll program but my instructor wants me to put the array into main. I attempted to do it but the program stopped running correctly. Any help? [link] [comments] |
How can I configure IntelliJ to accept MOOC courses? Posted: 27 Nov 2019 02:48 PM PST I'm learning Java using MOOC from the University of Finland, and I want to configure IntelliJ IDEA to be able to run them (since the plugin that they provide doesn't work very well). How can I set it up so I can run the .java files they provide for learning purposes? Every little applet has its own directory with an SRC folder. Sorry if this isn't enough info [link] [comments] |
Posted: 27 Nov 2019 02:46 PM PST I am creating a page that works as a visual programming tool/node builder/flow chart builder. A consequence of this is that each node type requires a modal to show when it's being edited. Because of this there will be close to 100 unique modals (or just the form within the modal) that I need to be able to show. What is the best way to "store" the code for each modal, or just each form? Seems hard to manage if I just have the html for each modal/form type in the page's html. Suggestions appreciated! [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