Famous programming languages and their frameworks
1. Python:
Frameworks:
Django
Flask
Pyramid
Tornado
2. JavaScript:
Frameworks (Front-End):
React
Angular
Vue.js
Ember.js
Frameworks (Back-End):
Node.js (Runtime)
Express.js
Nest.js
Meteor
3. Java:
Frameworks:
Spring Framework
Hibernate
Apache Struts
Play Framework
4. Ruby:
Frameworks:
Ruby on Rails (Rails)
Sinatra
Hanami
5. PHP:
Frameworks:
Laravel
Symfony
CodeIgniter
Yii
Zend Framework
6. C#:
Frameworks:
.NET Framework
ASP.NET
ASP.NET Core
7. Go (Golang):
Frameworks:
Gin
Echo
Revel
8. Rust:
Frameworks:
Rocket
Actix
Warp
9. Swift:
Frameworks (iOS/macOS):
SwiftUI
UIKit
Cocoa Touch
10. Kotlin:
- Frameworks (Android):
- Android Jetpack
- Ktor
11. TypeScript:
- Frameworks (Front-End):
- Angular
- Vue.js (with TypeScript)
- React (with TypeScript)
12. Scala:
- Frameworks:
- Play Framework
- Akka
13. Perl:
- Frameworks:
- Dancer
- Catalyst
14. Lua:
- Frameworks:
- OpenResty (for web development)
15. Dart:
- Frameworks:
- Flutter (for mobile app development)
16. R:
- Frameworks (for data science and statistics):
- Shiny
- ggplot2
17. Julia:
- Frameworks (for scientific computing):
- Pluto.jl
- Genie.jl
18. MATLAB:
- Frameworks (for scientific and engineering applications):
- Simulink
19. COBOL:
- Frameworks:
- COBOL-IT
20. Erlang:
- Frameworks:
- Phoenix (for web applications)
21. Groovy:
- Frameworks:
- Grails (for web applications)
1. Python:
Frameworks:
Django
Flask
Pyramid
Tornado
2. JavaScript:
Frameworks (Front-End):
React
Angular
Vue.js
Ember.js
Frameworks (Back-End):
Node.js (Runtime)
Express.js
Nest.js
Meteor
3. Java:
Frameworks:
Spring Framework
Hibernate
Apache Struts
Play Framework
4. Ruby:
Frameworks:
Ruby on Rails (Rails)
Sinatra
Hanami
5. PHP:
Frameworks:
Laravel
Symfony
CodeIgniter
Yii
Zend Framework
6. C#:
Frameworks:
.NET Framework
ASP.NET
ASP.NET Core
7. Go (Golang):
Frameworks:
Gin
Echo
Revel
8. Rust:
Frameworks:
Rocket
Actix
Warp
9. Swift:
Frameworks (iOS/macOS):
SwiftUI
UIKit
Cocoa Touch
10. Kotlin:
- Frameworks (Android):
- Android Jetpack
- Ktor
11. TypeScript:
- Frameworks (Front-End):
- Angular
- Vue.js (with TypeScript)
- React (with TypeScript)
12. Scala:
- Frameworks:
- Play Framework
- Akka
13. Perl:
- Frameworks:
- Dancer
- Catalyst
14. Lua:
- Frameworks:
- OpenResty (for web development)
15. Dart:
- Frameworks:
- Flutter (for mobile app development)
16. R:
- Frameworks (for data science and statistics):
- Shiny
- ggplot2
17. Julia:
- Frameworks (for scientific computing):
- Pluto.jl
- Genie.jl
18. MATLAB:
- Frameworks (for scientific and engineering applications):
- Simulink
19. COBOL:
- Frameworks:
- COBOL-IT
20. Erlang:
- Frameworks:
- Phoenix (for web applications)
21. Groovy:
- Frameworks:
- Grails (for web applications)
β€3
β
10 Most Useful SQL Interview Queries (with Examples) πΌ
1οΈβ£ Find the second highest salary:
2οΈβ£ Count employees in each department:
3οΈβ£ Fetch duplicate emails:
4οΈβ£ Join orders with customer names:
5οΈβ£ Get top 3 highest salaries:
6οΈβ£ Retrieve latest 5 logins:
7οΈβ£ Employees with no manager:
8οΈβ£ Search names starting with βSβ:
9οΈβ£ Total sales per month:
π Delete inactive users:
β Tip: Master subqueries, joins, groupings & filters β they show up in nearly every interview!
π¬ Tap β€οΈ for more!
1οΈβ£ Find the second highest salary:
SELECT MAX(salary)
FROM employees
WHERE salary < (SELECT MAX(salary) FROM employees);
2οΈβ£ Count employees in each department:
SELECT department, COUNT(*)
FROM employees
GROUP BY department;
3οΈβ£ Fetch duplicate emails:
SELECT email, COUNT(*)
FROM users
GROUP BY email
HAVING COUNT(*) > 1;
4οΈβ£ Join orders with customer names:
SELECT c.name, o.order_date
FROM customers c
JOIN orders o ON c.id = o.customer_id;
5οΈβ£ Get top 3 highest salaries:
SELECT DISTINCT salary
FROM employees
ORDER BY salary DESC
LIMIT 3;
6οΈβ£ Retrieve latest 5 logins:
SELECT * FROM logins
ORDER BY login_time DESC
LIMIT 5;
7οΈβ£ Employees with no manager:
SELECT name
FROM employees
WHERE manager_id IS NULL;
8οΈβ£ Search names starting with βSβ:
SELECT * FROM employees
WHERE name LIKE 'S%';
9οΈβ£ Total sales per month:
SELECT MONTH(order_date) AS month, SUM(amount)
FROM sales
GROUP BY MONTH(order_date);
π Delete inactive users:
DELETE FROM users
WHERE last_active < '2023-01-01';
β Tip: Master subqueries, joins, groupings & filters β they show up in nearly every interview!
π¬ Tap β€οΈ for more!
β€10
How to enter into Data Science
πStart with the basics: Learn programming languages like Python and R to master data analysis and machine learning techniques. Familiarize yourself with tools such as TensorFlow, sci-kit-learn, and Tableau to build a strong foundation.
πChoose your target field: From healthcare to finance, marketing, and more, data scientists play a pivotal role in extracting valuable insights from data. You should choose which field you want to become a data scientist in and start learning more about it.
πBuild a portfolio: Start building small projects and add them to your portfolio. This will help you build credibility and showcase your skills.
πStart with the basics: Learn programming languages like Python and R to master data analysis and machine learning techniques. Familiarize yourself with tools such as TensorFlow, sci-kit-learn, and Tableau to build a strong foundation.
πChoose your target field: From healthcare to finance, marketing, and more, data scientists play a pivotal role in extracting valuable insights from data. You should choose which field you want to become a data scientist in and start learning more about it.
πBuild a portfolio: Start building small projects and add them to your portfolio. This will help you build credibility and showcase your skills.
β€8π2π₯1
FREE FREE FREE
10 Books on Data Science & Data Analysis will be posted on this channel daily basis
Book 1. Python for Data Analysis
Publisher: O'Reilly
wesmckinney.com/book/
Give it a like if you want me to continue β€οΈ
10 Books on Data Science & Data Analysis will be posted on this channel daily basis
Book 1. Python for Data Analysis
Publisher: O'Reilly
wesmckinney.com/book/
Give it a like if you want me to continue β€οΈ
β€15
β€3
Data Science Projects
2. Fundamentals of Data Visualization Publisher: O'Reilly clauswilke.com/dataviz/ Like for more β€οΈ
Telegram
Coding & Data Science Resources
FREE FREE FREE
10 Books on Data Science & Data Analysis will be posted on this channel daily basis
Book 1. Python for Data Analysis
Publisher: O'Reilly
wesmckinney.com/book/
Give it a like if you want me to continue β€οΈ
10 Books on Data Science & Data Analysis will be posted on this channel daily basis
Book 1. Python for Data Analysis
Publisher: O'Reilly
wesmckinney.com/book/
Give it a like if you want me to continue β€οΈ
5. Data Science at the Command Line
Publisher: O'Reilly
jeroenjanssens.com/dsatcl/
10 Data Science Books
Publisher: O'Reilly
jeroenjanssens.com/dsatcl/
10 Data Science Books
Jeroenjanssens
Welcome | Data Science at the Command Line, 2e
This thoroughly revised guide demonstrates how the flexibility of the command line can help you become a more efficient and productive data scientist. Youβll learn how to combine small yet powerful command-line tools to quickly obtain, scrub, explore, andβ¦
Data Science Projects
5. Data Science at the Command Line Publisher: O'Reilly jeroenjanssens.com/dsatcl/ 10 Data Science Books
6. Introduction to Probability for Data Science
Publisher: Michigan University
probability4datascience.com
Publisher: Michigan University
probability4datascience.com
β€2
9. Kafka, The Definitive Guide
Publisher: O'Reilly
https://assets.confluent.io/m/2849a76e39cda2bd/original/20201119-EB-Kafka_The_Definitive_Guide-Preview-Chapters_1_thru_6.pdf
10 Data Science Books
Publisher: O'Reilly
https://assets.confluent.io/m/2849a76e39cda2bd/original/20201119-EB-Kafka_The_Definitive_Guide-Preview-Chapters_1_thru_6.pdf
10 Data Science Books
β€1
Data Science Projects
9. Kafka, The Definitive Guide Publisher: O'Reilly https://assets.confluent.io/m/2849a76e39cda2bd/original/20201119-EB-Kafka_The_Definitive_Guide-Preview-Chapters_1_thru_6.pdf 10 Data Science Books
10. Python Data Science Handbook
Publisher: O'Reilly
HTML: https://jakevdp.github.io/PythonDataScienceHandbook/
PDF: https://github.com/terencetachiona/Python-Data-Science-Handbook/blob/master/Python%20Data%20Science%20Handbook%20-%20Jake%20VanderPlas.pdf
10 Data Science Books
Publisher: O'Reilly
HTML: https://jakevdp.github.io/PythonDataScienceHandbook/
PDF: https://github.com/terencetachiona/Python-Data-Science-Handbook/blob/master/Python%20Data%20Science%20Handbook%20-%20Jake%20VanderPlas.pdf
10 Data Science Books
β€2