Tools I wish I had known about when I started coding learn programming |
- Tools I wish I had known about when I started coding
- Is anyone interested in learning Dynamic Programming?
- Is there any good flutter book as of 2020?
- Need a little life advice from people in the industry...
- How to pull info from e-mails?
- If You Are Self-Taught, and were able to begin a career as a developer, would you mind sharing your story?
- So..I just got into programming. (mostly interested in learning 3 languages. Jave,Python and HTML. And im starting with py.) But I wanted to know how a=hard it would be to program an AI.
- Stuck at the start.
- When watching YouTube video about programming, do you prefer teacher to show only their screen or also show their face, given that they are equally good at teaching
- Python projects for Cybersecurity?
- How can I automate my job
- Hi - New to Visual Studio
- ACTIVITY PROBLEM, WHAT'S NEXT???? (JAVA)
- Good sources to learn angular in an interactive way.
- Diversifying my Portfolio
- Taking an Algorithms class is helping a lot!
- Good Resources for Someone Starting CompSci degree?
- What is a good book to read to better my problem solving and programming skills?
- Is competitive coding in a different language and developing in another one a good idea?
- Making money coding as a teen
- Looking for a Python tutor!
- What are some audio based ways to learn about programming and CS?
- Is it "cheating" to use a framework
- Looping through a dir of JSON files - doing something wrong
Tools I wish I had known about when I started coding Posted: 11 Jun 2020 07:47 AM PDT Hey all! I had compiled this list about two years ago, shortly after I started programming, and I found that is was helpful to a lot of folks, so I wanted to resurrect it. While the way I do some things has changed a lot in the last couple of years, these all helped me a lot when I was just getting into web development, and hopefully they might help you too! Chrome ExtensionsNow that I am a self-proclaimed web developer, I practically live in my Chrome console. Below are some tools that allow me to spend less time there:
VS Code ExtensionsVisual Studio Code is my editor of choice. People love their text editors, and I am no exception. However, I'm willing to bet most of these extensions work for whatever editor you are using as well. Check out my favorite extensions:
EDIT: found more tools I had compiled on a per operating system basis! Operating System AgnosticPostman — At its most basic, this is an application that allows you to test the different endpoints of an API. You know, that good CRUD stuff. Once you dive deeper into it, you will find it is also incredibly useful for writing up test suites and much more. Insomnia — This is an open-source alternative to Postman. It appears to have a lot of the same functionality with a slightly lower price tag for their premium packages. Between this and Postman, the choice seems to mostly be personal preference for the UX. Don't stay up all night making a decision between the two (I had to, forgive me). Restlet — If you don't want to download either of the above, this is an API testing client that is available as a Chrome extension. It even allows the importing of Postman tests and several other formats. Charles — This is a sweet web debugging proxy that allows you to view all of the information you could possibly want to see about the requests being made between your machine and the internet. It basically turns you into a hacker, allowing you to check your website for security vulnerabilities and such. Fiddler — Basically the same tool as Charles. Personal preference seems to be the main deciding factor between the two, though both can greatly increase your debugging/troubleshooting capabilities. Flux — If you're reading this, chances are you probably spend a ton of time on your computer. Flux is a program that turns the blue light down on your screen as the sun sets, with the hopes of mimicking the day/night cycle and helping you sleep better. Not as good as getting time away from the screen, certainly, but it's better than nothing! Windows SpecificConEmu — If you are on Windows and you would like to have multiple terminal tabs, this is an easy, free solution to your tab-related woes. Never again will you have to flip back and forth through entire windows just to look at your different error messages.- Ditto — You know when you're trying to copy four separate answers from Stack Overflow and you have to keep switching back and forth from your browser to your IDE? Worry no more. With the Ditto clipboard manager, you can copy-paste your way to victory. TouchCursor — Programmers of all sorts are notorious for wanting to use the mouse as little as possible. If you find yourself in that camp, then this will be right up your alley Cmder — I am going to forego my description of this product, as I feel the description on their website is much better — "Cmder is a software package created out of pure frustration over the absence of nice console emulators on Windows. It is based on amazing software, and spiced up with the Monokai color scheme and a custom prompt layout, looking sexy from the start." I don't know about you, but I am a fan of any software that describes itself as "sexy" Directory Opus — This is basically what Windows Explorer should have been from the start. Opus allows you to dig through your poorly-organized documents almost as if they were well-organized. Zeal — With over 200 documentation sets to search through, Zeal is an offline goldmine of documentation for the developer who loves to read documentation so much that they do it even when the internet is out. (Copy-pasted from Dash in the Mac section). Mac SpecificPaw — A competitor to both Postman and Insomnia above, Paw is a similar piece of software that feels more like a native Mac application than the others. If you love that Mac feel, this might be the API tool for you. Dash — With over 200 documentation sets to search through, Dash is an offline goldmine of documentation for the developer who loves to read documentation so much that they do it even when the internet is out. Bear — Not directly coding related, but a neat piece of software for taking notes if that is something you do in your day-to-day. I can't help but wish that this would be integrated with Paw somehow, for pun-related purposes. Magnet — Okay. Fair warning: This one costs money. If you can afford to dish up the 99 cents, however, I think it is worth it for those tough times when you don't have access to a second monitor. This tool allows you to easily snap different windows to separate areas of your screen so you can run multiple terminals at once and tell your mom you are a hacker. (They are not paying me for this recommendation, sadly. However, if you are the creator of Magnet and you wish to pay me, please get in touch). EDIT 2: adding new version of Bracket Pair colorizer here and to description above https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer-2 EDIT 3: I've had people in dms asking about more advice/tooling. I'll definitely continue to cross post anything that makes sense to here like this post. I also try to help out on https://twitter.com/marioahoyos . I am a career switcher like many people here are and I want to help as many people make the transition as I can :) [link] [comments] |
Is anyone interested in learning Dynamic Programming? Posted: 11 Jun 2020 12:49 PM PDT I have a background in Math and CS and currently work at a bulge bracket investment Bank. I have been preparing for switching my job for a while now and I found that many people struggle with Dynamic Programming while solving algorithmic problems. So I thought why not share what I have learnt with others but not sure if people want to see another tutorial on DP. Though I promise that I will try to explain the core intuition behind DP problems and how to solve them as well.I have seen that many algorithms course teach DP in a mechanical fashion by simply explaining what is state, what is optimal structure and then proceed to problems. I often find that they don't focus on the ability to think a dp solution. Let me know if anyone wants to learn dp. I will publish my personal notes and topic wise problems on some webpage/github page. Thanks for reading. Feedback is welcome. Disclaimer: I am not trying to sell any course whatsoever. Just want to gauge if there is any enthusiasm before I spend my time creating a free content which imo could be useful. EDIT: I will be working on organizing my content and will share the link here. [link] [comments] |
Is there any good flutter book as of 2020? Posted: 11 Jun 2020 11:42 PM PDT Hi, is there any book that covers the fundamentals and the state management in Flutter? [link] [comments] |
Need a little life advice from people in the industry... Posted: 11 Jun 2020 07:52 PM PDT I realize there are a bunch of newbie questions on here, but I couldn't find one that was very close to my specific situation, so I figured I'd ask. I'm 30, and I have limited programming experience. Mostly just from messing around on Unity and Godot building basic games. I have completed a few basic Udemy courses as well, and when I was 20 I took 2 semesters of CS at a local CC that showed us a little BASIC and some HTML/CSS. (Also everyone in my generation got basic HTML knowledge from Myspace back in the day LOL) Long story short, I didn't finish college and ended up getting into sales. I've done well with it for the last 6 years or so, made decent money but its getting to be completely soul crushing, and I've always wondered about what would have happened if I would have gotten that CS degree 20 y.o. me wanted. I moved to a new city recently, and I'm not feeling my current job. Talking to my wife, we agreed it was time I made a change. I really dig working with code, and also love games (mostly indie 2d stuff). I've spent the last few weeks looking into different online college programs, and also looking at bootcamps and have a few questions/concerns that I would really appreciate some feedback on. BOOTCAMP I feel that time is not on my side, and I have enough saved to get me through a bootcamp without working. Most of the success stories I see in reviews seem a little "advertised" and also mention having SOME kind of degree.
ONLINE COLLEGE I've looked at a bunch of universities. One that I like the idea of is the WGU program because you go at your own pace, hence I could save time/money.. Going this route I'd have to find some sort of part time gig (what did I do with that server apron...?) while i was in school and take out a loan of some sort. It'd probably be fine because I've done a good job of staying out of debt, but it would definitely feel like taking a step back in order to take a step forward.
I appreciate any answers/success stories (or failure stories for that matter). Thank you in advanced! Cheers [link] [comments] |
How to pull info from e-mails? Posted: 11 Jun 2020 11:11 PM PDT Hi! So basically I get 2 sets of emails that I want to cross-check with each other. One of them for money received, one for money spent. They both follow the same format in the emails every time, and I was wondering if anyone knew a way to automate it(or to get started with automating it) to put the money from both incoming and outgoing into their own doc or spreadsheet? Thanks :) Edit: I know a bit of Java and i'm learning python on my own(I'm a high school student), and I'm using Gmail [link] [comments] |
Posted: 11 Jun 2020 01:45 PM PDT I'm curious to know what you did before, why/how you got interested in programming, what was the path you took, what mistakes were made, etc. Long or short, it's not unlikely that your story would resonate with with someone else on this sub and provide them with additional insights and motivation to continue their journey. [link] [comments] |
Posted: 11 Jun 2020 09:28 PM PDT So... As the title details, I have been wanting to work on an AI. But don't twist my words too harshly because its not what you think. AI in the modern-day world isn't really AI. Its just minor machine learning programmed with different responses. As far as I know, no AI can actually think for itself. So with that said how hard would it be to program a simple bot with voice recognition with simple tasks and answers programmed into it? [link] [comments] |
Posted: 11 Jun 2020 08:18 PM PDT Hello, guys and gals! I've had an interest in computers for 10 years now. I spend hours and hours watching people talk about programming, but I do not know where to start to be honest. I watched a few YouTube videos on how to get started, and I got as far as typing "Hello World!" It just seems like there is so much to learn. I know everyone has a different learning process, and I need to learn with the method that is best for me, but I just can't seem to find a starting point. I downloaded VS Code and decided to attempt to learn Python because it was recommended as the "easiest" language to learn. I was just wondering if some experienced programmers could give me some advice on where to start. Also, I am starting my degree in computer science this fall. Should I wait and learn everything at my university? Or, should I go ahead and start preparing myself by learning some basics? Help from anyone would be much appreciated! :) [link] [comments] |
Posted: 11 Jun 2020 11:57 PM PDT Do you think showing face when teach programming on YouTube have value added ? [link] [comments] |
Python projects for Cybersecurity? Posted: 11 Jun 2020 05:43 PM PDT |
Posted: 11 Jun 2020 11:38 PM PDT So i have a liste of about 1200 barcode that i need to manually look on the Internet for a bunch of informations such as description, release date, measures, weight. Basically about 37 informations for each code. It's tedious and it would take a lot of time. I was wondering if i can write a script that does the job which programming language would be ideal for this situation. [link] [comments] |
Posted: 11 Jun 2020 11:35 PM PDT I was learning Python on VS 2019 community, I had the correct language syntax (colored text) but after a few days of use its just all white text, im not sure what i clicked on or what i did but i cant seem to change it despite having reset all the setting i also tried to uninstall VS but no luck any help would be appreciated [link] [comments] |
ACTIVITY PROBLEM, WHAT'S NEXT???? (JAVA) Posted: 11 Jun 2020 11:23 PM PDT Hey guys, I am really trying hard to get the solution in this problem, it's java can you guys help me? Other subjects are rushing for the deadline and this on my programming subject, I really suck at logic problem. ____________________________________________________________________________________________________________ Here is the question: Write a program that will find all numbers which are divisible by 7 but are not a multiple of 5 between an input range from the user. Sample Output: Starting value: 1 Ending value: 50 Results: 7 14 21 28 42 49 ____________________________________________________________________________________________________________ Here is my code: import java.util.Scanner; public class Gonzaga { public static void main(String\[\] args) { Scanner i = new Scanner(System.in); int a; System.out.println("Input starting value: "); int start=i.nextInt(); System.out.println("Input ending value: "); int end=i.nextInt(); for (a = start; a <= end; a++) { System.out.print(a+" "); } } } _____________________________________________________________________________ What do I need to do? Sorry, I don't know it will come to this point haha. [link] [comments] |
Good sources to learn angular in an interactive way. Posted: 11 Jun 2020 11:14 PM PDT Hey guys, I've recently decided to start learning Angular from scratch. I've worked with angular before, so I'm not totally unfamiliar with the language, but the way I worked with it so far hasn't allowed me to learn the basics properly. Can you guys recommend any sources that have allowed you to learn angular in a proper non-superficial way? Big thanks! [link] [comments] |
Posted: 11 Jun 2020 11:04 PM PDT I'm currently attempting to make the career change into data analytics. I've made things like webscrapers and other 'automate the boring things' projects and have data visualizations on my website. What else would really prove to employers that I'm actually capable to do this stuff? [link] [comments] |
Taking an Algorithms class is helping a lot! Posted: 11 Jun 2020 05:06 PM PDT Hello! Like most of you I'm mostly a self taught programmer and I've always felt like I've been missing some info, or there's some gaps in my knowledge. I decided to take an Algorithms class because I plan to apply to jobs soon and they mostly ask algorithm and data structure questions in the interview. Well, just 3 lectures in and I can already say I've learned a lot! The course I'm doing is the MIT 6.006 Introduction to Algorithms course. For example, I've always known about Big O and had a rough idea on what it was, but I never truly understood it. When the prof goes over an algorithm, they also go onto discuss about the run time and other things so just 3 lecs in, I'd say I have a MUCH better understanding. In the third lecture I learned about Insertion Sort and Merge Sort. I've seen these two sorts before but never tried to implement it on my own or go deeper into it. However, after watching the lecture I decided to try to implement it on my own AND I MANAGED TO DO IT! I don't really have anyone to share this with but I'm just so darn happy that I was able to implement two algorithms just off of the explanation they gave (even if they're pretty basic ones haha). I plan to open a repo on Github and go through the whole series. The goal is to watch the lecs and write my own implementation of the algorithms and upload all these code snippets so I can review them when it comes time to job hunt and grind leetcode. I also plan to comment them pretty heavily in a way that I understand (aka pretty dumbed down and in plain english haha). In the off chance that this will help someone, here is my implementation and explanation of the two algorithms! Here's the code in a Cloud IDE if you just want to see it without the explanation Insertion Sort Merge Sort I hope this explanation was useful to at least one person! If anything is confusing or you want to learn more (such as the time complexities of each), I highly suggest you watch the third lecture on these two algorithms! Also, these algorithms might not be the cleanest and I implemented it how I understood it, so if anyone sees any errors or ways to make improvements, I'm all ears! Thanks everyone and happy coding!! Onto the lecture on heaps for me! (pretty excited!!!) [link] [comments] |
Good Resources for Someone Starting CompSci degree? Posted: 11 Jun 2020 11:04 PM PDT I'm starting in the fall and want to know good sites/resources to help me learn/get a start - I will be taking C++, data structures, etc. I only have some HS experience in Java and don't know much about C++ thus I just want to get some experience with it. Thank you! [link] [comments] |
What is a good book to read to better my problem solving and programming skills? Posted: 11 Jun 2020 11:03 PM PDT As a student, I find myself having troubling coming up with solutions to my programming assignments. I was wondering if there are any texts that could help me get better at solving problems and implementing and creating algorithms as well as become a better programmer in general. I have read books on languages themselves and understand the syntax, documentation, and how to use them, but with that said, I still struggle. Do you guys have any suggestions? EDIT: A friend recommend Knuth's TAOCP, but they seem a bit too advanced and geared towards people who are already making a career out of programming. [link] [comments] |
Is competitive coding in a different language and developing in another one a good idea? Posted: 11 Jun 2020 11:01 PM PDT I started solving HackerRank problems about 3 months ago, and have been doing some side projects too. I primarily focus on C++ and C# for my projects. But I find it really useful to solve coding questions on HackerRank using Python 3. I feel it helps me focus on the problem more instead of syntax and boilerplate stuff which C++ requires. It takes a lot more typing to do the same thing in C++ compared to Python. I speed up a lot while using Python. Is this a good idea, or should I use C++ for competitive coding? [link] [comments] |
Posted: 11 Jun 2020 01:12 PM PDT Hello world, I am a 14 year old who is in need of money. I was wondering if I could actually make some money coding. I am coding for around a year now for about 4 hours a day, just because I think it is really fun and useful. Of course it would be really nice to make some money with this. I know enough html, CSS, JavaScript to make a simple but functional website, and I 'know' python. With python I can make gui's, I can scrape the web, and I have basically mastered the syntax. I also can work with SQL Does anyone have experience with making money coding at this age? Thanks! [link] [comments] |
Posted: 11 Jun 2020 09:59 PM PDT Hello! I'm looking for a tutor to help me in my python based course I am taking. A lot of my homework assignments are problem solving based, and I really want to be able to learn and truly understand how to problem solve. If this interests you please dm me! [link] [comments] |
What are some audio based ways to learn about programming and CS? Posted: 11 Jun 2020 09:13 PM PDT I have a 30 hour road trip coming up and want to learn more about programming. [link] [comments] |
Is it "cheating" to use a framework Posted: 11 Jun 2020 07:14 AM PDT im not really great with some stuff (ui-ux) so i use the ionic framework and also google's firebase for user authentication is that considered cheating or do i have to invent the wheel at every new company also question to current devs do you guys use frameworks at your jobs or do you have to build it up from the bottom [link] [comments] |
Looping through a dir of JSON files - doing something wrong Posted: 11 Jun 2020 03:08 PM PDT I am trying to loop through a folder of JSON files and put them all together in a final dataframe (df_final). However, when I run this I get a blank dataframe when I run df_final. What am I doing wrong? Thank you so much [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