kjea
201 posts

kjea retweetledi

@mybiliksewa @BilikSewaKL @biliksewa
Bilik sewa perempuan @ Cybersouth
Bilik ke 3 menghadap taman
bilik ada katil, almari, kipas
rumah ada stove, fridge, washing machine, aircond
contact zeha (0132419484)
Indonesia

@olympicmas I don't understand why suddenly the final result becomes REL? can anyone help to explain? @olympicmas
English

In an intense final showdown, Muhammad Shah Firdaus Sahrom OLY was involved in a crash at the last corner before the finish line with Jack Carlin of Great Britain and Shinji Nakano of Japan. Finishing in top 6 of the Men’s Keirin final is a remarkable achievement, especially after exiting in the quarterfinals at Tokyo 2020. Merci beaucoup. Get well soon Shah!
#OlympicMAS
#Paris2024




English
kjea retweetledi

How to create Android Application using Python | Py to Apk
#python
morioh.com/p/5b08f28b2c20…
English

Wawww boleh dapat freee ilmu mahal ni! @firdhausmntzr
Firdhaus Muntazar@firdhausmntzr
SATU KALI LAGI! PRODUK KESIHATAN! Saya baru siapkan satu ebook case study: "Kaw-Kaw" Kaji Market Orang Tua, Leads RM25 Jadi RM10 Je! Saya nak let go for RM49 tapi for now.... 100% FREE untuk 1000 pertama! Follow, RT & saya akan auto DM terus link. Love you guys! ❤️
Indonesia
kjea retweetledi
kjea retweetledi

Learn about free certification courses for data science.
[🔖 Bookmark for later]
❯ Python
freecodecamp.org/learn/scientif…
❯ Machine Learning
simplilearn.com/learn-machine-…
❯ R
mygreatlearning.com/academy/learn-…
❯ Excel
simplilearn.com/learn-business…
❯ PowerBI
openclassrooms.com/courses/743429…
❯ Tableau
openclassrooms.com/courses/587360…
❯ Mathematics & Statistics
matlabacademy.mathworks.com
❯ Probability
mygreatlearning.com/academy/learn-…
❯ Data Analysis
cognitiveclass.ai/courses/data-a…
❯ Data Visualisation
cognitiveclass.ai/courses/data-v…
❯ Data Cleaning
kaggle.com/learn/data-cle…
❯ SQL
openclassrooms.com/courses/207148…
❯ Deep Learning
kaggle.com/learn/intro-to…
If you found this post helpful:
1. Follow me @alifcoder for more such content.
2. RT the tweet below to share with your audience.

English
kjea retweetledi

It's so simple to remove background using Python, you can reduce code lines to 5
📔 Best Python Books: bit.ly/3REqgBm
#python #programming #developer #morioh #programmer #softwaredeveloper #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml

English
kjea retweetledi

Free Certification Courses to Learn Full Stack Development in 2023:
1. Full Stack
lnkd.in/dKw63ZWN
2. HTML and CSS
lnkd.in/d_hcSBGr
3. JavaScript
lnkd.in/d923AgU5
4. Python
lnkd.in/dGdVkx-C
5. MySQL
lnkd.in/gQV5idDv
6. MongoDB
lnkd.in/datQ53t9
7. Node.js
lnkd.in/gRZ7Kg82
8. Express
lnkd.in/d3enke4W
9. React
lnkd.in/dCp9KRN5
10. Java
lnkd.in/gpZBQyfr
11. Git
lnkd.in/dGJ4NYe8
12. DSA
lnkd.in/g3ck8V9c
13. GraphQL
lnkd.in/deJKmwyt
14. Microservices
lnkd.in/d-vp4Bti
15. Cloud
lnkd.in/deAzQzvB
16. Serverless
lnkd.in/d6G_jkHE
17. Linux
lnkd.in/dwDQmvJe
18. DevOps, CI/CD
lnkd.in/dn8f_7Jf
19. Docker
lnkd.in/dUJWqkJT
20. Kubernetes, OpenShift
lnkd.in/dsVgn8en
Follow @Kanojiyaaakash1 for such free resources.

English
kjea retweetledi
kjea retweetledi

Are you frustrated that your SQL Server queries are slow? Are you tired of using guesswork to try to make them faster?
Come to Utrecht, October 9, for a full-day workshop that teaches you all about execution plans!
techorama.nl/workshops/exec…
English

@scheekeong I don't know much... but I really hope all cytro bagi rakyat tahu dan faham benda2 pencapaian like this! Bukan busuk busukkan or buruk burukkan orang... bila banyak achievement , kami yang marhaen ni akan makin setuju makin yakin. Please... dunia nak kiamat dah...
Indonesia
kjea retweetledi

MetMalaysia memaklumkan Peralihan Monsun yang dijangka bermula 19 September ini akan membawa hujan lebat berserta angin kencang dalam jangka masa singkat.
Ia berpotensi menyebabkan banjir kilat serta kerosakan pada struktur tidak kukuh.
Ikuti berita terkini di grid.astroawani.com
#AWANInews

Indonesia
kjea retweetledi

Don't forget to understand these essential SQL topics if you're just starting out.
1. SQL Basics
- SELECT Statement:
It's like asking the database for specific information.
- FROM Clause:
Tells the database where to look for that information.
- WHERE Clause:
Filters out the stuff you don't need.
- ORDER BY Clause:
Arranges the results in a specific order.
2. Data Manipulation
- INSERT: Adds new data.
- UPDATE: Changes existing data.
- DELETE: Removes data.
- MERGE: Combines these actions.
3. Data Definition
- CREATE TABLE: Makes a new table.
- ALTER TABLE: Edits an existing table.
- DROP TABLE: Deletes a table.
- INDEXES: Helps with finding data quickly.
4. Constraints
- PRIMARY KEY: Ensures each row is unique.
- FOREIGN KEY: Keeps data relationships intact.
- UNIQUE: Ensures values are unique.
- DEFAULT: Sets a value if none is given.
5. Joins (Really Important)
- INNER JOIN: Combines data from different tables.
- LEFT JOIN: Gets all data from one table and matching data from another.
- RIGHT JOIN: Opposite of LEFT JOIN.
- FULL JOIN: Gets data if it's in either table.
- SELF JOIN: Links data within the same table.
6. Subqueries:
- Correlated Subqueries: Subqueries connected to the main query.
- Scalar Subqueries: Subqueries that return a single value.
- Subquery in FROM Clause: Using a subquery as a table.
7. Aggregation Functions:
- SUM, COUNT, AVG, MAX, MIN: Math on groups of data.
- GROUP BY: Groups data before doing math.
- HAVING: Filters groups based on math results.
8. Views:
- CREATE VIEW: Makes a pretend table.
- ALTER VIEW: Changes the pretend table.
- DROP VIEW: Deletes the pretend table.
9. Transactions:
- BEGIN TRANSACTION, COMMIT, ROLLBACK: Ensures data stays safe and consistent.
- ACID Properties (Important): Rules for safe transactions.
10. Database Security:
- GRANT and REVOKE: Decides who can do what.
- Roles: Groups of permissions for users.
11. Normalization (Important):
- 1NF, 2NF, 3NF, BCNF, 4NF:
Ways to organize data for efficiency and accuracy.
12. Indexes:
- Clustered vs. Non-Clustered Indexes: Different ways to find data quickly.
13. Database Management Systems (DBMS):
- Different software tools for working with databases, like MySQL etc.
SQL has many more things to learn, but these topics will give you a strong starting point if you're new to it.

English





