Criar Solutions

2.6K posts

Criar Solutions

Criar Solutions

@criarsolutions

In ❤ With 0's and 1's!

11.0596,76.942774 Katılım Nisan 2012
463 Takip Edilen326 Takipçiler
Criar Solutions retweetledi
Adham Dannaway
Adham Dannaway@AdhamDannaway·
Color palette inspiration 🔴 🟠 🟡 🟢 🔵 🟣 Curated color palette ideas displayed in an example website. Have a play 👇 happyhues.co
English
27
222
2.4K
116.7K
Criar Solutions retweetledi
Akshay 🚀
Akshay 🚀@akshay_pachaar·
Traditional RAG vs. Graph RAG, clearly explained:
GIF
English
27
144
799
43.3K
Criar Solutions retweetledi
Firebase
Firebase@Firebase·
Meet Firebase Studio: A cloud-based, agentic dev environment powered by Gemini ✨💻✨ Find everything you need to prototype, build, and run production-quality full-stack AI apps quickly and safely. Learn more about building AI apps with Firebase → goo.gle/4j3MS9v #GoogleCloudNext
English
154
782
4.9K
800.3K
Criar Solutions retweetledi
Ahmad Al-Dahle
Ahmad Al-Dahle@Ahmad_Al_Dahle·
Introducing our first set of Llama 4 models! We’ve been hard at work doing a complete re-design of the Llama series. I’m so excited to share it with the world today and mark another major milestone for the Llama herd as we release the *first* open source models in the Llama 4 collection 🦙. Here are some highlights: 📌 The Llama series have been re-designed to use state of the art mixture-of-experts (MoE) architecture and natively trained with multimodality. We’re dropping Llama 4 Scout & Llama 4 Maverick, and previewing Llama 4 Behemoth. 📌 Llama 4 Scout is highest performing small model with 17B activated parameters with 16 experts. It’s crazy fast, natively multimodal, and very smart. It achieves an industry leading 10M+ token context window and can also run on a single GPU! 📌 Llama 4 Maverick is the best multimodal model in its class, beating GPT-4o and Gemini 2.0 Flash across a broad range of widely reported benchmarks, while achieving comparable results to the new DeepSeek v3 on reasoning and coding – at less than half the active parameters. It offers a best-in-class performance to cost ratio with an experimental chat version scoring ELO of 1417 on LMArena. It can also run on a single host! 📌 Previewing Llama 4 Behemoth, our most powerful model yet and among the world’s smartest LLMs. Llama 4 Behemoth outperforms GPT4.5, Claude Sonnet 3.7, and Gemini 2.0 Pro on several STEM benchmarks. Llama 4 Behemoth is still training, and we’re excited to share more details about it even while it’s still in flight. A big thanks to all of our launch partners (full list in blog) for helping us bring Llama 4 to developers everywhere including @huggingface, @togethercompute, @SnowflakeDB, @ollama, @databricks and many others👏 This is just the start, we have more models coming and the team is really cooking – look out for Llama 4 Reasoning 😉 A few weeks ago, we celebrated Llama being downloaded over 1 billion times. Llama 4 demonstrates our long-term commitment to open source AI, the entire open source AI community, and our unwavering belief that open systems will produce the best small, mid-size and soon frontier models. Llama would be nothing without the global open source AI community & we are so ready to begin this next chapter with you. 🦙 Read more about the release here: llama.com, and try it in our products today.
Ahmad Al-Dahle tweet media
English
316
895
5.6K
1.1M
Criar Solutions retweetledi
VV
VV@visualizevalue·
Adapt or die.
VV tweet media
Indonesia
9
37
324
30.5K
Criar Solutions retweetledi
Interesting STEM
Interesting STEM@InterestingSTEM·
The beauty of Engineering
English
23
724
3.5K
245.3K
Criar Solutions retweetledi
Cognition
Cognition@cognition·
Today we're excited to introduce Devin, the first AI software engineer. Devin is the new state-of-the-art on the SWE-Bench coding benchmark, has successfully passed practical engineering interviews from leading AI companies, and has even completed real jobs on Upwork. Devin is an autonomous agent that solves engineering tasks through the use of its own shell, code editor, and web browser. When evaluated on the SWE-Bench benchmark, which asks an AI to resolve GitHub issues found in real-world open-source projects, Devin correctly resolves 13.86% of the issues unassisted, far exceeding the previous state-of-the-art model performance of 1.96% unassisted and 4.80% assisted. Check out what Devin can do in the thread below.
English
4.3K
9.7K
42.8K
31.4M
Criar Solutions retweetledi
Bytebytego
Bytebytego@bytebytego·
What happens when you type a URL into a browser? Let’s look at the process step by step. Step 1: The user enters a URL (bytebytego .com) into the browser and hits Enter. The first thing we need to do is to translate the URL to an IP address. The mapping is usually stored in a cache, so the browser looks for the IP address in multiple layers of cache: the browser cache, OS cache, local cache, and ISP cache. If the browser couldn’t find the mapping in the cache, it will ask the DNS (Domain Name System) resolver to resolve it. Step 2: If the IP address cannot be found at any of the caches, the browser goes to DNS servers to do a recursive DNS lookup until the IP address is found. Step 3: Now that we have the IP address of the server, the browser sends an HTTP request to the server. For secure access of server resources, we should always use HTTPS. It first establishes a TCP connection with the server via TCP 3-way handshake. Then it sends the public key to the client. The client uses the public key to encrypt the session key and sends to the server. The server uses the private key to decrypt the session key. The client and server can now exchange encrypted data using the session key. Step 4: The server processes the request and sends back the response. For a successful response, the status code is 200. There are 3 parts in the response: HTML, CSS and Javascript. The browser parses HTML and generates DOM tree. It also parses CSS and generates CSSOM tree. It then combines DOM tree and CSSOM tree to render tree. The browser renders the content and display to the user. – Subscribe to our weekly newsletter to get a Free System Design PDF (158 pages): bit.ly/3KCnWXq
English
11
205
826
124.1K
Criar Solutions retweetledi
Alex Xu
Alex Xu@alexxubyte·
Docker 101: Streamlining App Deployment. The method to download the high-resolution PDF is available at the end. Fed up with the "it works on my machine" dilemma? Docker could be your salvation! Docker revolutionizes software development and deployment. Explore the essentials: 1. Bundle Everything: Docker packs your app and its dependencies into a portable container – code, runtime, tools, libraries, and settings – a tidy, self-contained package. 2. Virtual Isolation: Containers offer packaging and isolation. Run diverse apps with different settings on a single host without conflicts, thanks to Linux namespaces and cgroups. 3. Not VMs: Unlike resource-heavy VMs, Docker containers share the host OS kernel, delivering speed and efficiency. No VM overhead, just rapid starts and easy management. ⚡ 4. Windows Compatibility: Docker, rooted in Linux, works on Windows too. Docker Desktop for Windows uses a Linux-based VM, enabling containerization for Windows apps. – Subscribe to our newsletter to download the 𝐡𝐢𝐠𝐡-𝐫𝐞𝐬𝐨𝐥𝐮𝐭𝐢𝐨𝐧 𝐏𝐃𝐅. After signing up, find the download link on the success page: bit.ly/bytebytegodock…
Alex Xu tweet media
English
21
519
2.4K
394.5K
Criar Solutions retweetledi
GitHub Projects Community
GitHub Projects Community@GithubProjects·
Are you a "DevOps" master or beginning, no matter what, check these 7 GitHub repositories for Better DevOps. 1. 𝗞𝘂𝗯𝗲𝗿𝗻𝗲𝘁𝗲𝘀 𝗧𝗵𝗲 𝗛𝗮𝗿𝗱 𝗪𝗮𝘆 A step-by-step guide for setting up Kubernetes clusters from scratch to gain a deep understanding of Kubernetes internals. 🔗 github.com/kelseyhightowe… 2. 𝗗𝗶𝘃𝗲 Dive is a tool for exploring Docker image layers, helping DevOps analyze image contents for optimization. 🔗 github.com/wagoodman/dive 3. 𝗮𝘄𝗲𝘀𝗼𝗺𝗲-𝗽𝗿𝗼𝗺𝗲𝘁𝗵𝗲𝘂𝘀 A curated list of resources, tools, and integrations for Prometheus, a popular monitoring and alerting toolkit used in DevOps. 🔗 github.com/roaldnefs/awes… 4. 𝗚𝗼𝗥𝗲𝗹𝗲𝗮𝘀𝗲𝗿 Simplifies Go application releases by automating build, release, and packaging tasks. 🔗 github.com/goreleaser/gor… 5. 𝗗𝗲𝘃𝗢𝗽𝘀 𝗘𝘅𝗲𝗿𝗰𝗶𝘀𝗲𝘀 Provides a collection of exercises and challenges related to various DevOps topics for skill practice. 🔗 github.com/bregman-arie/d… 6. 𝗠𝗼𝗹𝗲𝗰𝘂𝗹𝗲 A framework for testing infrastructure code using Ansible, aiding in role and playbook development and validation. 🔗 github.com/ansible/molecu… 7. 𝗦𝗢𝗣𝗦 SOPS (Secrets Operator for Kubernetes) simplifies the management of encrypted secrets within Kubernetes for enhanced security. 🔗 github.com/mozilla/sops ------------------------------------- [ 𝘗𝘰𝘴𝘵 𝘚𝘱𝘰𝘯𝘴𝘰𝘳𝘦𝘥 𝘉𝘺 ❤️ 𝘐𝘯𝘧𝘪𝘯𝘪𝘵𝘺 𝘞𝘢𝘭𝘭𝘴 𝘗𝘳𝘰: play.google.com/store/apps/det… ]
English
9
196
666
115.7K
Criar Solutions retweetledi
OpenAI
OpenAI@OpenAI·
DALL·E 3🤝ChatGPT
CY
502
3.8K
24.2K
3.4M
Criar Solutions retweetledi
Google Analytics
Google Analytics@googleanalytics·
We’ve created a collection of GA4 resources dedicated to beginners and small business. Learn how to understand GA4 fundamentals, from setting up an account to interpreting data! ➡️ goo.gle/3LhbooL
Google Analytics tweet media
English
6
53
160
27.7K
Criar Solutions retweetledi
Alex Xu
Alex Xu@alexxubyte·
OAuth 2.0 Explained With Simple Terms. OAuth 2.0 is a powerful and secure framework that allows different applications to securely interact with each other on behalf of users without sharing sensitive credentials. The entities involved in OAuth are the User, the Server, and the Identity Provider (IDP). What Can an OAuth Token Do? When you use OAuth, you get an OAuth token that represents your identity and permissions. This token can do a few important things: Single Sign-On (SSO): With an OAuth token, you can log into multiple services or apps using just one login, making life easier and safer. Authorization Across Systems: The OAuth token allows you to share your authorization or access rights across various systems, so you don't have to log in separately everywhere. Accessing User Profile: Apps with an OAuth token can access certain parts of your user profile that you allow, but they won't see everything. Remember, OAuth 2.0 is all about keeping you and your data safe while making your online experiences seamless and hassle-free across different applications and services. Over to you: Imagine you have a magical power to grant one wish to OAuth 2.0. What would that be? Maybe your suggestions actually lead to OAuth 3. – Subscribe to our weekly newsletter to get a Free System Design PDF (158 pages): bit.ly/42Ex9oZ
Alex Xu tweet media
English
38
1.3K
5K
458.9K
Criar Solutions retweetledi
Bytebytego
Bytebytego@bytebytego·
What are the data structures used in daily life? 🔹 list: keep your Twitter feeds 🔹 stack: support undo/redo of the word editor 🔹 queue: keep printer jobs, or send user actions in-game 🔹 heap: task scheduling 🔹 tree: keep the HTML document, or for AI decision 🔹 suffix tree: for searching string in a document 🔹 graph: for tracking friendship, or path finding 🔹 r-tree: for finding the nearest neighbor 🔹 vertex buffer: for sending data to GPU for rendering To conclude, data structures play an important role in our daily lives, both in our technology and in our experiences. Engineers should be aware of these data structures and their use cases to create effective and efficient solutions. Over to you: Which additional data structures have we overlooked? – Subscribe to our weekly newsletter to get a Free System Design PDF (158 pages): bit.ly/42Ex9oZ
Bytebytego tweet media
English
15
357
1.4K
155.1K