What are 5 or 10 minute simple tasks I could do daily that make me a better programmer? learn programming |
- What are 5 or 10 minute simple tasks I could do daily that make me a better programmer?
- Google app ‘Grasshopper’ offers games to help you learn to code
- [QUESTION] Can anyone link me to some of the best, up-to-date Java tutorials out there?
- Is it true that you can't get good until you get a job?
- A new platform for learning to code python
- What do I put for registered hosts when configuring DNS?
- [Android] Any recommended resources for Android development, specifically in information regarding creating and setting proper GUI components.
- What data format should I use for a simple archival project?
- sql in codeacademy
- Beginner Programming help!
- Abstract classes vs inheritance vs interfaces in Java?
- Running a different file in Visual Studio Code
- Feel pretty comfortable with Python and basic OOP concepts involving classes but now want to go more hard core into C. What are the pitfalls on doing this?
- [OC] My focused learning tips after hundreds of hours of coding.
- Getting the loops correct.
- Why is this for loop initializing without the initializing action being met
- So frustrated just installing an IDE
- Is it ok to back up a personal website to GitHub?
- Need help in optimizing
- [Python] What is wrong with my pop() method?
- [Homework][C#] Having trouble with casting in while summing listbox items
- [C] Trying and failing to figure out how to make an output in a table (arrays)
- Making a dicord bot
- How can I pull dynamically rendered data from a website (17Track, package tracking site) to a Google Sheet?
- Any Good Dialogflow Tutorials?
What are 5 or 10 minute simple tasks I could do daily that make me a better programmer? Posted: 21 Apr 2018 06:34 AM PDT I am thinking of something I could do before I start my day and slowly develop that into a habit. So far i've come up with either:
What other suggestions might there be? Or what simple daily tasks one could do to sharpen their skills and understanding? Edit: There is a lot of useful advice here, thank you everyone for your insight and comments! My approach to programming has definitely changed after reading all the different ways a programmer can become a better problem solver and thinker. [link] [comments] |
Google app ‘Grasshopper’ offers games to help you learn to code Posted: 21 Apr 2018 05:29 PM PDT "Laura Holmes, a senior product manager at Google, founded Grasshopper as part of Google's Area 120, an internal incubator that works on special projects." Article: https://www.dailydot.com/debug/google-app-grasshopper/ Previous Reddit thread from one of the authors: https://www.reddit.com/r/learnprogramming/comments/8d8oov/sharing_grasshopper_learn_to_code_app_with_yall/ iOS link: https://itunes.apple.com/us/app/grasshopper-by-area-120/id1354133284 Android link: https://play.google.com/store/apps/details?id=com.area120.grasshopper [link] [comments] |
[QUESTION] Can anyone link me to some of the best, up-to-date Java tutorials out there? Posted: 21 Apr 2018 10:52 PM PDT Want to get a head start since I'm taking a Java course this summer semester I learned some Processing already (which is related to java i heard), and was wondering if you guys can link me to the best Java tutorials out there that isn't out of date. Like for example for processing i'd recommend daniel shiffman youtube videos. Whats the equivalent of that for Java? Easy tutorials that i can follow along and digest with ease, please help! thanks [link] [comments] |
Is it true that you can't get good until you get a job? Posted: 21 Apr 2018 02:07 PM PDT I've heard a lot of people talk about how one can only get good at coding after getting a job in the field? Is this true? How can I get similar experience before getting a job in coding? [link] [comments] |
A new platform for learning to code python Posted: 21 Apr 2018 06:11 PM PDT Looking for a fun new way to learn coding? Over the last two years I've been teaching kids ages 10+ how to code. This work has led me to Predigame - a minimalistic platform (with tons of baked in abstractors) that teaches the fundamentals of coding - even complex arcade games - without having to know all of the complexities of game creation - imaging blitting, frame rates, etc - just code and have fun! Here's an example of what can be done in less than 100 lines of code: https://vimeo.com/user83745990/review/265932161/823b04f599 The full platform is available online at http://predigame.io with many examples and tutorials. Let me know if you have questions! [link] [comments] |
What do I put for registered hosts when configuring DNS? Posted: 21 Apr 2018 09:54 PM PDT Say I bought "example.com" through Google domains and I am configuring the DNS options, and want to host a website on a computer of mine. Following the registered hosts section here: https://support.google.com/domains/answer/6147097?hl=en There are two fields. [hostname].example.com and [ip address]. It seems somewhat clear that the IP address is the name of the computer I am hosting the website on, though I'm not 100% sure. I'm more confused about the different host names. In the linked example they give different host name / ip address combos like "ns1.example.com 74.125.201.121", "ns2.example.com 74.125.201.122" etc. I don't know what goes in the host name section and what it correlates to when I am, say, configuring a virtual host file for an apache server and want the server to be listening for the right thing. Is ns1 the name of the computer? Is it the ServerName? [link] [comments] |
Posted: 21 Apr 2018 11:39 PM PDT Wanted to learn more about Android development. I use Java a lot, but I'm not terribly familiar with Android. The most I've done is create a live wallpaper in the past, but could never get the program to dynamically determine my phone screen's resolution. It took me a long time to create the fairly simple app, so I think I should read up on Android before I take 10 years to create a hello worldesque program again. Any good books or other resources for a novice? I've only read books regarding Java and programming principles that did not revolve around graphical aspects. [link] [comments] |
What data format should I use for a simple archival project? Posted: 21 Apr 2018 05:37 PM PDT I want to store some simple relational data for archival purposes, for posterity, that I would like to be readable, uncorrupted, possibly human-readable, and easy to use far into the future (500, 1k+ years). I was considering using xml. Maybe just plain ascii would be better. Seeking recommendations and resources, thank you in advance for any help. [link] [comments] |
Posted: 21 Apr 2018 11:29 PM PDT What is the review of sql tutorial in codeacademy.is it worth learning in codeacademy.com [link] [comments] |
Posted: 21 Apr 2018 11:27 PM PDT Hi! So I'm trying to get a good base in Python and possibly one of the C languages (C, C++, or C#) before I go to college in September for a Computer Programming Analyst program. Are there any good projects or resources that I could do or go through to help me learn? [link] [comments] |
Abstract classes vs inheritance vs interfaces in Java? Posted: 21 Apr 2018 04:46 PM PDT I'm having a little trouble differentiating the three but here's what I understand for all of them So abstract classes are classes that you can't create an object for but you can use abstract classes for inheritance. Inheritance is when one class is absorbs the methods of another class. Using super allows you to call the superclass. Using super also allows you to call the constructor for the superclass. And interface is when one class extends another. This means that the class can use it's methods. This allows you to be able to create an object of the class it extends. I think I got that right. My first question is when should you use the three? Also, what's the difference between abstract classes, inheritance and interfaces? [link] [comments] |
Running a different file in Visual Studio Code Posted: 21 Apr 2018 10:34 PM PDT I'm working on learning C#, and I just ran my first .cs file. I made a different one and now I want to run that, but my "dotnet run" command still runs my old file. How can I switch the focus to the new .cs file? [link] [comments] |
Posted: 21 Apr 2018 10:32 PM PDT What is this beast known as C(not c++) and what should I expect versus learning Python? [link] [comments] |
[OC] My focused learning tips after hundreds of hours of coding. Posted: 21 Apr 2018 04:26 PM PDT https://medium.com/@ltp235/on-studying-learning-programming-effectively-c6993d2278b4 I've also included various links in the article for resources I'm using to practice. Any feedback on the article is great. I've been visiting this sub for a while so I look forward to hearing your feedback. [link] [comments] |
Posted: 21 Apr 2018 02:47 PM PDT I am always scared of off by one errors and often do the mistakes, specially in interviews where I hardly have time to write unit tests. These mistakes are dangerous in problems including linked lists and specially you are in stressful conditions like interviews. I am thinking that there must be some way to avoid these mistakes. I came up with an idea of writing the body of the loop first since its a block statement which is supposed to be executed next anyways, later we can wrap the body with either a for or while loops with care, settings loop variables which doesn't invalidates the statements in the loop body. I haven't tested this idea on many problems yet but it seems good to me. Until now I was writing the loops first and then populating the body thinking back and forth correcting the condition and body made me really confused. I would like to know what tips others have and what they think about this idea? [link] [comments] |
Why is this for loop initializing without the initializing action being met Posted: 21 Apr 2018 04:13 PM PDT https://gist.github.com/sb1999/3e4b8764ef9d974a658f763762989c5a Why does the loop begin when I set the initialization action to x == 10 Is it just something with for loops? As I have no such problem using while loops. Or maybe this is just the thing the assert macro is useful for? [link] [comments] |
So frustrated just installing an IDE Posted: 21 Apr 2018 06:11 PM PDT So recently I've been working on a data science project on python, so I decided to use the Atom IDE, and I downloaded script and autocomplete packages, but when I run it, it says I have to choose a language but I can't see where. Can some please help? [link] [comments] |
Is it ok to back up a personal website to GitHub? Posted: 21 Apr 2018 09:49 PM PDT I'm currently building my first website, and it's intended to be my personal website for my graphic design. I'm keeping track of the build using git locally, but I was wondering if there was any reason why I shouldn't back it up to GitHub? Like would it create a security risk somehow or anything like that? Is there any personal metadata associated with building a website that I'm not aware of? I assume it should be fine since people can use the Inspect Element in browser to look at all of my code and assets anyways. Also I don't mean host it on GitHub. Strictly just backing up my code and commit history, like with any other program, and also using it to manage different versions of the site as I add to/change it. Thanks :) [link] [comments] |
Posted: 21 Apr 2018 09:42 PM PDT Hi guys, I'm currently developing a class to load set of files(for a given extension) in a given directory (directory can be a string path or a url). The tool is currently working but I'm concerned that this can be optimized more in performance wise. Here's the class : https://github.com/Oshan96/CustomStage/blob/master/src/main/java/lk/vivoxalabs/scenemanager/tools/FileLoader.java [link] [comments] |
[Python] What is wrong with my pop() method? Posted: 21 Apr 2018 05:55 PM PDT Working on a homework assignment and when trying to use the pop() method on a stack, i get the top item returned, but it is not removed from the stack. Ill post the code below : And i get this output: Here is the other files used in my assignment : arraystack.py: abstractstack.py: abstractcollection.py: [link] [comments] |
[Homework][C#] Having trouble with casting in while summing listbox items Posted: 21 Apr 2018 05:30 PM PDT Hi! I have a program where a user selects items using a radio button, inputs quantity and the total is summed and added to a list box. They can do this as many times as they want. Then I need to iterate over the listbox and sum the totals. I'm running into an issue with casting that I cannot figure out. My error message is: System.FormatException: 'Input string was not in a correct format.' Here is my iteration code: Any help would be appreciated. I'm still a fairly new programmer. [link] [comments] |
[C] Trying and failing to figure out how to make an output in a table (arrays) Posted: 21 Apr 2018 09:15 PM PDT This program reads numbers from a file, and calculates the nth root. I'd like it to output a table that looks like: This file will be written to some file, "output.txt". My problem: I can't figure out how to make and write that table. My program is: [link] [comments] |
Posted: 21 Apr 2018 09:02 PM PDT Hello guys, I want to make a simple discord bot that would bring up info from streaming websites and other useful information. If you are interested to work on this project do let me know. [link] [comments] |
Posted: 21 Apr 2018 08:59 PM PDT I'm trying to help a buddy of mine pull the Delivery statuses from 17Track, a package tracking site to a Google Sheet. (https://t.17track.net/en#nums=9374889676090651166265) I know that it is possible to use =importxml('url', query) to get the content from a static web page, but the information that I am trying to pull from 17Track is dynamically rendered; the page makes a POST call after the page is loaded to get the delivery status. I'm very new to Google Sheets, and I know it is possible to add scripts using JS, so I was wondering if what I'm trying to do is feasible using something like a JS script in Sheets. I've shared the Google Sheet with a sample tracking number and the importxml function that shows empty content. (https://docs.google.com/spreadsheets/d/19rvCOnerluU_WZr-rVfT-dSghIXtayNHLFqnqLmRHhM/edit#gid=0). As you can see it says imported content is empty in the cell because the data is retrieved after the page has been loaded. Would love some ideas on how to go about this! [link] [comments] |
Any Good Dialogflow Tutorials? Posted: 21 Apr 2018 08:45 PM PDT I want to make an AI that I can use to change songs or videos on my phone. I was looking at Dialogflow since it works with Google Assistant, I believe. I want to be able to customize their reactions and allow them to work with things like YouTube app and my Amazon movie library, is that even possible? I also have no idea where to start. Any recommended tutorials I could go with? [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