Taught myself vba, what next ? learn programming |
- Taught myself vba, what next ?
- How to rename a selected file using python?
- No code tools
- Retiring early but considering coding for fun
- [C++] How do I do this problem? It was given by our programming teacher but I don't think it can be solved because she insists that we use FOR loop. I only know how to solve this in normal terms.
- How to use custom font to your website (Google Fonts) ?
- [Python] Counting the number of sequences in a given array
- What transition function should I use to transition an image properly?
- Looking for suggestions on how to go about storing information for a DND inventory management program in C#.
- In what order of the following would say are the most important priorities in programming?
- Python game help
- Why is my python program failing test even if everythin is fine?
Taught myself vba, what next ? Posted: 18 Dec 2020 12:13 AM PST Hello y'all, I'm a 29, taught myself vba and would love to continue doing automation/data analysis work as a freelancer. What languages or tools should I learn next ? Background I'm 29, taught myself vba while working for a tech subcontractor in the aviation industry 2 years ago. I was so happy to finally have an actual skill, as I only had a masters in management from a business school, which aside from landing me my first entry-level was mostly a waste of time. Knowing vba made me the go-to "Excel/VBA" guy at my consultancy firm. I went from doing the chores usually attributed to juniors to being assigned on specific tasks like automating a reporting tool or debug or optimize RAM and CPU usage of existing code. This meant I was in a much more comfortable position where I'd be the one who'd define how long the task was going to take me. They'd also cut me much more slack and I could work from home, and manage my time as I wanted as long as the job was done. Speaking to friends in CS or Engineering, I gathered that VBA is a dying tech, so I completed 7/9 courses of the IBM Data Science Professional Certificate. I really enjoyed the course, especially the hands-on projects and it was a great way of getting into Python, with extensive use of the Pandas, Numpy and Matplotlib libraries. Objective : I feel like there is a demand for doing the same thing I was doing in my previous firm, namely automating reporting tools, connecting multiple data sources, but using more modern and more powerful tools than VBA : what should those tools be ? When the Covid crisis hit, I got a severance and moved back to my native country. I got my first automation gig as a freelancer at a lease company and was excited to try out the things I had learnt in Python but VBA still turned out to be a more appropriate option. Turns out you can't pronounce good ol' VBA dead yet. That said, I've dabbled with tools such as PowerBI which could do so much without any actual coding so this could seriously affect the demand for VBA skills. [link] [comments] |
How to rename a selected file using python? Posted: 18 Dec 2020 02:06 AM PST here I can only get the file path [link] [comments] |
Posted: 18 Dec 2020 02:00 AM PST |
Retiring early but considering coding for fun Posted: 18 Dec 2020 01:57 AM PST Hi all, I'm 36/M and made a mistake when I was younger. Although I had a big interest in computers and programming from a young age, I never went into it for my job. I did a mathematics degree (some CS-related modules including Java, Linux and few others), and despite getting good results felt that all the CS students knew so much more. I was worried I would be at a disadvantage if I did that as a career so I went into finance/accounting where I felt it was less technical. Fortunately, I've been able to use good IT skills to develop a slight niche, get a high paying job and my wife and I have almost saved enough money to quit our jobs. I'm part of the FIRE community r/Fire so it isn't like I'm super rich but confident I have enough as we are not big spenders and don't plan to have kids. I'm now considering what I actively want to do when I've quit my job and considering programming for fun as I've always had an interest in it (although overwhelmed by the amount to learn at times). I have continued with my interest over the years and have made an eCommerce website for my wife's side business (Wordpress using Elementor with some custom HTML/CSS and learning basic PHP) and also some basic Javascript and Python scripts to automate manual tasks. They are all probably very badly coded and I don't understand a lot of the underlying workings (particularly the website/plugins etc) but I'll learn over time. My issue it that I'm not motivated just to earn money so getting up early and doing 40+ hour weeks for a company that I don't care about just in order to learn doesn't seem appealing. I do however have various apps/website ideas that I would like to make but they are way beyond my technical ability and not sure if I would ever be able to do it on my own. Questions
- Courses/certificates including Odin, Open Source Society University, Google certificates etc. - Join communities to practise challenges with different programming languages. - Once I've developed my skills sufficient, start to contribute to Open Source Projects and find people who could help me develop further by actively working on projects. **TLDR:*\* Went into wrong career when I was younger but looking to "retire" early now and considering programming for fulfilment. Not sure if I would need a programming job to get the breath of experience or if total self-learning is possible or unlikely. If a job is needed, would you have gone through your job/career if you didn't need the money at all? [link] [comments] |
Posted: 18 Dec 2020 01:52 AM PST Create a program that user enters 5 positive integer numbers then computes and displays the sum. It is very simple to do but how do I even do this using FOR loop. [link] [comments] |
How to use custom font to your website (Google Fonts) ? Posted: 18 Dec 2020 01:51 AM PST Showing your website unique in design is a great way to attract user attention to your website. In this article, I will show you step by step way to adding a font to your website. In this tutorial, I will go to use my simple HTML page to include the fonts. Read more wing your website unique in design is a great way to attract user attention to your website. In this article, I will show you step by step way to adding a font to your website. In this tutorial, I will go to use my simple HTML page to include the fonts. Read more be 👇 https://www.htmlspacecode.com/2020/12/how-to-use-custom-font-to-your-website.html [link] [comments] |
[Python] Counting the number of sequences in a given array Posted: 18 Dec 2020 01:48 AM PST Hi! The following code counts the number of target sequences in an array consisting of zeroes and ones. In my opinion it is correct, as I simply iterate through the subsequences of target length, and check if they are equal. However, in an online course that I am now completing, the tests indicate that my result is one off from the correct one. My adding the missing one in the return I get full marks from the problem. Is there a problem in my code, or the online grader? Cheers! [link] [comments] |
What transition function should I use to transition an image properly? Posted: 18 Dec 2020 01:15 AM PST I'm not sure if this is the best place to ask, but I'm not sure where else to ask. How do I transition an image manually properly? I know there are existing packages that can do this much more efficiently, but I would like to understand what transition function they actually use so I can implement it myself. Say I have two RGB images and want to transition from one to another. How do I do that? I want it to look like one image being overlayed onto another till it is replaced, just like a regular image transition. I tried two different methods, and they still don't look right. Say one image is the start image and the other is the destination. The first method is to have each pixel of the start image increment at the same rate, so some reach the destination pixel's value faster than others The second method I tried is to have each start image pixel change with different gradients so that all pixel's reach their destination value at the same time(gradient is just determined by the ratio of the "distance" it needs to go divided by the transition time) The third method I'm thinking to try but I haven't implemented yet is taking the weighted average of each pixel and changing the weights as a function of time. I am not sure if this is essentially the same as the second method I tried though. Thanks for your help in advance. [link] [comments] |
Posted: 18 Dec 2020 12:45 AM PST I'm working on a program that will allow my party members to add items to their inventory. I think I'll have a class to store individual items information, and store new instances of the class in a vector/list/array. I initially thought I'd just write the information to a file, and use it as a way to save your inventory, but I'm unsure how to best go about this. Is there any commonly accepted way to do something like this? [link] [comments] |
In what order of the following would say are the most important priorities in programming? Posted: 18 Dec 2020 12:39 AM PST I get this asked in a few interviews. How would you sort these from most important to least? 1- Security My answer was: 1- Redability [link] [comments] |
Posted: 18 Dec 2020 12:25 AM PST Hello, i started writing a code where a soccer ball moves all around the window with pygame, can someone help me, i want the window to be split in 4 equal squares of different colors and after 15s the code tells me where did the ball have been the more (top left (blue) or bottom righ t(white) for exemple) here is the window that i'm talking about : https://gyazo.com/c1659fcd259708487b0d432659d0411c
Thank you for helping because i m struggling and sorry for my english [link] [comments] |
Why is my python program failing test even if everythin is fine? Posted: 18 Dec 2020 12:03 AM PST I am creating a CLI todo app(python) in which where I already have a testing file(javascript file) for automated test. My python script fails all tests where there is multiline string to print. All I get is this : These dots are added by testing file showing that there is something extra here. I tried both multiple prints and triple quote string but I get same exception. If I want to print multiline string I will have to as a newline but print does this job for us so is there anythin with print? If I add [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