Information Technology Broadcasting - اطلاع‌رسانی فناوری اطلاعات
408 subscribers
13.9K photos
41 videos
505 files
489 links
Information Technology, Cloud computing, Digital transformation, IoT, Edge computing, IT governance, Fog computing, IT security, IT regulation, IT trends, Programming، Big data, Monitoring, Databases, Api, Service
Download Telegram
Forwarded from Hadi
5. Empowered edge

Storage, computing and advanced AI and analytics capabilities will expand capabilities of edge devices through 2028, reveals Gartner.
Forwarded from Hadi
6. Immersive experience

Number six on Gartner's strategic technology trends list is the immersive experience. Burke stated that 70% of enterprises will be experimenting with immersive technologies for consumer and enterprise use by 2022. However, only 25% will have been deployed to production.
Forwarded from Hadi
7. Blockchain

According to Gartner, blockchain will create $3.1 trillion in business value by 2030.
Forwarded from Hadi
8. Privacy and ethics

By 2021, organisations that bought compliance risk and are caught lacking in privacy protection will pay 100% more in compliance costs than best-practice-adhering competitors.
Forwarded from Hadi
9. Smart spaces

Gartner defines smart spaces as physical or digital environments populated by humans and enabled by technology, which are increasingly connected, intelligent and autonomous.
Forwarded from Hadi
10. Quantum computing

Burke told the audience that by 2023, Gartner predicts 20% of organisations will be budgeting for quantum computing projects compared to less than 1% today
Forwarded from Hadi
Word of the day...

Identity and Access Management (IAM)
👇👇👇
Identity and access management (IAM) is the security discipline that enables the right individuals to access the right resources at the right times for the right reasons. IAM addresses the mission-critical need to ensure appropriate access to resources across increasingly heterogeneous technology environments, and to meet increasingly rigorous compliance requirements. This security practice is a crucial undertaking for any enterprise. It is incr…

IAM as a Service (IAMaaS)

Identity and access management (IAM) as a service (IAMaaS) refers to software as a service (SaaS) forms of IAMthat require minimal or no enterprise on-premises presence of hardware or software…
Forwarded from Hadi
Word of the day...

Zero-Latency Enterprise (ZLE)
👇👇👇
Zero-latency enterprise (ZLE) is any strategy that exploits the immediate exchange of information across technical and organizational boundaries to achieve business benefit. For example, technical boundaries exist between different operating systems, database management systems and programming languages. “Immediate” implies being fast enough to bring all of the business benefits that simultaneous knowledge can potentially achieve. Latency cannot literally be zero in any real system because computers need time to “think.”
Forwarded from Hadi
Word of the day...

Hadoop
👇👇👇
Hadoop is an open-source software framework that supports the processing and storage of extremely large data sets in a distributed computing environment. All the modules in Hadoop are designed with a fundamental assumption that hardware failures are a common occurrence and should be automatically handled by the framework.  It is part of the Apache project sponsored by the Apache Software Foundation.
Forwarded from Hadi
Word of the day...

Real-Time Analytics
👇👇👇
Real-time analytics is the discipline that applies logic and mathematics to data to provide insights for making better decisions quickly. For some use cases, real time simply means the analytics is completed within a few seconds or minutes after the arrival of new data. On-demand real-time analytics waits for users or systems to request a query and then delivers the analytic results. Continuous real-time analytics is more proactive and alerts users or triggers responses as events happen.
Forwarded from Hadi
10 Linux Shortcuts You Can't Live Without

Written by Mark Sanborn: Sep 21, 2007

1. Tab

The most handy shortcut and time saver for the linux command line. This actually makes navigating directories faster in the CLI than the traditional GUI browser. Simply start typing the command, filename, or directory and hit tab. Bash will automatically complete what you are typing. It even works at the lilo prompt and in some X applications.

2. Ctrl + c

Stop that program dead in its tracks. This is the command line version of end task.

3. Ctrl + z

Send the current process to background. This is useful if you have a program running, and you need the terminal for awhile but don’t want to exit the program completely.

Type the command fg to get the process back.

4. Ctrl + d

Log out from the current terminal. If you use this in an X terminal emulator such as xterm it will usually close it after logging out.

5. Ctrl + u

Erase the current line. I use this one all the time when I type the wrong command in.

6. Ctrl + Alt + F1, (F1-F6)

Switch to the first virtual terminal. In Linux, you can have several virtual terminals at the same time. The default is 6. (Ctrl + Alt + F7 to get back to X)

7. Ctrl + l (lowercase L)

Clear the terminal.

8. Ctrl + Alt + Backspace

Kill the X server. Use this if X crashes and you can’t exit it normally. If you’ve configured GDM to start automatically at bootup, this restarts the server and throws you back to the graphical login screen.

9. Ctrl + a

Move the cursor to the beginning of the current line. Usefull for those times you navigated all the way through 20 directories and forgot to add ‘cp’ to the beginning. Use this instead of the arrow keys.

10. Ctrl + e

Last but not least get that cursor back to the end of the line