#Ecma

2025-12-21

ECMA International has released new standards for Agent-to-Agent communication, potentially making standard APIs obsolete for purpose of data exchanged between systems. There are 5 new standards for multi-turn human to AI and AI to AI communication.

ecma-international.org/news/ec

#AI #ECMA #NLIP #AIAgents

2025-11-19

ai can really be useful – weather edition

The new AI model, WeatherNext 2, can generate forecasts eight times faster than Google’s previous model, and is also more accurate in predicting 99.9 percent of variables like temperature or wind. WeatherNext 2 can pump out hundreds of potential outcomes from a particular starting point. It takes less than a minute using one of Google’s TPU chips to make a prediction, which the company says would typically take several hours to accomplish using physics-based models on a supercomputer.

Google updates its weather forecasts with a new AI model | The Verge

I want to be clear – this is not a traditional LLM. However, this is personally one of the most exciting and useful applications for highly advanced machine learning models. weather modeling has not changed since the physics simulation models that are currently employed across the world. I am genuinely excited for both more accurate local prediction and for what this spurs in additional research into the field.

#ai #apps #ecma #google #life #nvidia #weather

2025-10-12

JavaScript 之旅 (1):介紹 ECMA、ECMAScript、JavaScript 和 TC39 | Titangene Blog
titangene.github.io/article/ja

#JavaScript #ECMA #ECMAScript

2025-04-05

IF Statement в JS

IF-Statement - это конструкция для некоторого условного выполнения кода. Она позволяет выполнить определенный блок кода в зависимости от того истинно или ложно некоторое условие и согласно официально спецификации ECMAScript, syntax if-statement можно записать как:

habr.com/ru/articles/897884/

#javascript #ecma #ecmascript #программирование #if #ifstatement #statement #else #else_if

2025-02-28

#Mozilla Standards Positions. This page tracks Mozilla's positions on open Web and Web-related specifications submitted to standards bodies like the #IETF, #W3C, #WHATWG, and #Ecma #TC39. Please remember, this isn't a commitment to implement or participate; it's just what we think right now. See dev-platform to find out what we're implementing. mozilla.github.io/standards-po

2025-01-30

Not at all proud to be publicly publishing of @degenerate-developers/linked-in-compensation package!

Makes it relatively easy to en/de-code messages into/from LinkedIn Job's "how much can we under-pay you" form fields

Image of instructions on how to install, and use, the latest advancements in ECMA-Script degeneration with the following content;

````markdown
**Install**

```bash
npm install @degenerate-developers/linked-in-compensation
```

**(ab)Use it**

```javascript
import {
  encodeLinkedInCompensation,
  dencodeLinkedInCompensation,
} from "@degenerate-developers/linked-in-compensation";

var message = "woot ;-)";

var encoded = encodeLinkedInCompensation(message);
console.assert(
  encoded == "1110111.01101111011011110111010000100000001110110010110100101001",
  "Encoding failure"
);

var decoded = dencodeLinkedInCompensation(encoded);
console.assert(decoded == message, "Decoding failure");
```
````
Dirk Schnelle-Walkadsw@mastodontech.de
2024-12-14

The #ecma launched a task committee for a natural language interaction protocol for communication with Artificial Intelligence (AI) agents.

ecma-international.org/technic

So far, nothing has been published but the idea. I am curious how this evolves.

#AI #aiagents #nlu

2024-10-15

Does anyone have an example of how to properly structure/organize ECMA modules?
#esm #ecma

Thor A. Hoplandhopland@snabelen.no
2024-10-15

Here's my #take.

#Google are hedging their bets with #Android by trying to replace the #Java stack (...because Android) in case #Oracle wins favor in the courts and goes after them as well as #ECMA... because that might happen? Wat dee hek.

My only question is what's the next step for them? #Cobalt, #Zig... #Rust? A Google desktop framework and SDK written in #Go?.

Wow! Google is Working On Running a Native Linux Terminal App on Your Android Device!
news.itsfoss.com/google-androi

2024-09-11

Что нам даёт понимание спецификации языка ECMA Script? Разбираем стандарт ECMA262

Привет, Хабр! Меня зовут Александр, я frontend-разработчик SimbirSoft. Я 7 лет занимаюсь разработкой, и могу утверждать, что в процессе получения опыта работа специалиста становится все более творческой. Мы не просто стремимся заставить ПО работать нужным заказчику образом, а стараемся сделать все его части элегантными, производительными и легко поддерживаемыми. Язык программирования, являясь нашим главным инструментом, не статичен и постоянно развивается. Какие-то его части устаревают и отмирают, появляются новые фичи языка, отвечающие духу последних методологий по разработке ПО. Я расскажу о сообществе, которое занято развитием нашего языка JavaScript. В первую очередь это организация ECMA International , которая разрабатывает стандарт языка ECMA Script , диалектом которого является JavaScript. Мы разберем основные движки, реализующие стандарт ECMA Script, его ключевые разделы, опишем содержание на примере фичи. Рассмотрим, для чего изучать стандарт и как его дополнить, внеся свой вклад в сообщество разработчиков.

habr.com/ru/companies/simbirso

#ecma_script #ecma #ecma262 #itстандарты

2024-06-26

Примитивы в JavaScript — это миф?

Все мы знаем что в JavaScript есть "ссылочные"(Object), присваивающиеся по ссылке и "примитивные" (String, Number, Null и тд), присваивающиеся по значению, типы данных. Но так ли это на самом деле? В этой статье с помощью небольшого эксперимента мы убедимся, что это не совсем так и посмотрим как "примитивные" типы данных на самом деле хранятся в памяти.

habr.com/ru/articles/824614/

#ecma #v8 #javascript

2024-05-18

[Перевод] Реверс-инжиниринг нативно скомпилированных .NET-приложений

Изучение внутреннего устройства приложений, созданных с использованием нативной опережающей компиляции (AOT). На платформе .NET 7 впервые была представлена новая модель развертывания: опережающая нативная компиляция . Когда приложение .NET компилируется нативно по методу AOT, оно превращается в автономный нативный исполняемый файл, оснащённый собственной минимальной средой исполнения для управления выполнением кода.

habr.com/ru/companies/timeweb/

#timeweb_статьи_перевод #net #net_7 #ecma #С++ #aot #hello_world #реверсинжиниринг #PE #ELF #MachO #с# #Ghidra #Binary_Ninja #PATH

2024-05-03

Halifax’s Neon Dreams captures album of the year at East Coast Music Awards
Halifax-based alt-pop duo Neon Dreams has won album of the year at the 2024 East Coast Music Awards in Charlottetown.
#globalnews #Canada #Entertainment #EastCoastMusicAwards #ecma
globalnews.ca/news/10467004/ne

Halifax’s Neon Dreams captures album of the year at East Coast Music Awards
Halifax-based alt-pop duo Neon Dreams has won album of the year at the 2024 East Coast Music Awards in Charlottetown.
#globalnews #Canada #Entertainment #EastCoastMusicAwards #ecma
globalnews.ca/news/10467004/ne

Global News New Brunswickglnb_mirror@mastodon.hongkongers.net
2024-05-03

Halifax’s Neon Dreams captures album of the year at East Coast Music Awards
Halifax-based alt-pop duo Neon Dreams has won album of the year at the 2024 East Coast Music Awards in Charlottetown.
#globalnews #Canada #Entertainment #EastCoastMusicAwards #ecma
globalnews.ca/news/10467004/ne

2024-05-03

Halifax’s Neon Dreams captures album of the year at East Coast Music Awards
Halifax-based alt-pop duo Neon Dreams has won album of the year at the 2024 East Coast Music Awards in Charlottetown.
#globalnews #Canada #Entertainment #EastCoastMusicAwards #ecma
globalnews.ca/news/10467004/ne

2024-05-01

I found what I think is an edge-case bug in ICU. It’s unlikely to impact most folks, unless you’re trying to run the ECMA-402 test suite.

unicode-org.atlassian.net/brow

#Unicode #ICU4C #ECMA #ECMA402

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst