@MarioNawfal Motherfuckers! Many of us hurt by this shit… i am am engineer myself and fucking us companies hired 4 engineers in India with the money I was making in the US….
🧠⚡MCU vs. MPU — quick guide:
MCU = integrated, real-time, low power
MPU = high performance, needs external components
Pick the right brain for your build.
#embedded#electronics#pcbway
⚠️ FortiOS, FortiWeb, and FortiProxy Vulnerability Lets Attackers Bypass SSO Authentication
Source: https://t.co/FFgEIXUDIF
Fortinet has issued an urgent security advisory regarding a critical vulnerability affecting its FortiOS, FortiWeb, FortiProxy, and FortiSwitchManager product lines.
The security flaw, identified as an Improper Verification of Cryptographic Signature (CWE-347), could allow an unauthenticated attacker to bypass the FortiCloud Single Sign-On (SSO) login authentication.
The vulnerability stems from the device’s failure to verify signatures within SAML messages properly. If exploited, a threat actor could craft a specific SAML message to gain unauthorized administrative access to the device.
#cybersecuritynews #fortinet
Come join our Power Electronics team to help design & manufacture components – from semiconductors to Cybertruck & Megapack
We're based in California & Germany, with open roles in Mechanical, Electrical, Electromagnetic & Electronics Control Engineering
https://t.co/D90h19NrzY
El Departamento de Estado desea conocer la experiencia de los estadounidenses residentes en la República Dominicana con el Programa de Registro de Viajero Inteligente (STEP). Para participar, solo debe escanear el código QR o ingresar a: https://t.co/oR78Yh7gjp y completar una breve encuesta de selección. Si califica, se le comunicará directamente para programar una entrevista. ¡Participe antes del miércoles 10 de diciembre!
RP2350 based usb to show the ip address of the Respberry Pis it is connected to. It has four display lines: hostname, Wi‑Fi (wl*), Ethernet (en*/eth*), and two “other” slots for additional detected interfaces. You just insert it and it will show it. It is fully open source.
This is literally the easiest way to build an AI agent.
Zero code. You only need to run a couple of commands.
(I've said this before, but Google ADK is my favorite way to build code-first agents.)
Here is what you need to do:
1. Open your terminal and create an empty folder
2. Run `uv init` inside the folder (if you don't have uv installed, you are really missing out!)
3. Install the google-adk library using the following command: `uv add google-adk`.
4. At this point, you can use the ask to create your agent with a single command: `uv run adk create --type=config my_agent`. This will ask you a couple of questions, including your GEMINI_API_KEY (you can create one online).
5. The command above will create a my_agent/root_agent.yaml file. Open it and add the following two lines at the end of the file so your agent can use Google to search for stuff:
tools:
- name: google_search
6. You have everything you need now. Run the adk web interface and start playing with your agent: `uv run adk web`
That's it!
Literally zero code. The agent works off the YAML configuration file.