#should i learn sql
Explore tagged Tumblr posts
Text
givedirectly just released their first results from their universal basic income study. the paper is long and ive only skimmed it but this npr article sums it up well
basically, they gave rural kenyan villages money in four ways: 1. none (control), 2. monthly $50 payments for 12 years, 3. monthly $50 payments for 2 years ($1.2k total), and 4. lump-sum payment of $1,200.
and it turns out that yeah, "what if we just gave poor people money?" WORKS to alleviate poverty and the "bu-but poor people will waste it on cigs and booze!" concern is unfounded. people drank less alcohol, became entrepreneurs, and saved significantly more money. (it's also important to note the recipients of lump-sum payments were significantly more successful at becoming entrepreneurs, and the investments in business rather than subsistence agriculture is because the entire village received a payment, so there would be more customers.)
ive been aware of givedirectly for a couple years since i learned about effective altruism (which, woof, that's a whole other post) so this is pretty cool to see. i guess this is the closest you can get to a "pure" UBI study uncomplicated by taxes/other welfare programs like you'd see in the US. recommend a read if you're interested in UBI, international development, or are just curious
#shouting into the void lmao there is no target audience for this#me talking about policy on my blog full of gay sex jokes#me reading this and going 'wow... i should get a MPP degree' as if i have any quant skills whatsoever#if i ever learn SQL it's over for you hoes#mine
5 notes
·
View notes
Text
The Story of KLogs: What happens when an Mechanical Engineer codes
Since i no longer work at Wearhouse Automation Startup (WAS for short) and havnt for many years i feel as though i should recount the tale of the most bonkers program i ever wrote, but we need to establish some background
WAS has its HQ very far away from the big customer site and i worked as a Field Service Engineer (FSE) on site. so i learned early on that if a problem needed to be solved fast, WE had to do it. we never got many updates on what was coming down the pipeline for us or what issues were being worked on. this made us very independent
As such, we got good at reading the robot logs ourselves. it took too much time to send the logs off to HQ for analysis and get back what the problem was. we can read. now GETTING the logs is another thing.
the early robots we cut our teeth on used 2.4 gHz wifi to communicate with FSE's so dumping the logs was as simple as pushing a button in a little application and it would spit out a txt file
later on our robots were upgraded to use a 2.4 mHz xbee radio to communicate with us. which was FUCKING SLOW. and log dumping became a much more tedious process. you had to connect, go to logging mode, and then the robot would vomit all the logs in the past 2 min OR the entirety of its memory bank (only 2 options) into a terminal window. you would then save the terminal window and open it in a text editor to read them. it could take up to 5 min to dump the entire log file and if you didnt dump fast enough, the ACK messages from the control server would fill up the logs and erase the error as the memory overwrote itself.
this missing logs problem was a Big Deal for software who now weren't getting every log from every error so a NEW method of saving logs was devised: the robot would just vomit the log data in real time over a DIFFERENT radio and we would save it to a KQL server. Thanks Daddy Microsoft.
now whats KQL you may be asking. why, its Microsofts very own SQL clone! its Kusto Query Language. never mind that the system uses a SQL database for daily operations. lets use this proprietary Microsoft thing because they are paying us
so yay, problem solved. we now never miss the logs. so how do we read them if they are split up line by line in a database? why with a query of course!
select * from tbLogs where RobotUID = [64CharLongString] and timestamp > [UnixTimeCode]
if this makes no sense to you, CONGRATULATIONS! you found the problem with this setup. Most FSE's were BAD at SQL which meant they didnt read logs anymore. If you do understand what the query is, CONGRATULATIONS! you see why this is Very Stupid.
You could not search by robot name. each robot had some arbitrarily assigned 64 character long string as an identifier and the timestamps were not set to local time. so you had run a lookup query to find the right name and do some time zone math to figure out what part of the logs to read. oh yeah and you had to download KQL to view them. so now we had both SQL and KQL on our computers
NOBODY in the field like this.
But Daddy Microsoft comes to the rescue
see we didnt JUST get KQL with part of that deal. we got the entire Microsoft cloud suite. and some people (like me) had been automating emails and stuff with Power Automate
This is Microsoft Power Automate. its Microsoft's version of Scratch but it has hooks into everything Microsoft. SharePoint, Teams, Outlook, Excel, it can integrate with all of it. i had been using it to send an email once a day with a list of all the robots in maintenance.
this gave me an idea
and i checked
and Power Automate had hooks for KQL
KLogs is actually short for Kusto Logs
I did not know how to program in Power Automate but damn it anything is better then writing KQL queries. so i got to work. and about 2 months later i had a BEHEMOTH of a Power Automate program. it lagged the webpage and many times when i tried to edit something my changes wouldn't take and i would have to click in very specific ways to ensure none of my variables were getting nuked. i dont think this was the intended purpose of Power Automate but this is what it did
the KLogger would watch a list of Teams chats and when someone typed "klogs" or pasted a copy of an ERROR mesage, it would spring into action.
it extracted the robot name from the message and timestamp from teams
it would lookup the name in the database to find the 64 long string UID and the location that robot was assigned too
it would reply to the message in teams saying it found a robot name and was getting logs
it would run a KQL query for the database and get the control system logs then export then into a CSV
it would save the CSV with the a .xls extension into a folder in ShairPoint (it would make a new folder for each day and location if it didnt have one already)
it would send ANOTHER message in teams with a LINK to the file in SharePoint
it would then enter a loop and scour the robot logs looking for the keyword ESTOP to find the error. (it did this because Kusto was SLOWER then the xbee radio and had up to a 10 min delay on syncing)
if it found the error, it would adjust its start and end timestamps to capture it and export the robot logs book-ended from the event by ~ 1 min. if it didnt, it would use the timestamp from when it was triggered +/- 5 min
it saved THOSE logs to SharePoint the same way as before
it would send ANOTHER message in teams with a link to the files
it would then check if the error was 1 of 3 very specific type of error with the camera. if it was it extracted the base64 jpg image saved in KQL as a byte array, do the math to convert it, and save that as a jpg in SharePoint (and link it of course)
and then it would terminate. and if it encountered an error anywhere in all of this, i had logic where it would spit back an error message in Teams as plaintext explaining what step failed and the program would close gracefully
I deployed it without asking anyone at one of the sites that was struggling. i just pointed it at their chat and turned it on. it had a bit of a rocky start (spammed chat) but man did the FSE's LOVE IT.
about 6 months later software deployed their answer to reading the logs: a webpage that acted as a nice GUI to the KQL database. much better then an CSV file
it still needed you to scroll though a big drop-down of robot names and enter a timestamp, but i noticed something. all that did was just change part of the URL and refresh the webpage
SO I MADE KLOGS 2 AND HAD IT GENERATE THE URL FOR YOU AND REPLY TO YOUR MESSAGE WITH IT. (it also still did the control server and jpg stuff). Theres a non-zero chance that klogs was still in use long after i left that job
now i dont recommend anyone use power automate like this. its clunky and weird. i had to make a variable called "Carrage Return" which was a blank text box that i pressed enter one time in because it was incapable of understanding /n or generating a new line in any capacity OTHER then this (thanks support forum).
im also sure this probably is giving the actual programmer people anxiety. imagine working at a company and then some rando you've never seen but only heard about as "the FSE whos really good at root causing stuff", in a department that does not do any coding, managed to, in their spare time, build and release and entire workflow piggybacking on your work without any oversight, code review, or permission.....and everyone liked it
#comet tales#lazee works#power automate#coding#software engineering#it was so funny whenever i visited HQ because i would go “hi my name is LazeeComet” and they would go “OH i've heard SO much about you”
64 notes
·
View notes
Note
Hi Argumate! I just read about your chinese language learning method, and you inspired me to get back to studying chinese too. I want to do things with big datasets like you did, and I am wondering if that means I should learn to code? Or maybe I just need to know databases or something? I want to structure my deck similar to yours, but instead of taking the most common individual characters and phrases, I want to start with the most common components of characters. The kangxi radicals are a good start, but I guess I want a more evidence-based and continuous approach. I've found a dataset that breaks each hanzi into two principle components, but now I want to use it determine the components of those components so that I have a list of all the meaningful parts of each hanzi. So the dataset I found has 嘲 as composed of 口 and 朝, but not as 口𠦝月, or 口十曰月. So I want to make that full list, then combine it with data about hanzi frequency to determine the most commonly used components of the most commonly used hanzi, and order my memorization that way. I just don't know if what I'm describing is super complicated and unrealistic for a beginner, or too simple to even bother with actual coding. I'm also not far enough into mandarin to know if this is actually a dumb way to order my learning. Should I learn a little python? or sql? or maybe just get super into excel? Is this something I ought to be able to do with bash? Or should I bag the idea and just do something normal? I would really appreciate your advice
I think that's probably a terrible way to learn to read Chinese, but it sounds like a fun coding exercise! one of the dictionaries that comes with Pleco includes this information and you could probably scrape it out of a text file somewhere, but it's going to be a dirty grimy task suited to Python text hacking, not something you would willingly undertake unless you specifically enjoy being Sisyphus as I do.
if you want to actually learn Chinese or learn coding there are probably better ways! but I struggle to turn down the romance of a doomed venture myself.
13 notes
·
View notes
Text
SeekL x Killer Chat - The Beginning

Lyra sits at her PC. Looking at her monitor. She's just finished learning ArnoldC. Her recent obsession with all of Arnold Schwarzenegger's movies led her to learn of the existence of ArnoldC.
Coding was but another way to write. It could be artistic; it was unique.
They look at their previous works with other coding languages. Brainfuck and JSFuck, both were very interesting. Especially having JSFuck running on actual web pages. Another favorite, similar to ArnoldC, Shakespeare. A language that looks similar to Shakespearen. The language she learnt right before ArnoldC.
She whistles and looked through the internet to see if there was anything that could expand her esoteric coding languages.
They squint at the name of one, SeekL? An interesting name without a description. With a shrug they start to comb through the internet. Nothing was showing up as a learning tool for the coding language. However, there were a few articles about how it was used by some hackers.
She hums to herself and double checks her shields and makes sure her data is locked up tight. Then she hops onto the dark web to see if there was anything.
"Oh, well that's interesting," she said looking at the page that came with more information, but just barely.
*SeekL is similar to SQL. If you wish to learn, click here*
'Should I click to learn it?' The idea bounced around their brain, but she found no reason to reject it. So she clicked it.
She was automatically joined into a group chat. There she learnt basic SeekL and some SQL. She made friends with the others in the chat and helped them with their last hacks. They got to be part of a group for a few days, chat with Odxny on video calls each day, and become Thrim. They learnt how much coding could be used to for a vendetta and how easily some people crumble to a ransom.
It was interesting and she wanted to continue in this new world.
Then came the final day for the server to shut down. Her hands trembled as she typed in the phone number for Odxny, hoping she didn't mess anything up. She only had one shot.
exec dial(555-448-4746)
It rang once.
Twice.
Thri-
"Hey"
Relief flooded her.
11 notes
·
View notes
Text
Which coding languages should I learn to boost my IT career opportunities?
A career in IT needs a mix of versatile programming languages. Here are some of the most essential ones:
Python – Easy to learn and widely used for data science, machine learning, web development, and automation.
JavaScript – Key for web development, allowing interactive websites and backend work with frameworks like Node.js.
Java – Known for stability, popular for Android apps, enterprise software, and backend development.
C++ – Great for systems programming, game development, and areas needing high performance.
SQL – Essential for managing and querying databases, crucial for data-driven roles.
C# – Common in enterprise environments and used in game development, especially with Unity.
24 notes
·
View notes
Text
A few years ago I did a full-length version of this tag, which I thought would be a fun thing to revisit for this NYE! (You should do this too, if you feel so inclined! count this as me tagging you.)
share your favorite memory of this year.
I can't really tell you anything but multiple flashes that I hold close to my heart-- my mother sitting up in bed laughing over something I said about my brother, my whole family dancing at my brother's wedding hand-in-hand, one of my friends saying wistfully it was so good to hear me & my teammate's voices on the phone, me driving home the first evening it felt like fall and watching the leaves swirl around the street, me seeing a tiger (!!!) in the spring. A beautiful year, if a hard one!
2. what was the highlight of your year?
Most likely my brother's wedding! It tinged the year in such a golden light.
3. list the top five books you read this year.
In no particular order (except for the Q love u Q), The Q, The Carrying, The Miraculous Journey of Edward Tulane, The Sound of a Wild Snail Eating, and the entire Frieren series tbh.
4. list the top five movies you watched this year.
Past Lives (movie of my HEART), Twisters, Miss Potter (my first rewatch since childhood and 😭😭), The Fall Guy, and tbh Return to Me (I think of it often!)
5. list the top five tv series you binged this year.
Hmmmm....this is always difficult! I would say, Abbott Elementary (my beloved), Psych (extra points for watching with my brother), Summer Strike (peaceful show of my heart), ??????, I rewatched Makanai which I love dearly but I swear I cannot remember off the top of my head anything else I watched, liked, and finished.
6. what is the one new thing you discovered this year (could be a place/hobby/song etc)?
I started learning SQL and that somehow to me was such a joy! And after reading The Hurting Kind book Ada Limón finally got into my heart for realsies this time and I think that's magical.
7. top three albums that you played this year?
I think I'm going to do a ranking on all their own, but peeeeersonally I think the albums that most were There for me were Charm by Clairo, Vertigo by Griff, Positive Spin by Gretta Ray. (Honorable mention to TTPD that has been with me through it all, it just feels too vast for me to really put a pin in it for just this year, you know?)
8. your spotify wrapped #1 song
These Walls – Dua Lipa, which I don't fully know what to say about it except that the shiny sparkly sound somehow makes me feel so bright and emotional at the same time.
9. your spotify wrapped top artist
Taylor forever.
10. your personal song of the year.
It's not even from this year! But You've Already Won by Gretta Ray song of all time to ME. It can simply hold a whole life in its hand and I love that so. Also a little shoutout to Down Bad which can still make me cry 8 months 10,000 listens later.
11. what is an achievement that you are proud of this year?
not necessarily any singular achievements. I'm proud of how much time I've spent with my mom, I think. I'm proud of how much I've grown in regards of my work. It's been a year of quiet (if grueling) growth and I'm proud of that.
12. what are your goals for the next year?
My goals? I think mostly that I'm setting some writing goals (daily journaling, quarterly chapbooks, 20k of a book draft) and I want to pick up boxing again as I've let it lapse this month.
13. any three book releases you are excited for next year.
I'm soooo out of the loop here, alas. There's new Maggie Stiefvater that I will read, there's new Emily Henry I will probably read.
14. any three upcoming movies/tv series that you are excited for next year.
tentatively excited for new Superman, tentatively excited for second half of Wicked, always excited for more Abbott Elementary.
15. if you could change one thing about the past year what would it be?
very little! I had to go through it to come out of the other side of it. (And when it shines out it'll shine all the clearer or something of the sort.)
16. did you manage to stick to your new year’s resolutions this year?
Not even a little! I was going to use this year to try to draw something every day, which I failed horribly at, but I think that's only to be expected. Still, I want to use my resolutions to create more little spaces of FUN in my life again. I've missed them horribly.
17. do you have any new year’s resolutions for the next year?
My only real, true type of resolution is simply to have FUN. While I've still had lots of big, beautiful joys this year, I've not delighted as I ought to, and I want to bring that part of myself back. Learn some new dances, learn to make sourdough, things along that line. Just get back into the motions of living and find myself swept up by the verve of it all. That's my one bit of resolve.
18. favorite meme of the year?
I could not tell you the name of a meme right now if you told me my life depended upon it. I love the bit we have of using substitutes because we don't do suicidal ideation anymore here babes. I love the resurgence of the children's hospital red meme.
19. which month was the most fun this year?
The most fun?! I mean, probably...October? It's hard to tell because there were challenges in so many! But I laughed the most in October so it must be then.
20. if you could tell yourself something at the beginning of this year based on what you know right now, what would it be?
I mean...I think more than anything I'd just want to reassure myself of the past that it's really, really okay, and you have more strength and power within you than you might think. Also, even though it sucks and it's uphill work, if you want this to be a place full of love you have to be the one to put it there, you can't just luck your way into it, you yourself have to put your heart on the line and become love itself to the people you're given to care for. And that's something wonderful to take part in!
21. favorite viral trend of the year?
I looooove the international Mikus with ALL my heart. They're what make life worth living 💛💛
22. list any three new things you learned this year (could be recipes, a new skill, etc.)
This is the hardest thing for me to recall. I learned how to make arrozcaldo at last? And I started learning SQL as I said. I started properly, FINALLY learning the different forms of poetry at the beginning of the year (I know, I know, I'm shamefully self-taught) but a lot of it has fallen out of my brain. I need to set it more in my bones, I think.
23. how would you describe your year in a word?
Enduring, is a good one I think. It's been quite a year for gritting my teeth and bearing it, alas. But it's also been a year of fruitful, beautiful friendship and fellowship, a year of becoming greater company to myself and to others. Luminous would be another fitting word, actually! There's been a lot of beauty and grace granted to me, and I am very, very grateful. There's something bittersweet in leaving behind any year, and this year just as much as any! I'll never live it again. But I can live a new one, and that's just as magical in its own right. I hope I'm brave enough to meet it!
13 notes
·
View notes
Text

12/4/24
Now that I'm post-QE and not taking classes, I don't have to do any true studying for work/school, but I still have areas (work-related and otherwise) that I want to refresh on and improve on. As a result, I'm going to continue making some educational posts, but the subjects will shift towards spanish, bioinformatics + coding, and maybe even some statistics. This could include:
Spanish grammar guide (I made one of these for French in the past, so I could post that as well if people are interested?)
Data visualization with R
Intro to bash/unix
Intro to python
Intro to sql
Computing clusters and SSH
Statistical modeling (not my expertise but I want to learn more)
If anyone has opinions about what I should prioritize please do let me know!! While this is for my own learning, I want to share what others want to see!
Other things I'm working on lately include writing manuscripts, cloning some stubborn vectors, and soon making a website using github and jekyll :)
10 notes
·
View notes
Text
Skidaddle skidoodle
Wednesday, 11/22/2023 ❄️
I have now blasted your retinas with an ungodly amount of light, you're welcome. Anyways, this is the latest iteration of my portfolio... still haven't gotten around to actually coding it though. I'm thinking I should probably code my website in WordPress to be safe(r). Knowing me I'd probably unintentionally attract at least one person that will attempt an SQL injection or something. Speaking of which, I got sidetracked and now I'm learning about basic cybersecurity over at TryHackMe.
53 notes
·
View notes
Text
Internet is a dangerous place. It convinces you that you can learn SQL in a day when you can barely even work with CSS. All while I& should be working on an apprenticeship report
4 notes
·
View notes
Note
)-)0 what happened
the head of the IT Institute decided that instead of teaching us how to code and manage databases in a course literally named Data Science we gotta drop all learning how to code and use SQL. instead we will just ~*vibe code*~ aka 'put prompts into ChatGPT and then yell at it until the code works as we expect it to' (which like... given what happened to 4chan makes me think about just how fucked this is)
I don't even wanna get into how much I despise vibe coding as a concept, but holy shit, I am at an IT department, I should be learning how to code proper, how to read and understand it, what it means and why it is that way, not pull a fucking 'I have a business degree and I want to make a lot of money' podcast bro??
and we are supposed to "write a test" from this absolute waste of time course, which will be, you fucking guessed it, us putting prompts into ChatGPT and submitting it within a time limit.
5 notes
·
View notes
Note
Hi, I just got into tech (actually 1 year in but I still feel like I don't know anything).
I learnt python, R, SQL, Tableau and concepts in Data Structures, Algorithms.
[Just the Basic level of the listed.]
But I can't write my own programs on python or create anything.
I was hella impressed by your microprocessor project, and when I took up tech (ai and data science) I assumed I would do something like that or at least code.
Now, I am just venting but where do I start, how do I make projects what are some interesting projects, what should I learn? A lot of my seniors tell me to have a wide range of knowledge like focus on one thing by depth but add other things. For example: you can study data analytics in depth but have some knowledge in ethical hacking and web development etc. Like an all rounder.
Wow ok a lot to unpack here, I'll get started
Lots of places recommend that you start with Arduino, as there are a lot of good tutorials out there. I somewhat disagree
I think that raspberry pi is better because it's usually a lot cheaper to buy the stuff you want to play around with
But an even cooler way to do it, go to wokwi.com and start a project on a Raspberry Pi Pico (make sure it's the micropython version) and then you can get started there
Google something like "Blink led with Pi Pico micropython" and there will be a tutorial or two
Then, once you've played around for a while you can buy a Pi Pico for very little money and see your stuff work irl!
If you need any more help or have any questions, feel free to DM me and I'll see what I can do
#micropython#coding#python#raspberry pi#raspberry pi pico#programming#microprocessors#microcontroller#microcontrollers
6 notes
·
View notes
Text
I'm starting to learn SQL and decided my personal database should be something I know and have lots of.
Logically making a SQLDB of my MTG cards was the only logical solution.
4 notes
·
View notes
Text
insatiable | 29/08/2024 | 22:48
yo,
not sure what to put on here. i was never the type to journal or write diaries as a kid. never quite understood the purpose of such things. i mean, i guess i can understand the practical reasons of it - whatever it may be - but it's one thing for the brain to know and for the heart to know.
so why am i doing this? i don't know, just thought it would be fun. it was kind of an impulsive decision. i can't remember what prompted me to start this either. this blog will serve as me writing down my thoughts i guess?
i guess don't really expect people to read these either (but that won't stop me from adding tags to this post! :D). maybe i'll look back at these entries one day. maybe i'll cringe, maybe i'll laugh. who knows.
but hey, if you're here and i have zero idea who you are, hello there.
y'know, i've always liked the idea of anonymous journals, like imagine finding a stranger's journal and reading about their lives, not knowing who they are. kinda sick.
whatever, i'm rambling. i'm mainly writing this right now because i have nothing else to do. i've already finished up with what i needed to do - assessments, email lecturers. i wanted to play some video games, but it doesn't feel fulfilling anymore. maybe i'll feel good in the moment, but it's not like i'm looking forward to doing it.
i just feel like i could be doing something more productive. i get i should set some time for myself where i can take a break from work/productivity for self-care or something. but i just can't shake off the thought that i could be doing something else, something more productive.
i was thinking of finalising a programming timeline for myself - basically just trying to learning all sorts of coding languages within a year. i'm already in a programming course, but i feel like i could be doing more, y'know? currently i'm learning SQL, HTML/CSS, and XAML/C#. but i could be doing more.
it kinda sucks, thinking like this. makes me feel like i can never do enough no matter how hard i try. but it's whatever. i just gotta push through it.
maybe i'm just burnt out.
yeah, that could be it.
but burnt out from what? existing? what's there to be burnt out about? i'm not the busiest person on earth.
i feel like i'm not doing anything - anything productive, that is, and it's killing me. i could be doing something else, i could be more productive, i could be more hardworking.
but why am i not? why am i still writing this?
whatever.
i'll sleep it off, see how i feel tomorrow. i'll try to play a game to take my mind off it.
haha, think this entry's a little too serious.
time to absolutely LOCK IN and QUIT feeling bad! just gotta STAND on BUSINESS WOOOOOO (this is hilarious btw)
Yours sincerely, [redacted]
#journal#my journal#journal entry#digital journal#diary#online diary#thoughts#thinking#diary entry#journaling#digital diary#my diary#dear diary
3 notes
·
View notes
Text
ok so if i wanna be a data analyst. should i learn SQL or python basics first. i dont expect to go like CS major deep or anything just basic skills to supplement my phd in my job hunt
14 notes
·
View notes
Text

💡👨💻 “Code Commandments: What Every Programmer MUST Know!”
Before diving into frameworks and libraries, every coder should master the basics—DSA for working professionals, system design concepts, SQL, version control, and debugging techniques. These aren’t optional—they’re survival skills in the dev jungle! Whether you're switching careers or sharpening your skills with the best online professional certificates, these foundations set you apart. At TutorT Academy, we turn “I kinda know this” into “I OWN this” with practical, project-based learning.
#ProgrammersMustKnow #DSAForWorkingProfessionals #SystemDesignEssentials #TutorTAcademy #BestOnlineProfessionalCertificates
0 notes
Text
Master Financial Analysis with KPMG's Industry-Endorsed Course
If your goal is to learn more about numbers, drive strategic decision-making, or propel yourself higher within the finance funnel, then this program is for you. With a curriculum based on leading industries, the Financial Analysis Prodegree (endorsed by KPMG) in partnership with Imarticus Learning, will provide you with just that.
What Is Financial Analysis?
Financial analysis is evaluating companies, budgets, and projects to assess financial health and long-run viability. Financial analysis is a major part of corporate finance, investment banking, consulting, etc.
Key aspects of financial analysis include:
Ratio analysis
Cash flow analysis
Trend analysis
Forecasting, financial modelling
A structured curriculum in financial analysis will help learners make decisions based on evidence, assess risk, and ultimately, contribute.
Why Choose the KPMG Financial Analysis Prodegree?
KPMG is bringing its global heritage in audit, tax, and advisory to the classroom through this program, making it more than a course, but a pathway to actual finance careers.
What makes this program unique:
Industry-Approved Curriculum: Created with KPMG experts and contains actual case studies, projects, and assessments.
Recognised Certification: Internationally recognised certification to build credibility and employability.
Flexible Learning: 100% online with self-paced learning—great for all students and working professionals.
Practical, Job-Ready Tools: Learn practical knowledge in Excel, Power BI, and SQL - the skills that recruiters want.
Who Should Enroll?
This program is ideal for
Students who graduated with a degree in commerce, finance, or economics
Professionals at the beginning of their careers in finance
Professionals in their careers who are re-skilling to become analytical
Entrepreneurs who make decisions about finances for their businesses.
If you aim to learn more about numbers, drive strategic decision-making, or push yourself up in the finance funnel, then this program is for you.
What You’ll Learn
Excel for financial modelling
Power BI for data visualisation
Google Sheets for collaborative financing tasks
SQL for basic extraction and analysis of financial data
These tools are embedded into real-world scenarios, solving business problems, not just learning theory.
Career Outcomes
After course completion, you will be ready for roles like:
Financial Analyst
Business Analyst
Investment banker
Budget Analyst
Equity research analyst
Risk manager
Graduates of the course have progressed to working in banks, MNCs, fintech startups, and global consultancies.
Salary Insights
Based on market data:
Entry-Level: ₹4–6 LPA
Mid-Level: ₹8–12 LPA
Senior Roles: ₹15–20 LPA+
Your actual remuneration will depend on your experience, skill set, and what company you join.
Why Financial Analysis is More Crucial Than Ever
Businesses are operating in more volatile and complex circumstances. It can serve to:
Maximise profitability
Reduce costs
Ensuring compliance
Driving growth strategies
It’s no wonder that skilled financial analysts are in high demand across industries.
Getting Started
Enrolling is simple:
Visit the official Imarticus Learning website
Sign up with your details
Choose a payment plan
Join the orientation webinar
Most learners complete the course in 3 to 6 months at their own pace.
FAQs
Do I need to have a finance background?
No. This course is supported for beginners. You will be guided from the basics to the advanced stuff.
What certification will I get?
A globally recognised certification from KPMG.
Is there placement support?
Yes. You will have a deep recruitment network and job support.
Is the course entirely online?
Yes. The course involves live sessions and recordings, and you will have the help of an online community.
Conclusion
If you’re ready to future-proof your career and learn the language of business and finance, there’s no better starting point than the KPMG-endorsed Financial Analysis Prodegree with Imarticus Learning.
With experiential learning, world-class expertise, and international accreditation, you’ll not only have in-demand skills but also have the confidence to reach evidence-based conclusions for your organisation.
Explore the program today at Imarticus Learning, and take that initial step on the journey to being a high-impact financial professional.
0 notes