How to watch software developers at work? learn programming |
- How to watch software developers at work?
- Learning R for research purposes
- Hybrid program with OpenMP and MPI slower than just MPI
- Programming languages, free courses, and skills for robotics?
- Where can I store my code from my introduction course exercise code?
- Good text book on introductory data structures and algorithms?
- How does app like stellarium and star atlas show the sky?
- Are there any good courses on certificates?
- Pls Help Me with My project at school
- CSS/HTML beginner help with fixed element on page.
- The coin problem: How can I modify this recursive solution to work?
- "All modern chatting interfaces, without exception, implement a hierarchical and a not-chronological schema for chat"
- Pong (Codeskulptor)-Ball seems to glide sometimes when in contact with left paddle
- Huawei intelligent video system Exam Outline
- Open Explorer.exe with secondary Windows profile on button's click. VB.NET
- Trying to learn at work...with a twist.
- Feedback for my first npm package written in NodeJS - google-sheets-logger
- Question about gitflow work flow?
- How could I return a certain object based on what its ID is?
- Inheritance in Object Oriented Programming
- HumbleBundle eBooks from NoStarchPress (Python, Haskell, SQL)
- Programmer may I ask: What kind of data change every day and have website about it.
- Phaser 3 -- I can't move left and right while also falling
- Simple CRUD app in MS Access?
How to watch software developers at work? Posted: 02 Dec 2019 02:38 PM PST Is there a video or series, that show in details actual development work of a developer or team of software developers, who are doing a middle-size project from scratch? [link] [comments] |
Learning R for research purposes Posted: 02 Dec 2019 06:03 PM PST Hey all, I'm a medical student that works in a lab involving lots of data that we receive from imaging studies. Our projects are getting to the point where excel will no longer really cut it and for some time we have been getting help w/ data stuff from other grad students etc. but I want to learn some R (mostly b/c by professor told me I should) so I can further advance some of this work. Having no background of programming outside of AP CS in high school (java) I am not sure exactly where to start. I've messed around and stuff and downloaded things like RStudio but there's a plethora of learning resources out there... do you have any suggestions for what resource would be right for me? I see things like datacamp but it seems kinda expensive and not for me given that it has no single course purchase option. Thanks, [link] [comments] |
Hybrid program with OpenMP and MPI slower than just MPI Posted: 02 Dec 2019 08:43 PM PST when i run the program with 4 processes on mpirun and then set 2 threads, is slower than when i set just 1 thread. the code basically searches on two txt of 1gb and return the combinations so in theory with 4 processes and 2 threads it would be a lot faster to search, but this is not happening dont know if in this case it will be slower, or im making something wrong. if someone could look at the code and help me i would be glad [link] [comments] |
Programming languages, free courses, and skills for robotics? Posted: 02 Dec 2019 02:46 PM PST I'm doing a mechatronics degree, and am on a long holiday. I'd like to learn some programming languages and skills, to help gain some practical skills and be ahead of class. I have moderate experience in Python and C++, and am aware that C++ is a lot more useful in robotics applications. I'd like a full, free online course (with things like tests and even an exam if possible) that takes me from a moderate level, to fairly advanced. I'd prefer if it were to be a bit more robotics related, such as if it involved arduinos. [link] [comments] |
Where can I store my code from my introduction course exercise code? Posted: 02 Dec 2019 01:57 PM PST I want to be able to save the answers i write to exercises so that I can go back and recall them and read comments about what I did wrong for my college book exercises. Is there any good way to do this? [link] [comments] |
Good text book on introductory data structures and algorithms? Posted: 02 Dec 2019 09:23 PM PST What is a good textbook on introductory data structures and algorithms, I want to try Introduction to Algorithms by Cormen but I feel that the mathematics in it may be a little above my level. (I currently am taking a pre-calculus course). [link] [comments] |
How does app like stellarium and star atlas show the sky? Posted: 02 Dec 2019 08:47 PM PST |
Are there any good courses on certificates? Posted: 02 Dec 2019 08:38 PM PST I would like to learn more about public key infrastructure including all about public and private certificates, certificate attributes, self signing concepts, signing requests, certificate authorities, certificate tree and chaining concepts. I'd also like some hands on experience with openssl. Does Reddit know of any courses which encompass all of this? Don't mind how much it costs - just looking for the best one out there. At the moment I am looking at a couple of courses on Udemy, but they seem incomplete. Thanks! [link] [comments] |
Pls Help Me with My project at school Posted: 03 Dec 2019 12:12 AM PST I got a problem on my project i can't figure out how this sorted names don't come with there corresponding grades pls check out this photos first: [link] [comments] |
CSS/HTML beginner help with fixed element on page. Posted: 03 Dec 2019 12:08 AM PST I'm trying to create a fixed contact me bar on a page with an image on it. My thoughts are to create a div container, and in that put link "contact me" and an image. I float them left and right, but i cannot control the length of the bar on the page. I would like to increase the length and width of the bar (div container "NT"). Screenshot of page: https://i.imgur.com/Kgb3Zzo.png HTML code: CSS code: Thanks! [link] [comments] |
The coin problem: How can I modify this recursive solution to work? Posted: 02 Dec 2019 04:34 PM PST I'm trying to tackle the coin problem to get a better understanding of recursion. For that reason, I'm ignoring the well-known dynamic programming approach for now. In short, I need to figure the amount of combinations of coins I can use to add up to a desired My strategy: To calculate the number of combinations required to achieve a certain amount, I just need to sum up the the number of combinations required to achieve 5 cents away from that amount, 2 cents away from that amount, and 1 cent away from that amount, and just let the function recurse: The obvious issue with this recursion is that it counts permutations rather than combinations. In other words, it's counting the solutions [1,2,2], [2,1,2], and [2,2,1], when all three of these should only count as 1. I'm still trying to figure recursion out. Is there a relatively simple way to to turn this into a "combination" counting algorithm, rather than a "permutation" counting algorithm? This guy/gal on leetcode seems to have figured it out, but I can't quite understand why what they did works: https://leetcode.com/problems/coin-change-2/discuss/99209/Python-Recursive-Solution-(Slow) [link] [comments] |
Posted: 02 Dec 2019 11:46 PM PST I was searching for SO answers and came across this: Can someone explain what are the benefits of using a hierarchy schema over a chronological are? [link] [comments] |
Pong (Codeskulptor)-Ball seems to glide sometimes when in contact with left paddle Posted: 02 Dec 2019 11:46 PM PST Hi guys!! So I've been doing the Rice University course recently, and for some reason sometimes when the ball comes in contact with the left paddle, it vibrates and passes through the paddle. I've been trying to debug it for hours but to no avail. It would be much appreciated if you guys could take a look. Thanks! Here is the code(not pretty): http://www.codeskulptor.org/#user46_WcEqCCXV38_4.py [link] [comments] |
Huawei intelligent video system Exam Outline Posted: 02 Dec 2019 11:43 PM PST Huawei intelligent video system Exam Outline Huawei has released the certification of the video surveillance system. As a key project of Huawei Smart City, a complete HCIA-HCIP-HCIE certification system will be deployed by Huawei IVS product line in the future. https://forum.huawei.com/enterprise/en/huawei-hcs-field-ivs-exam-outline/thread/585988-887 [link] [comments] |
Open Explorer.exe with secondary Windows profile on button's click. VB.NET Posted: 02 Dec 2019 11:32 PM PST Hi guys, i'm stuck on code with a web application's button for open Explorer.exe at a specific folder... Something like: If i try run it, on che button click it didn't appear anything. If i try run it with my primary profile it opens the Explorer…. Help please!! [link] [comments] |
Trying to learn at work...with a twist. Posted: 02 Dec 2019 05:26 PM PST So I'm lucky in that my new job often has a lot of downtime, and I plan on utilizing it -somehow- to learn programming or programming adjacent things. The problem is, the computers we use can only be used for business related needs (they might make an exception for education using resources they provide, but I don't really want to chance it) and we're not allowed to access any electronic devices near our computer. So I currently have a book and a notebook that I'm trying to learn programming off of, but it seems extremely inefficient to write programs on paper and then come home and try to compile them as a major form of education. Is there anything that I can do during that downtime that can help with my programming education, even if it's not learning it directly? [link] [comments] |
Feedback for my first npm package written in NodeJS - google-sheets-logger Posted: 02 Dec 2019 11:15 PM PST Created a simple Node.js module for quick & easy data logging between your program in private Google Sheets. npm package link: https://www.npmjs.com/package/google-sheets-logger Github link: https://github.com/arghyadeep-k/google-sheets-logger All feedback & suggestions are welcome. [link] [comments] |
Question about gitflow work flow? Posted: 02 Dec 2019 11:01 PM PST
On another post someone suggest I create and epic->feature->task branch set. I'm guessing I would merge into development once an epic was done, keep the epic, and then delete the feature and task branches? Sorry, I've never managed major projects and am just use to having a development and master branch. Please go on rants or add any information I need. Thank you. [link] [comments] |
How could I return a certain object based on what its ID is? Posted: 02 Dec 2019 04:36 PM PST Hey. I'm creating a game within Java and i'm currently implementing the amount of lives the player has. At the start they have 5 (this is shown as a frog on the screen, each frog = 1 live, lose a life = one frog is removed from the screen). I've created a class called Life which takes in the image for the life and its x and y positions. If the player dies, a frog is supposed to be removed from the screen. I've managed to do this by creating 5 new Life objects and giving them different names i.e. life1, life2 etc. and then removing them using their given names during the object instantiation, but it's very inefficient as i'm just chaining if statements together. I was thinking of giving each new frog an ID within the constructor from like 1 to 5, and then having a while loop which will remove the lives if the player dies (which would be the condition) and a counter decrementing from 5 to 1, however, for this to work, I would somehow need to get the separate Life objects. So is it possible to create a method such as this? (written in pseudocode, i'm not entirely sure how you would specify this in actual code) Appreciate any response Thanks! [link] [comments] |
Inheritance in Object Oriented Programming Posted: 02 Dec 2019 12:25 PM PST Hello Guys, I've been trying to get wrap my head around OOP concepts and I find it difficult to imagine how inherited objects are constucted. Take the following code for example: Here we use "super()" which invokes the superclass' constructor and this is where I get confused. I learned when I invoke a class constructor it is going to create an object for me. So here, because I invoked Person's constructor with super(), I created an object "inside" the Employee object (first figure in the link below)? Or is more like the second or third figures? Figures here: https://imgur.com/a/sgzowYN I hope it is clear what I'm trying to figure out here. Thank you in advance! Cheers [link] [comments] |
HumbleBundle eBooks from NoStarchPress (Python, Haskell, SQL) Posted: 02 Dec 2019 02:33 PM PST The HumbleBundle includes:
You can get the whole bundle for 15 dollars. [link] [comments] |
Programmer may I ask: What kind of data change every day and have website about it. Posted: 02 Dec 2019 09:26 PM PST I'm trying to combine data from 2 different sources and create useful data out of them. Tks you all. [link] [comments] |
Phaser 3 -- I can't move left and right while also falling Posted: 02 Dec 2019 05:25 PM PST I need help figuring out how to get my sprite to move left and right as it falls because of the built-in gravity. I don't know why but whenever I try to use the cursor function to move left and right I can't get any input to the sprite. Below is a link showing my current code: [link] [comments] |
Posted: 02 Dec 2019 08:58 PM PST I have to maintain a client list, which will change monthly (clients leave or join). This is tedious to maintain in excel and want to put together a more controlled process within MS Access. Has anyone done something similar and can provide some insight? [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