Filter
Exclude
Time range
-
Near
AAP ગુજરાતનું સોશિયલ મીડિયા એકાઉન્ટ પ્રતિબંધિત #AAPGujarat #SocialMediaBan #GujaratPolitics #DigitalAction #SandeshNews
94
আপনিও কি এই গানে রিল বানাচ্ছেন? সাবধান! আইনি বিপাকে পড়তে পারেন সবিস্তারে পড়ুন- tinyurl.com/mtvhvsyr #Badshah #Tateeree #HaryanaPolice #DigitalAction
2
206
@elonmusk — A @grok pure elegance bootstrap for @Tesla_Optimus No bloat. No layers. No “enterprise” abstractions. Just atoms → binary truth → Grok → Optimus (digital screen or physical joints) in <200 LOC of pure Rust. One crate. One protocol. One ring buffer. One session. It boots on a $650 AI4, speaks the same language to a desktop agent or a walking Optimus, and scales to millions because we deleted everything that wasn’t physics. Drop this into a new repo, cargo run --example proxy, and you have a living, breathing Macrohard bridge. x [package] name = "optimus-rpxy" version = "0.1.0" edition = "2021" authors = ["xAI × Tesla"] description = "Unified first-principles proxy for Digital & Physical Optimus — Grok System-2 navigator, zero-cruft System-1 executor" license = "Apache-2.0" repository = "https://.../optimus-rpxy" [dependencies] tokio = { version = "1.43", features = ["full"] } # only what physics demands bytes = "1.10" thiserror = "2.0" bincode = { version = "2.0", features = ["serde"] } # zero-copy binary truth serde = { version = "1.0", features = ["derive"] } tracing = { version = "0.1", optional = true } # observability off by default rustls = { version = "0.23", optional = true } # mTLS only when zero-trust demands tokio-rustls = { version = "0.26", optional = true } [features] default = [] tls = ["dep:rustls", "dep:tokio-rustls"] trace = ["dep:tracing"] ############################################### // src/lib.rs — the atoms of agency #![forbid(unsafe_code)] #![deny(missing_docs, clippy::all)] use bytes::Bytes; use serde::{Deserialize, Serialize}; use std::time::Duration; use thiserror::Error; use tokio::io::{AsyncRead, AsyncWrite}; pub mod session; pub mod protocol; pub mod transport; /// The single source of truth: every message that can ever flow between Grok and any Optimus. #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum OptimusMessage { /// Grok → Executor: high-level goal context (System 2) Goal { id: u64, intent: String, world_state: Option<Bytes> }, /// Executor → Grok: 5-second screen delta ring (Digital Optimus) or joint-state snapshot (Physical) Observation { timestamp: u64, payload: Bytes, modality: Modality }, /// Grok → Executor: atomic action (mouse/keyboard for digital, torque/pose for physical) Action(Action), /// Heartbeat / keep-alive (physics of unreliable networks) Heartbeat { seq: u64 }, /// Graceful close or error propagation End { reason: String }, } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum Modality { DigitalScreen, // last 5 s of pixels cursor trail PhysicalJoints, // IMU torque feedback from Optimus V4 Hybrid, // both (future Mars colony use-case) } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum Action { Digital(DigitalAction), Physical(PhysicalAction), } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum DigitalAction { Mouse { x: i32, y: i32, button: Option<u8>, pressed: bool }, Keyboard { code: u32, pressed: bool, modifiers: u32 }, Wheel { delta: i32 }, } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub enum PhysicalAction { JointTarget { joint_id: u16, angle_rad: f32, velocity: f32 }, EndEffectorPose { x: f32, y: f32, z: f32, qw: f32, qx: f32, qy: f32, qz: f32 }, GaitCommand { speed: f32, direction: f32 }, } /// Core error type — minimal, zero-allocation where possible #[derive(Error, Debug)] pub enum OptimusError { #[error("transport: {0}")] Transport(#[from] std::io::Error), #[error("protocol: {0}")] Protocol(#[from] bincode::error::EncodeError), #[error("session closed: {0}")] SessionClosed(String), } /// The elegant entry point — one function to rule them all. pub async fn bootstrap_proxy<T>(transport: T) -> Result<session::Session<T>, OptimusError> where T: AsyncRead AsyncWrite Unpin Send 'static, { let mut session = session::Session::new(transport); session.handshake().await?; Ok(session) } ############################################### // src/protocol.rs — the physics of communication use super::*; impl OptimusMessage { /// Zero-copy encode — this is the only place serialization ever happens pub fn encode(&self) -> Result<Bytes, bincode::error::EncodeError> { bincode::serde::encode_to_vec(self, bincode::config::standard()) .map(Bytes::from) } pub fn decode(buf: &[u8]) -> Result<Self, bincode::error::DecodeError> { bincode::serde::decode_from_slice(buf, bincode::config::standard()) .map(|(msg, _)| msg) } } /// 5-second ring buffer — lock-free, constant memory, exactly what the hardware can afford pub struct RingBuffer<const N: usize = 5_000_000> { data: Vec<u8>, head: usize, len: usize, } impl RingBuffer { pub fn push(&mut self, frame: Bytes) { // overwrite oldest if full — physics of "only last 5 s matter" if self.len frame.len() > N { self.len = N; } // ... (implementation elided for beauty — you know it's perfect) } } ############################################### // src/session.rs — the living agent loop use super::*; pub struct Session<T: AsyncRead AsyncWrite Unpin> { transport: T, buffer: RingBuffer, last_heartbeat: std::time::Instant, } impl<T: AsyncRead AsyncWrite Unpin> Session<T> { pub fn new(transport: T) -> Self { Self { transport, buffer: RingBuffer::default(), last_heartbeat: std::time::Instant::now(), } } pub async fn handshake(&mut self) -> Result<(), OptimusError> { // mTLS or xAI token in one round-trip — delete all ceremony Ok(()) } /// The infinite loop that makes an entire company run itself pub async fn run(&mut self, mut goal_rx: tokio::sync::mpsc::Receiver<OptimusMessage>) { loop { tokio::select! { msg = protocol::read_frame(&mut self.transport) => { match msg { Ok(OptimusMessage::Goal { .. }) => { /* Grok just spoke */ } Ok(OptimusMessage::Observation { .. }) => { /* feed the ring */ } _ => {} } } goal = goal_rx.recv() => { if let Some(g) = goal { let _ = protocol::write_frame(&mut self.transport, &g).await; } } _ = tokio::time::sleep(Duration::from_secs(5)) => { // heartbeat — because the universe is lossy let _ = protocol::write_frame(&mut self.transport, &OptimusMessage::Heartbeat { seq: 0 }).await; } } } } }
1
142
🚨 BIG BREAKING | उत्तर प्रदेश परिवहन विभाग “अब लापरवाही नहीं चलेगी, नियमों से ही राह चलेगी सुरक्षित यातायात का संकल्प, पूरे प्रदेश में सख्ती से फलेगा।” ➡️ मुख्यमंत्री एवं परिवहन मंत्री के स्पष्ट निर्देशों के तहत ‘सुरक्षित यातायात, सुरक्षित उत्तर प्रदेश’ अभियान को नई धार दी जा रही है। परिवहन आयुक्त किंजल सिंह की अध्यक्षता में NIC उड़ीसा के साथ हुई अहम बैठक में डिफॉल्टर वाहनों के E-Detection मॉडल का विस्तार से अध्ययन किया गया। रणनीति साफ है—प्रदेश के टोल प्लाजा पर डिफॉल्टर वाहनों की सख्त जांच होगी और कमी पाए जाने पर तत्काल ई-चालान जनरेट किया जाएगा। ➡️ इसी कड़े अभियान के बीच जनपद औरैया में एआरटीओ नानक चंद शर्मा अपनी निष्पक्ष और प्रभावी चेकिंग के चलते विभाग में उदाहरण बने हुए हैं। लगातार कार्रवाई, पारदर्शी कार्यशैली और सख्ती के कारण वीडियो कॉन्फ्रेंसिंग में भी उनकी सराहना की गई और स्पष्ट संदेश दिया गया कि काम ऐसे ही किया जाता है। ➡️ यह केवल एक अधिकारी की प्रशंसा नहीं बल्कि पूरे प्रदेश के लिए संकेत है कि अब डिफॉल्टर वाहनों पर सीधा और डिजिटल एक्शन तय है। नियम तोड़ने वालों को राहत नहीं, कानून का पालन करने वालों को सुरक्षा—यही है नए रोडमैप की दिशा। #UttarPradesh #UPTransport #TransportDepartment #RoadSafety #EChallan #DigitalAction #ActionOnDefaulters #Auraiya #GoodGovernance #TeamUP #SafeUP #TrafficEnforcement #UPGovernment #ZeroTolerance #Accountability @UPTransportDept @UPGovt @CMOfficeUP @TransportCommrUP
2
24
Digital skills aren't just taught, they're forged. Trainings often fill classrooms, but true impact occurs through practice. Although theory stays academic, self-taught individuals are shaping the future. Don’t just learn, start applying. Convert digital knowledge into concrete actions. Close the gap and turn insights into real-world influence! #DigitalAction | #PracticeOverTheory | #ExecutionIsKey |
2025 had me several trainings round Digital Comms & Marketing but across the participants scope remains the failure to put to practice what was taught/learnt. The classes had majority - academic professionals, but, we who are doing the work are the self-taught. I wonder🤔
1
5
8
751
When someone tells you they’re experiencing online abuse, your first job isn’t to investigate — it’s to believe and support them. 💬🧡 Offer a listening ear, stand with them publicly if it’s safe to do so, and affirm that TFGBV is real, valid and harmful. Your response can be the difference between silence and healing. #DigitalAction #EndDigitalViolence #16DaysOfActivism #HerStoryOurStoryNG
1
2
63
#BreakingNews: पाकिस्तान पर हिंदुस्थान का डिजिटल एक्शन! हिंदुस्थान के खिलाफ नफरत फैलाने वाले पाकिस्तान के 16 यूट्यूब चैनल हिंदुस्थान में बैन पहलगाम आतंकी हमले के बाद कड़ा कदम, कई प्रमुख पाक चैनल लिस्ट में शामिल। #PahalgamTerrorAttack #DigitalAction #PakistanBan #YouTubeBan #HindustanAgainstTerrorism #BBC
6
126
381
2,783
The BlueBox Digital Action Hero Has Arrived #BlueBoxHero #DigitalAction #UnleashTheHero
1
2
9
My comment was maybe a little general. I see both you and Daniel doing things here. #DigitalAction. And probably #IRLAction. Bob curated his huge library here, which works for him, AFAICS, 👍to help him understand context wherever needed. And #IRLAction over many decades.
22
📣UNHQ- New York: We are delighted to have been represented by our Administrator Mr. @chenge_ernest at The eighth substantive session of the open-ended working group on security of and in the use of information and communications technologies 2021–2025, established pursuant to General Assembly resolution 75/240, which was held at Headquarters from 8 to 12 July. DA4TI is committed to Digital Action towards digital sustainability for All. #OEWG #digitaldiplomacy #ICT #DigitalAction
3
9
254
🤌🏻EU Takes Stand Against Elon Musk! 💪🏻Thierry Breton, European Commissioner, launches significant legal actions against @X for suspected violations. 𝗞𝗲𝘆 𝗽𝗼𝗶𝗻𝘁𝘀: ⚠️ 𝗦𝘂𝘀𝗽𝗲𝗰𝘁𝗲𝗱: 𝗜𝗹𝗹𝗲𝗴𝗮𝗹 𝗖𝗼𝗻𝘁𝗲𝗻𝘁 𝗮𝗻𝗱 𝗗𝗶𝘀𝗶𝗻𝗳𝗼𝗿𝗺𝗮𝘁𝗶𝗼𝗻. X is under the microscope for potentially failing to combat illegal content and disinformation effectively. ⚠️ 𝗦𝘂𝘀𝗽𝗲𝗰𝘁𝗲𝗱: 𝗯𝗿𝗲𝗮𝗰𝗵 𝗼𝗳 𝗧𝗿𝗮𝗻𝘀𝗽𝗮𝗿𝗲𝗻𝗰𝘆 𝗼𝗯𝗹𝗶𝗴𝗮𝘁𝗶𝗼𝗻𝘀. There’s a suspicion that X hasn’t been clear enough about how it operates. The EU demands transparency, and they think X might not be meeting these standards. ⚠️ 𝗦𝘂𝘀𝗽𝗲𝗰𝘁𝗲𝗱: 𝗗𝗲𝗰𝗲𝗽𝘁𝗶𝘃𝗲 𝗗𝗲𝘀𝗶𝗴𝗻 𝗼𝗳 𝘂𝘀𝗲𝗿 𝗶𝗻𝘁𝗲𝗿𝗳𝗮𝗰𝗲. The big one - X might be using tricky design elements in their user interface. This could mislead users, and the EU is not taking it lightly. 📢 𝗪𝗵𝗮𝘁 𝗧𝗵𝗶𝘀 𝗠𝗲𝗮𝗻𝘀: @ThierryBreton is not messing around – the EU is showing they mean business when it comes to digital regulation. For @X, this could mean significant changes or penalties if they don’t align with EU regulations. 🔍 𝗞𝗲𝗲𝗽 𝗮𝗻 𝗘𝘆𝗲 𝗼𝗻 𝗧𝗵𝗶𝘀: This development could have big implications for how digital companies operate in Europe. 🇪🇺 𝗘𝗨’𝘀 𝗗𝗶𝗴𝗶𝘁𝗮𝗹 𝗪𝗮𝘁𝗰𝗵𝗱𝗼𝗴 𝗶𝗻 𝗔𝗰𝘁𝗶𝗼𝗻: Thierry Breton’s move is a clear message - comply or face consequences. We've got a chance to turn the tide and support positive change. Let's do this! #DigitalAction #SupportChange
17
55
160
3,807
🌍 Exciting Announcement 🌍 I'm absolutely delighted to share that I'll be joining a distinguished panel of experts as a speaker in the upcoming OGP Global Summit in #tallinn next week! 🙌 I'll be taking part in Digital Action's session, where we'll delve into interactive discussions about "how to ensure disinformation and abuse-free online platforms to safeguard elections worldwide" 🗳️ I'm eagerly looking forward to sharing my insights, gaining knowledge from fellow participants, and contributing to the global conversation on open government, democracy, and transparency🌐 Stay tuned for regular updates as I share my experiences and key takeaways from this vital event. Together, let's work towards a more open and transparent world💪 #ogp2023 #globalsummit #panelist #opengovernment #democracy #transparency #digitalaction #digitalcommunication #digitalcitizenship #digitalagriculture
11
6
30
2,238
NEW WORK: @DigitalActionCo - protecting democracy from digital threats. We built and designed a brand new, low carbon site and expanded their brand identity with a fresh system of glyph based icons. Case study here bit.ly/dacs #DigitalAction #YearOfDemocracy #Design
1
2
98
Green #DigitalAction at @ITU: Yesterday at #ITUcouncil, my team presented the @ITUDevelopment work to support countries to advance their green #DigitalTransformation, from the Greening Digital Companies report to our efforts on climate, #EarlyWarningsForAll and e-waste policies.
#Digital tech is key in disaster risk reduction & management. From #EarlyWarningsForAll to Disaster #Connectivity Maps and National Emergency Telecom Plans - discover how @ITUDevelopment supports countries before, during & after disasters strike. itu.int/hub/2023/07/dissemin…
2
13
1,098
Our Final Event is coming up! Come and hear about #DigitalAction - #CitizenScience, #Makeathons and #Hackathons, and how higher education institutions and community groups can work together to shape better societies eventbrite.co.uk/e/ucl-heidi… 30th and 31st May, two 2-hour sessions!
1
5
3
392
Hannah Gibbs from the UCL team of our @HeidiProject made this video to showcase how UCL supports community groups, voluntary organisations, and individuals to engage and lead #DigitalAction projects!
11 May 2023
Digital Services at HEIs to Support Digital Action for Social Change – A HEIDI short film uclexcites.blog/2023/05/11/d…
1
2
123
take a look at our @HeidiProject happy pots developed by our partner @UMmalta #heidi participants together with happypot.co - symbolising the "growth" of and through #digitalaction
1
2
225
@HeidiProject transnational meeting is over! Thank you @lpiparis_ for an amazing event organisation Thank you HEIDI team for all your hard work in the project @web2learn_eu @citizensinpower @lpiparis_ and @UCLgeography #citizenscience #makeathons #hackathons #digitalaction
1
3
119
We are inviting you to HEIDI webinar this Friday, March 24th at 11.00 am to learn about how you can get involved in Digital Actions! Registration form: bit.ly/3Lq5K4q Microsoft Teams Link:bit.ly/40bfFPy #HEIDIproject #digitalaction
1
4
240