bootg.com »
United States »
Programming, data science, ML - free courses by Big Data Specialist » Telegram Web
Our story
Google has recently released a storybook feature for Gemini that can be used for creating personalized, illustrated stories.
I used it to share our story ❤️
5 years and counting...
@bigdataspecialist
Google has recently released a storybook feature for Gemini that can be used for creating personalized, illustrated stories.
I used it to share our story ❤️
5 years and counting...
@bigdataspecialist
❤15👍2🤩1
How to Perfom Large-Scale Image Classification
🏃♂ Self-paced
⏰ 54 minutes
Instructor👨🏫: NVIDIA Developer
🔗 Course Link
#imageclassification #computervision
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
🏃♂ Self-paced
⏰ 54 minutes
Instructor👨🏫: NVIDIA Developer
🔗 Course Link
#imageclassification #computervision
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
Class Central
Free Video: How to Perform Large-Scale Image Classification from Nvidia | Class Central
Learn how Kaggle Grandmasters built large-scale image classification models for landmark recognition, overcoming challenges of 81,000+ classes. Discover winning strategies, architectures, and techniques for efficient modeling and competition success.
❤3👍1🔥1
Hello Everyone,
I’m flying to Lisbon tomorrow morning on a business trip ✈️.
If any of you are around and would like to meet up, feel free to send me a message, would love to connect! 😊
I’m flying to Lisbon tomorrow morning on a business trip ✈️.
If any of you are around and would like to meet up, feel free to send me a message, would love to connect! 😊
👍4❤2
This media is not supported in your browser
VIEW IN TELEGRAM
❤23🔥4👍3🥰1
SQL/MySQL Learning Series: Day 1️⃣1️⃣
🔹 UPDATE – Modifying Existing Data
🧠 Once you've inserted data, real-world needs often change.
Need to correct a typo or give someone a raise? That’s where
---
📌 Syntax:
Always include
---
📌 Example:
Alice got a raise! Let’s update her salary:
Updated result:
---
🚨 Warning: Without a
Double-check before running your query.
Next: We’ll learn how to remove data with
#SQL #MySQL #SqlLearningSeries
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
🔹 UPDATE – Modifying Existing Data
🧠 Once you've inserted data, real-world needs often change.
Need to correct a typo or give someone a raise? That’s where
UPDATE
comes in!---
📌 Syntax:
UPDATE table_name
SET column1 = value1, column2 = value2
WHERE condition;
Always include
WHERE
to avoid updating *all* rows by accident!---
📌 Example:
Alice got a raise! Let’s update her salary:
UPDATE employees
SET salary = 75000.00
WHERE name = 'Alice';
Updated result:
+----+---------+------------+----------+------------+
| id | name | department | salary | hire_date |
+----+---------+------------+----------+------------+
| 1 | Alice | IT | 75000.00 | 2022-03-01 |
| 2 | Bob | HR | 55000.00 | 2021-11-15 |
| 3 | Charlie | Finance | 60000.00 | 2023-01-10 |
| 4 | Diana | IT | 80000.00 | 2020-08-22 |
+----+---------+------------+----------+------------+
---
🚨 Warning: Without a
WHERE
clause, all rows will be updated!Double-check before running your query.
Next: We’ll learn how to remove data with
DELETE
.#SQL #MySQL #SqlLearningSeries
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
SQL/MySQL Learning Series: Day 1️⃣2️⃣
🔹 DELETE – Removing Data
🗑 Sometimes, data needs to go – whether it’s outdated, incorrect, or no longer needed.
That’s where
---
📌 Syntax:
Just like with
---
📌 Example:
Let’s remove Bob from the
Result:
---
💣 Want to delete *everything* from a table?
Or faster (but irreversible):
Use with caution! ⚠️
#SQL #MySQL #SqlLearningSeries
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
🔹 DELETE – Removing Data
🗑 Sometimes, data needs to go – whether it’s outdated, incorrect, or no longer needed.
That’s where
DELETE
steps in.---
📌 Syntax:
DELETE FROM table_name
WHERE condition;
Just like with
UPDATE
, never forget the `WHERE` clause unless you *want* to delete everything!---
📌 Example:
Let’s remove Bob from the
employees
table:DELETE FROM employees
WHERE name = 'Bob';
Result:
+----+---------+------------+----------+------------+
| id | name | department | salary | hire_date |
+----+---------+------------+----------+------------+
| 1 | Alice | IT | 75000.00 | 2022-03-01 |
| 3 | Charlie | Finance | 60000.00 | 2023-01-10 |
| 4 | Diana | IT | 80000.00 | 2020-08-22 |
+----+---------+------------+----------+------------+
---
💣 Want to delete *everything* from a table?
DELETE FROM employees;
Or faster (but irreversible):
TRUNCATE TABLE employees;
Use with caution! ⚠️
#SQL #MySQL #SqlLearningSeries
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
❤5🎉1
Yesterday was Linux's birthday. Can you guess how old is Linux now?
Anonymous Quiz
10%
17
26%
28
32%
34
33%
40
👍2🤔1
Machine Learning with Python: from Linear Models to Deep Learning
🏃♂️ Instructor-paced
⏰ 15 weeks - 10-14 hours per week
Instructors👨🏫: Regina Barzilay and Tommi Jaakkola
🔗 Course Link
#machinelearning #python
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
🏃♂️ Instructor-paced
⏰ 15 weeks - 10-14 hours per week
Instructors👨🏫: Regina Barzilay and Tommi Jaakkola
🔗 Course Link
#machinelearning #python
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
👉Join @bigdataspecialist for more👈
edX
MITx: Machine Learning with Python: from Linear Models to Deep Learning. | edX
An in-depth introduction to the field of machine learning, from linear models to deep learning and reinforcement learning, through hands-on Python projects. -- Part of the MITx MicroMasters program in Statistics and Data Science.
❤3
🚀 Give Name To Our Platform! 🚀
Hey friends! 👋
Remember the platform I mentioned earlier – the one that we are building and that will share free courses, books, coupons, APIs and more for programmers? Well, it’s almost ready… but it still needs a name! 🌐✨
Name needs to be short and catchy. Drop your best ideas in the comments. The winning entry will not only get a Amazon/Google/Flipkart gift card or a paid course of your choice, but will also have the bragging rights of saying:
💡🔥
Let’s see your creativity! 🙌
PS. to check if that domain name is taken you can use namecheap
Love from @bigdataspecialist ❤️
Hey friends! 👋
Remember the platform I mentioned earlier – the one that we are building and that will share free courses, books, coupons, APIs and more for programmers? Well, it’s almost ready… but it still needs a name! 🌐✨
Name needs to be short and catchy. Drop your best ideas in the comments. The winning entry will not only get a Amazon/Google/Flipkart gift card or a paid course of your choice, but will also have the bragging rights of saying:
I named that platform!
💡🔥
Let’s see your creativity! 🙌
PS. to check if that domain name is taken you can use namecheap
Love from @bigdataspecialist ❤️
❤5
Forwarded from Cool GitHub repositories
FreeDomain
DigitalPlat FreeDomain is a nonprofit initiative that provides free domain names under several non-standard TLDs for everyone. You can register a domain through their dashboard and manage it using your preferred DNS provider—like Cloudflare, FreeDNS, or Hostry.
Creator: DigitalPlatDev
Stars ⭐️: 89,000
Forked by: 2,000
Github Repo:
https://github.com/DigitalPlatDev/FreeDomain
#freedomain
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories. This channel belongs to @bigdataspecialist group
DigitalPlat FreeDomain is a nonprofit initiative that provides free domain names under several non-standard TLDs for everyone. You can register a domain through their dashboard and manage it using your preferred DNS provider—like Cloudflare, FreeDNS, or Hostry.
Creator: DigitalPlatDev
Stars ⭐️: 89,000
Forked by: 2,000
Github Repo:
https://github.com/DigitalPlatDev/FreeDomain
#freedomain
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories. This channel belongs to @bigdataspecialist group
GitHub
GitHub - DigitalPlatDev/FreeDomain: DigitalPlat FreeDomain: Free Domain For Everyone
DigitalPlat FreeDomain: Free Domain For Everyone. Contribute to DigitalPlatDev/FreeDomain development by creating an account on GitHub.
❤5
Cool GitHub repositories
FreeDomain DigitalPlat FreeDomain is a nonprofit initiative that provides free domain names under several non-standard TLDs for everyone. You can register a domain through their dashboard and manage it using your preferred DNS provider—like Cloudflare, FreeDNS…
Maybe some of you will find it interesting that it's possible to get 100% free domain ☝️
Still, domain extensions are not so attractive 🤷♂️
Still, domain extensions are not so attractive 🤷♂️
❤6