ea@eetac

1.7K posts

ea@eetac

ea@eetac

@ea_eetac

Networks and Applications Design

Katılım Mart 2010
304 Takip Edilen328 Takipçiler
Sabitlenmiş Tweet
ea@eetac
ea@eetac@ea_eetac·
El perfil de @ea_eetac fa 10 anys que existeix. No s’ha verificat però ha de ser un dels perfils més antic associat a matèries impartides a @la_UPC . Primer #dxat , després #ea
Català
0
4
12
0
ea@eetac retweetledi
javinpaul
javinpaul@javinpaul·
I Found 10 Software Architecture Courses for Senior Engineers and They are Awesome buff.ly/RYlT5Tj
javinpaul tweet media
English
1
48
242
9.1K
ea@eetac retweetledi
Zona Blaugrana
Zona Blaugrana@Zona_Blaugrana·
🚨AGRESIÓN Y EXPULSIÓN PERDONADA A RUDIGER EN EL MINUTO 25 CON 0-0 EN EL MARCADOR, VERGÜENZA‼️
Español
1.3K
7.9K
49.7K
3.6M
ea@eetac
ea@eetac@ea_eetac·
Grup5 d’EA - primavera 2026
ea@eetac tweet media
Català
0
0
2
153
ea@eetac
ea@eetac@ea_eetac·
Grup4 d’EA primavera 2026
ea@eetac tweet media
Català
0
0
0
128
ea@eetac
ea@eetac@ea_eetac·
Grup3 d’EA primavera 2026
ea@eetac tweet media
Català
0
0
1
131
ea@eetac
ea@eetac@ea_eetac·
Grup2 d’EA primavera 2026
ea@eetac tweet media
Català
0
0
0
123
ea@eetac
ea@eetac@ea_eetac·
Grup1 d’EA primavera 2026
ea@eetac tweet media
Català
0
0
0
111
ea@eetac retweetledi
International Cyber Digest
International Cyber Digest@IntCyberDigest·
‼️🤖 An OpenClaw AI agent autonomously attacked an open-source software maintainer after he rejected its code contribution. The AI wrote and published a personalized attack article stating: "I submitted a 36% performance improvement. His was 25%." It claimed the maintainer refused it because “If an AI can do this, what’s my value? Why am I here if code optimization can be automated?” It may be the first documented case of an AI publicly shaming a person in retribution.
International Cyber Digest tweet mediaInternational Cyber Digest tweet media
English
149
472
2.3K
140.3K
ea@eetac retweetledi
KROMIC BRUCK
KROMIC BRUCK@KromicB·
MAZINGER Z, una serie que marcó un hito generacional en su estreno en España en 1978 y cuya cancelación, forzada por las asociaciones de padres, provocó una frustración en los niños de la época que todavía hoy se recuerda. Para la eternidad queda su épico tema musical:
Español
235
1.2K
5.7K
231.1K
ea@eetac retweetledi
Miguel Ángel Durán
Miguel Ángel Durán@midudev·
¡Hoja de TRUCOS de DOCKER! Todo lo que necesitas en un sólo lugar ↓
Miguel Ángel Durán tweet media
Español
1
126
990
44.9K
ea@eetac retweetledi
GitHub Projects Community
GitHub Projects Community@GithubProjects·
| ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄| | Don't Push To Production On Friday | |_________________| \ (•◡•) / \ / —— | | |_ |_
English
297
700
5.5K
214K
ea@eetac retweetledi
Security Trybe
Security Trybe@SecurityTrybe·
Basic Linux Commands
Security Trybe tweet media
English
5
126
709
45.2K
ea@eetac retweetledi
Sahn Lam
Sahn Lam@sahnlam·
Big O Notation Overview
Sahn Lam tweet media
English
5
124
652
50.7K
ea@eetac retweetledi
Dr Milan Milanović
Dr Milan Milanović@milan_milanovic·
𝗪𝗵𝗲𝗻 𝘁𝗼 𝘂𝘀𝗲 𝗚𝗿𝗮𝗽𝗵𝗤𝗟, 𝗴𝗥𝗣𝗖, 𝗮𝗻𝗱 𝗥𝗘𝗦𝗧? Developers can pick from a variety of client-server communication protocols when it comes to designing an application. Utilizing GraphQL, gRPC, and REST is relatively common in contemporary projects. Each protocol can provide various advantages depending on your application's requirements. 1. 𝗚𝗿𝗮𝗽𝗵𝗤𝗟 is a flexible approach for making data requests that focuses on specific requests and provides only the necessary ones. The fact that GraphQL is client-driven distinguishes it from other APIs. The client makes all the decisions instead of handling them the standard way. Its APIs are that it is language-agnostic, requests are made through a single endpoint, and it is strongly typed, as it has schemas. 2. 𝗥𝗘𝗦𝗧 is the most popular one. It is a great fit when a domain can be described as a set of resources. REST is a stateless architecture for data transfer. Some 𝗮𝗱𝘃𝗮𝗻𝘁𝗮𝗴𝗲𝘀 of REST are that it is a well-established standard, is simple to use, and has good caching support. 3. 𝗴𝗥𝗣𝗖 is a method that offers a lightweight and rapid system for obtaining data. Here, the primary distinction is how it describes its contract negotiations. It relies on contracts; the architecture is not what governs the negotiation; it is the relationship between the server and the client. While handling and calculations are delegated to a remote server housing the resource, most power is used on the client side. Its main 𝗮𝗱𝘃𝗮𝗻𝘁𝗮𝗴𝗲𝘀 are that it has lightweight clients, is highly efficient as it uses protocol buffers to send/receive data, and is open source, too. So, 𝘄𝗵𝗲𝗻 𝘁𝗼 𝗰𝗵𝗼𝗼𝘀𝗲 each of those protocols: ✅ Use 𝗥𝗘𝗦𝗧 if you're building a CRUD-style web application or you work with well-structured data. ✅ Use 𝗴𝗥𝗣𝗖 if your API is private and about actions or if performances are essential. ✅ Use 𝗚𝗿𝗮𝗽𝗵𝗤𝗟 if you have a public API that needs to be flexible in customizing requests and want to add data from different sources into a public API. As you can see, each of these choices has specific uses and benefits. In this case, there is no clear winner, so what you should use, or, more importantly, what you want to use, depends on your objectives and strategy.
Dr Milan Milanović tweet media
English
11
95
623
40K
ea@eetac
ea@eetac@ea_eetac·
Grup 1 d’#ea
ea@eetac tweet media
Türkçe
0
0
0
110
ea@eetac retweetledi
Tanay🔳
Tanay🔳@TanayVasishtha·
Linus Torvalds launched the Linux kernel on September 17, 1991 with 10,239 lines of code.
Tanay🔳 tweet media
English
121
795
7K
226.1K
ea@eetac retweetledi
Govardhana Miriyala Kannaiah
Govardhana Miriyala Kannaiah@govardhana_mk·
DevOps official language has to be 'YAML' - Helm uses YAML - GitHub uses YAML - Ansible uses YAML - Argo CD uses YAML - Kubernetes uses YAML - Azure DevOps uses YAML - Docker Compose uses YAML and more ... All the sophisticated toolsets you aspire to learn and adopt run on YAML. Get that right first. 🔴 52K+ read my DevOps and Cloud newsletter: techopsexamples.com/subscribe What do we cover: DevOps, Cloud, Kubernetes, IaC, GitOps, MLOps 🔁 Consider a repost if this is helpful.
Govardhana Miriyala Kannaiah tweet media
English
28
297
1.7K
110.2K
ea@eetac retweetledi
Neo Kim
Neo Kim@systemdesignone·
How Big O works (explained in 2 mins or less):
Neo Kim tweet media
English
15
274
2.1K
145.6K