Techኢት – Telegram
Techኢት
4.51K subscribers
1.36K photos
225 videos
11 files
915 links
Welcome to Techኢት Channel! Your tech news hub. Explore daily tech news and don't miss our weekly audio podcast.
Join: https://news.1rj.ru/str/Techet_Discussion_Group
Youttube: https://www.youtube.com/@Techinethio

Contact Us: @muhammednoorrr @icon_dura
Download Telegram
Media is too big
VIEW IN TELEGRAM
Dr. Dereje Teferi, Head of the School of Information Science(AAU), raised several key points in our Techኢት podcast S01 E01:

👉"Information systems emphasize the organizational perspective."
👉"Organizations cannot survive without information technology/systems."
👉"Banks are beginning to recognize the importance of involving IT professionals in management positions."

You can listen to the full episode here.

@TechInEthio
👍5
If you're a developer, here are a few things you should consider doing for your own benefit:
📚 Read docs
📃 Comment your code
🧑‍🏫 Teach others
👥 Engage in communities
🤖 Use AI tools
💪 Learn daily
🏖 Take small breaks
✍️ Jot notes
🧪 TDD
#Developer #recommendation

@TechInEthio
💯8
This media is not supported in your browser
VIEW IN TELEGRAM
Financial Times debuts Ask FT, an AI chatbot for subscribers. Trained on decades of FT articles, it offers curated answers on various topics. Available to FT Professional tier subscribers, it provides responses with citations from FT articles.

#AI #AInews

@TechInEthio
👍2
9👍1😁1
What is SQL Injection?
SQL Injection (SQLi) is a type of web application security vulnerability that allows an attacker to execute malicious SQL statements within a web application’s database. It occurs when an attacker inserts malicious code into a web application’s input fields, such as search forms, login pages, or contact forms. SQL injection is a serious threat to web applications as it can result in the theft of sensitive information, unauthorized access to data, and even complete system compromise. Read More.
#Database #Security #SQL

@TechInEthio
4
Cybercrime has the world's third largest economy

Cybercrime has emerged as the dark underbelly of the digital era, growing at an alarming rate and now standing as the third largest economy in the world.

@techinethio #cybervault
read more
4🤯4
NVIDIA just dropped free online courses on Artificial Intelligence. Here are the 9 courses:
1. Generative AI explained
2. Building a Brain in 10 minutes
3. Augment your LLM with retrieval Augmented generation.
4. AI in the Data Center
5. Accelerate Data Science workflows with zero code challenges
6. Mastering Recommended Systems
7. Networking Introduction
8. How to perform Large-scale image Classification
9. Building rag agents with LLM's
Click here to check them out
@TechInEthio
6
Apple created a YouTube Channel dedicated to developer content🔥
* https://www.youtube.com/@AppleDeveloper
🥶
leetcode guide  🌟🌟                                                                                                    
Pick a language. ...
Build a strong foundation. ...
Topics you need to learn to before
you start solving Leetcode. ...
Topics you need to be familiar with in order to make the most of LeetCode: ...
Start with “Problems” ...
Start fixing the problem at a high-level. ...
Don't try to solve random questions.   

@techinethio

https://www.linkedin.com/pulse/leetcode-guide-students-junaid-khan
🔥53
Introducing Google's Personalized Shopping Update! 🛍️
This update delivers innovation with 5 key features

🔍 Product recommendations 🌟
💰 Price tracking 💸
📍 Local shopping options
📱 Smarter home screen
💲 Price comparison capabilities
#technews #nightbite
🤯5🤔1
0326(1)
<unknown>
Techኢት Podast episode S1E7
With Samrawit Dawit🎧
YouTube link:https://www.youtube.com/watch?v=88bENK06E2c
🔥4
This media is not supported in your browser
VIEW IN TELEGRAM
Here is a short video how to study programing languages from the one and the only ThePrimeagen
🔥5👍1
Hey everyone, did you know that Fireship's system has a security problem? Well, I've got something for you. You can access Fireship.io's pro course for free. go to fireship.io, log out, open your developer tools , paste this code in the console, and boom, you've got access to the courses
🔥1
Techኢት
Hey everyone, did you know that Fireship's system has a security problem? Well, I've got something for you. You can access Fireship.io's pro course for free. go to fireship.io, log out, open your developer tools , paste this code in the console, and boom…
setInterval(() => {
document.querySelectorAll("[free=\"\"]").forEach(el => el.setAttribute("free", true)) // set all elements with the attribute free set to "" to true

if (document.querySelector("if-access [slot=\"granted\"]")) { // replace HOW TO ENROLL to YOU HAVE ACCESS
document.querySelector("if-access [slot=\"denied\"]").remove()
document.querySelector("if-access [slot=\"granted\"]").setAttribute("slot", "denied")
}

if (document.querySelector("video-player")?.shadowRoot?.querySelector(".vid")?.innerHTML) return; // return if no video player
const vimeoId = document.querySelector("global-data").vimeo; // get id for vimeo video
const youtubeId = document.querySelector("global-data").youtube; // get id for vimeo video

if (vimeoId) { // if there is an id,
document.querySelector("video-player").setAttribute("free", true) // set free to true
document.querySelector("video-player").shadowRoot.querySelector(".vid").innerHTML = <iframe src="https://player.vimeo.com/video/${vimeoId}" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen="" noscript="${location.pathname.split("/")[3]}" width="426" height="240" frameborder="0"></iframe> // set video
}
if (youtubeId) { // if there is an id,
document.querySelector("video-player").setAttribute("free", true) // set free to true
document.querySelector("video-player").shadowRoot.querySelector(".vid").innerHTML = <iframe src="https://youtube.com/embed/${youtubeId}" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen="" noscript="${location.pathname.split("/")[3]}" width="426" height="240" frameborder="0"></iframe> // set video
}
}, 100)