I've completed freeCodeCamp and Received all the certifications. Here are few things I want to tell you learn programming |
- I've completed freeCodeCamp and Received all the certifications. Here are few things I want to tell you
- Learn JSON in 10 Minutes
- What is the best Resource to learn Asp.net MVC5 for a beginner or for a PHP programmer?
- Getting good at algorithms and design patterns?
- How do I start learning data analysis?
- Alpha beta optimization for a simple game
- Software Developer at JetBrains, studying CS. Any native english speakers interested in teaching me english in exchange for learning programming?
- What are the best project based programming tutorials on YouTube?
- Trying to return two arrays, but they combine instead of returning separately. How do i fix it?
- Really bored with programming... I need a new hobby.
- Anyone know SQL? I need help adding a table with a price increase
- Background Hero Video issues
- [Java SDK8] Why do I get a null pointer exception in this program, even though the integer array has been initialized?
- MongoDB Tutorial
- When using Electron, what is the best way to design the HTML/CSS layout?
- Issue with scanf
- Object Literal - Change Calculator (Problem)
- Using certain methodology for software development
- I want to get a better theoretical understanding of software
- I feel like a worthless failure of a programmer
- Pygame - I can't get my sprite to move
- learn MySQL via vagrant
- Creating logins
- [C++]need help printing the sum of columns in a matrix
Posted: 01 Nov 2018 06:50 AM PDT Hi. I started freeCodeCamp in April of this year, coded 2 hours a day on average and finished the whole thing mid October. For those of you who are just starting out their journey to web development and programming in general, Here are a few things I'd like to say
Your completion time might differ from mine since I had some programming experience beforehand. I've been working on a side project now for a couple of weeks to enhance my portfolio and I am applying for positions in my area and remote position but haven't found any luck yet. Finally, If you are just starting out, I hope this helps you out a little. And I wish you Good Luck!
[link] [comments] |
Posted: 01 Nov 2018 04:04 PM PDT If you haven't already become familiar with JSON, I highly recommend you checkout this video on JSON. JSON is one of the most important "languages" any programmer can learn, because it is used across many different types of software development, such as web development, game development, and many more. It is also fairly straight forward and easy to understand, which makes it great for anyone just starting out. This video will cover what JSON is, why it is important, the syntax/types of JSON, and multiple examples of JSON. [link] [comments] |
What is the best Resource to learn Asp.net MVC5 for a beginner or for a PHP programmer? Posted: 01 Nov 2018 11:12 PM PDT I am kind of a PHP programmer that never used asp.net mvc, what is the best resource to learn advanced c# for asp.net mvc and also how to develop asp.net mvc web applications? [link] [comments] |
Getting good at algorithms and design patterns? Posted: 01 Nov 2018 10:59 PM PDT What resources do you recommend to improve those skills? [link] [comments] |
How do I start learning data analysis? Posted: 01 Nov 2018 10:47 PM PDT This field of data analysis caught my interest for a while and I decided I want to learn it. However I don't know where to start. [link] [comments] |
Alpha beta optimization for a simple game Posted: 01 Nov 2018 08:11 PM PDT (Apologies, in hindsight the post is kinda long.) Sample game (displays some of what's going on while it's computing) My Python code (I'm sorry it's very messy, I'm still learning good programming practices :) ) TL;DW , what's the game ? : A python and a rat controlled by AIs are fighting for cheeses in a maze. Your goal is to capture as much as possible. Hey /r/learnprogramming ! I'm at the end of a discrete mathematics and algorithmics course, and the course is to be concluded by a tournament between students' AIs. I chose to base my on Alpha beta pruning and optimize it as much a s possible to win the tournament ! I do have a (I believe) working implementation that returns a move in time with iterative deepening, transposition table and refutation table implemented. If anyone can find a mistake in my implementation please do signal it ! It's able to search to a depth of 30-40 on average given 1 second of thinking time, but i still need to make it faster, for 2 reasons:
All in all,I think the speed/search efficiency department needs a major boost. I looked into a few things:
Last question and probably the easiest part to fix but i can't get it to work for some reason . The maze is represented as a graph as basically an adjacency matrix with distances from 1 to something like ten. The distance indicates in how many turns the player will be allowed to move, e.g. if the distance is 1 the player will be able to move next turn, and 9 turns if the distance is 10. I keep track of this variable to launch the feed them to the alpha beta search. To keep track of this variable, I wrote the preturnfunction. I have 2 global variables called current_player1_penalty and current_player_2 penalty and the location histories for both players and the call maze_graph[previous_node][new_node] gives me the distance between both nodes. How would you update the penalties for both players at the start of each turn ? I keep getting the error "Nodes are not connected" meaning the previous node that's stored in the global variable and the player's current position are not adjacent in the maze. I'm probably fucking up the updating of the positions but I don't know where. Any input is very much appreciated ! Thanks ! [link] [comments] |
Posted: 01 Nov 2018 07:52 AM PDT I 've been teaching programming at weekends for a few years. I'd also like to improve my english conversation skills. My idea is that we would split the time 1:1 - just chatting with each other, you correcting my mistakes & me teaching you programming/algorithmization/specific language of your choice/etc. Anyone interested? [link] [comments] |
What are the best project based programming tutorials on YouTube? Posted: 01 Nov 2018 11:25 PM PDT I wanted to subscribe to youtube tutorial videos for programming which are project based. [link] [comments] |
Trying to return two arrays, but they combine instead of returning separately. How do i fix it? Posted: 01 Nov 2018 07:32 PM PDT
I want it to return 2 arrays, [centerLat],[centerLong], but it just returns one :/ [link] [comments] |
Really bored with programming... I need a new hobby. Posted: 01 Nov 2018 10:55 PM PDT I made a bunch of things with code including a sleek stopwatch, a maze game, a simple 2D endless runner game, a test your psychic ability game, an automatic file renamer. At this point, I am kind of bored with programming and not really feeling any passion. What should I do? [link] [comments] |
Anyone know SQL? I need help adding a table with a price increase Posted: 01 Nov 2018 10:55 PM PDT Hi! I need help creating the following item in SQL: I have to show a 15% increase of a value in a new table, and my end result should show the original value, and the new increased value side-by-side. Need to know within 20-30 minutes! Thanks! [link] [comments] |
Posted: 01 Nov 2018 10:26 PM PDT So I am having a few different issues when it comes to this and I am coming to hopefully get some clarity as I seeing things all over the place online.
Here is the test site I have been working on: https://tsukiyonocm.github.io/test/ If you go full screen you can see the video, the person I am doing this for would like the video used at all sizes, though I am just not sure if thats possible. Currently at mobile it switches to an image for a placeholder. Though while typing this I might have thought on how best to handle that portion anyway. [link] [comments] |
Posted: 01 Nov 2018 10:25 PM PDT this is the error I get: This is only my third semester of taking programming courses so excuse anything too stupid. I initialized the main.pos[] array in the start method of the Window class. I don't understand why I am getting a Null Pointer Exception, I asked a colleague and he didn't know either. I am honestly stuck. Any help appreciated, thank you. [link] [comments] |
Posted: 01 Nov 2018 10:06 PM PDT MongoDB is a high-performance, highly scalable, easy to deploy, easy to use, and easy to store NoSQL database, which is ideal for inserting, updating and querying data in real time. It is used in scenarios where the performance requirements of the database are high, the flexibility requirements are stronger, and the data model is relatively simple. This tutorial will lead you to learn MongoDB. [link] [comments] |
When using Electron, what is the best way to design the HTML/CSS layout? Posted: 01 Nov 2018 10:01 PM PDT Do most people just manually type the values in? Or is there some type of UI builder similar to Android/iOS drag and drop UI builder? Like I know even most websites now a days don't have you manually type in the HTML instead using some type of site builder. [link] [comments] |
Posted: 01 Nov 2018 09:33 PM PDT This code is trying to get a user input as a long long but it will not move onto the next line of code after the scanf function when I input the next line key (enter). How do I keep this infinite loop from happening? As a side note I can only use the scanf function for user input since we have not learned fgets or gets yet. Thanks! [link] [comments] |
Object Literal - Change Calculator (Problem) Posted: 01 Nov 2018 08:59 PM PDT What I need to do: The getNumber method should accept a divisor parameter (like 25 for quarters), calculate the number of coins of that type that are required, update the cents property with the remaining cents, and return the number of coins. What I currently have done is, I went ahead and set up the getNumber method with the divisor parameter. What I need help with: What I'm unsure how to do is calculate the number of coins of that type that are required and how to update the cents property with the remaining cents. Help regarding how to set the code up to accomplish this would be much appreciated. Current Code: https://jsfiddle.net/3sdn8t46/2/ [link] [comments] |
Using certain methodology for software development Posted: 01 Nov 2018 08:45 PM PDT So, I recently got lessons about methodologies for software development and given example like Scrum, Unified Process, Extreme Programming, etc. We haven't gone past that, but what I want to know is, how do we applying those methodologies? Is it applied on coding level or on the level of how the software work? [link] [comments] |
I want to get a better theoretical understanding of software Posted: 01 Nov 2018 08:35 PM PDT I have decent theoretical knowledge of hardware and how you could in principle make a computer from transistors, but operating systems, kernels, how programs actually communicate, and how the internet works are all not very clear to me. I also have operational knowledge of using Linux commands and writing code for scripts relevant to my work, but once it gets to scraping things off the internet or communicating with the computer in a non-trivial way I don't really know what I'm doing. Are there good textbooks or a series of textbooks that are oriented towards this? I'm not looking to become an expert, programming is only supplementary to my career, not it's goal. I'd prefer some level of technical detail above heuristic flow-charts, but not specific details on how to perform certain tasks. Something that would let me see the forest from the trees. Edit [link] [comments] |
I feel like a worthless failure of a programmer Posted: 01 Nov 2018 08:01 PM PDT 3rd Year CMPS student, just got done giving up on a project because I am so unbelievably stressed out and feel like a total idiot working on it. I'm doing data structures and shit(Trees if anyone cares) and I just feel worthless, we have some provided code and i'm so confused and lost tracing through it and since it's due in an hour in addition to having my calc exam tomorrow and a stats exam tomorrow I literally just can't. My brain deleted itself, it gave up. I feel like I shouldn't even be getting frustrated over this, and i'm just being a weakling for giving up and getting frustrated over something that's suppose to be a job that I like eventually and learn to enjoy the problem solving process, but when you spend 4 days literally getting nothing accomplished because you're so hard stuck on editing some prexisting code as they have told you to do, only to realize you can do the same thing making your own in like 10 lines it's really infuriating and just not very fun honestly. Maybe i'm just not cut out for this, I use to think I was smart in this shit, but now I'm pretty sure I'm just a fucking phony with not the slightest idea what I'm doing, this semester has ruined like so much of my confidence coding, and even when I start to get something, another thing comes out and smacks me across the face and says, "NO YOU"RE A DUMBASS SIT DOWN". I know this isn't a rant sub, but like, it's just a really frustrating process and I feel like a weakling for even finding it frustrating when I should probably be enjoying it, and just, I don't know if I am anymore. I'm sorry [link] [comments] |
Pygame - I can't get my sprite to move Posted: 01 Nov 2018 01:45 PM PDT Evening all, I decided to start messing around in Pygame after dabbling in a text-based RPG in python. I thought I'd start with being able to move a rectangle around the screen. Once I've nailed that, I can look try adding walls and so on. So far I've managed to draw a blue rectangle but it always appears in the top left and I can't move it. I get an error which says that the "video system not initialized". From what I can tell, this generally happens when pygame's init() has not been called. I am completely stumped. I have compared to some other code and I can't see where mine's going all wonky. Code reproduced in full below. Any ideas where this is going wonky? [link] [comments] |
Posted: 01 Nov 2018 07:35 PM PDT hi all, I'm trying to learn the MySQL via command line. So I set up a VM with vagrant (pretty new to this, but it's the ubuntu trusty 64 box). And I've gathered the basic commands to set up a LAMP server, but when I go to enter MySQL it gives me an auth error--even though I'm setting the user and pw in the vagrant file on "vagrant up". Any tips on what might be going awry? Would my zonealarm firewall on my host machine be an issue? Thanks! [link] [comments] |
Posted: 01 Nov 2018 07:29 PM PDT TL;DR: How would I go about making a loging system for my website (Hopefully an alternative to MySQL and PhpMyAdmin Im 13, so I'm by no means fluent in any language (except maybe C++, but still) I am good at a few though notably: C++, HTML + CSS, JS, and Python. I have been moving away from desktop, however, because I want my family to be able to interact with what I make. HTML was an easy way to do such from my days when I was ten trying to make a minecraft server I already knew how to port forward so that wasn't hard, but then, I came to my challenge my websites were GARB like just text on a stretched out picture garb! So I quickly found a solution Materilaze CSS (I like it better because it came from MIT). Then I was rolling again. Now that I have a front page and a login page designed I was wondering how I could actually let people make an account and Log In. Any help is appreciated thanks for taking your time to help someone else. (Not to guilt anyone who doesn't) [link] [comments] |
[C++]need help printing the sum of columns in a matrix Posted: 01 Nov 2018 07:29 PM PDT Hi everyone, I'm new to programming and English isn't my first language so bear with me. I was assigned a homework in which I must make a program that generates a random number of votes and print them, that much is done, however one part of my homework states that after printing a matrix with the random numbers/votes, the program must print the sum of each individual column, for example: if my matrix is [ 1 4 7] [ 2 5 8] [ 3 6 9] then my program should show: [6 15 24],however when I execute my program the first sum is always wrong and the third one prints a random number. I've been liking programming so far but this bad boy has been given me trouble for the past few hours, any help is appreciated and again sorry if my English isn't my best. EDIT: PROBLEM SOLVED, [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