Telegram Web
🫡

JetBrains sells commercial IDE called GoLand which comes pre-loaded with a plugin which warns the user when they are using:

- “Racially insensitive” language (like “whitelist” or “master”).
- “Male pronouns”.
- Honorifics such as “Mrs”, recommending people use “Mx” instead.


https://x.com/LundukeJournal/status/1964854040212447634
🤡54💩8🤮6😁5👍2😢1🖕1
#rust

crates.io phishing campaign

We received multiple reports of a phishing campaign targeting crates.io users (from the rustfoundation.dev domain name), mentioning a compromise of our infrastructure and asking users to authenticate to limit damage to their crates.

These emails are malicious and come from a domain name not controlled by the Rust Foundation (nor the Rust Project), seemingly with the purpose of stealing your GitHub credentials.

<...>

Do not follow any links in these emails if you receive them, and mark them as phishing with your email provider.
🤯3🤔1
Блог* pinned «#rust crates.io phishing campaign We received multiple reports of a phishing campaign targeting crates.io users (from the rustfoundation.dev domain name), mentioning a compromise of our infrastructure and asking users to authenticate to limit damage to their…»
Forwarded from Neural Machine
Я большой поклонник бесплатных штук.
👍5🤔2
Neural Machine
Я большой поклонник бесплатных штук.
The best things in life are free.

Sundowns
Walks
rustc
Beaches
👍7😁3🤔1
Блог*
TIL что в Америку запрещено провозить Киндер-сюрпризы
Kinder eggs are a prohibited item because they contain a toy surprise, hidden inside, that poses a choking and aspiration hazard for children younger than three years of age.


Americans want their children to choke till bitter end.
🤡73🥰1😁1
Forwarded from Код, коты и карандаш
Поздравляю всех причастных с 100000000-м днём года 🥳
🎉23🌚4🥰1
Forwarded from Tech Crimes (Tailen)
😭23🤯41
Ну #rust
🫡181👍1💯1
Forwarded from Neural Shit
Там OpenAI опубликовали новый ресёрч: оказывается, нейронки галлюцинируют и врут не потому что "чугунные шизоиды на транзисторах", а потому что их ещё при обучении натаскали угадывать ответы, а не честно говорить "Я не знаю ответ на этот запрос".

Представить это легко, вспомните себя в школе/универе во время какого-либо экзамена. Вы не знаете, например, сколько ног у медузы, но если написать от балды "тринадцать с половиной", есть шанс тупо угадать и получить балл. Если же написать "не знаю" — это сразу ноль баллов. Вот нейроночки живут по такому же мясному принципу.

Проблема в том, что бенчмарки ИИ-моделей сейчас оценивают модели по количеству правильных ответов. Поэтому лучше быть уверенным дебилом, чем скромным умником.

OpenAI предлагают менять правила: штрафовать модельки за наглую чушь, награждать за честное «я не уверен/я не знаю». Пример: старая модель угадывала точнее, но врала в 3 раза чаще. Новая — чаще молчит, зато меньше выдумывает.

Короче, галлюцинации — это не баг, а математика. Модель не может знать всё, но может научиться не строить из себя всезнайку.

Идеал будущего: чат-бот, который отвечает на 90% вопросов словами "Братан, я не в теме, не знаю ответ на твой вопрос, иди сам погугли" но зато ни разу не обманывает.

тут сама статья
😁213🤯2🤔1💯1
Forwarded from $ git rebase it memes
Новая модель в курсоре однозначно лучше!

@git_rebase / send memes
🍌22🤣12
😁5🤣2😭1
Очередной #abnormalprogramming
Наконец-та!

Hosting a WebSite on a Disposable Vape
https://bogdanthegeek.github.io/blog/projects/vapeserver/

Сам сайт, который хостится - http://ewaste.fka.wtf/

"Железо"

- 24MHz Coretex M0+
- 24KiB of Flash Storage
- 3KiB of Static RAM
- a few peripherals, none of which we will use.


> This may not come as a surprise, but Linux (and with some tweaking even macOS) supports SLIP. The slattach utility can make any /dev/tty* send and receive IP packets. All we have to do is put the data down the wire in the right format and provide a virtual tty. This is actually easier than you might imagine, pyOCD can forward all semihosting though a telnet port. Then, we use socat to link that port to a virtual tty:

pyocd gdb -S -O semihost_console_type=telnet -T $(PORT) $(PYOCDFLAGS) &
socat PTY,link=$(TTY),raw,echo=0 TCP:localhost:$(PORT),nodelay &
sudo slattach -L -p slip -s 115200 $(TTY) &
sudo ip addr add 192.168.190.1 peer 192.168.190.2/24 dev sl0
sudo ip link set mtu 1500 up dev sl0


Для IP-стека был взят uIP - https://github.com/adamdunkels/uip (который был написан сразу хорошо и поэтому 12 лет не обновлялся 🌝)

Так же был реализован/портирован SLIP (Serial Line Internet Protocol) - старый протокол, который использовался для подключения через модемы

> If you are older than me, you might remember a time before Wi-Fi and Ethernet, the dark ages, when you had to use dial-up modems to get online. You might also know that the ghosts of those modems still linger all around us. Almost all USB serial devices actually emulate those modems: a 56k modem is just 57600 baud serial device. Data between some of these modems was transmitted using a protocol called SLIP (Serial Line Internet Protocol)

Сначала работало всё медленно, но после оптимизаций удалось достигнуть пинга в 20 мс, а загрузки страницы за 160 мс.

Реализация получилась такой компактной, что на веб-сервер удалось разместить текст оригинальной статьи

Memory region         Used Size  Region Size  %age Used
FLASH: 5116 B 24 KB 20.82%
RAM: 1380 B 3 KB 44.92%


> As you may have noticed, we have just under 20kiB (80%) of storage space. That may not be enough to ship all of React, but as you can see, it’s more than enough to host this entire blog post.

Исходный код проекта
https://github.com/BogdanTheGeek/semihost-ip
8🔥1😁1🤯1
2025/09/16 00:51:28
Back to Top
HTML Embed Code: