#hex — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #hex, aggregated by home.social.
-
When you regret starting a new Pocket EQ game on a hardest level 🤣.
And if you think that 255 bottles of health and mana potions is enough - on the hardest level you spend up to 20 of each per fight... 🤯
#everquest #pocketeverquest #pocketeq #retrogaming #retrocomputing #hex #cheating #ipaq #pocketpc #windowsmobile #ipaq_h214
-
When you regret starting a new Pocket EQ game on a hardest level 🤣.
And if you think that 255 bottles of health and mana potions is enough - on the hardest level you spend up to 20 of each per fight... 🤯
#everquest #pocketeverquest #pocketeq #retrogaming #retrocomputing #hex #cheating #ipaq #pocketpc #windowsmobile #ipaq_h214
-
-
-
dumb question, but what would you use to "search and replace" a string (with a shorter one) in a binary file (size ~5GB).
And it is in there a few hundred thousand times. False positives are avoidable in this case.
Of the top of my head I only know hex editors that allow to replace bytes with equally long ones...
-
dumb question, but what would you use to "search and replace" a string (with a shorter one) in a binary file (size ~5GB).
And it is in there a few hundred thousand times. False positives are avoidable in this case.
Of the top of my head I only know hex editors that allow to replace bytes with equally long ones...
-
Реверс-инжиниринг карт Heroes of Might and Magic III: Horn of the Abyss + парсер на Python
Мне стало любопытно: смогу ли я распарсить карту HotA и написать такой парсер, который сможет быстро отвечать на вопросы вроде: «Где можно выучить заклинание “Городской портал”?», «Где найти артефакт, например, Чёрный шар?», «Есть ли в тюрьме герой Джелу?» и всё в таком духе. А ещё я решил, что искать в интернете готовые спецификации скучно. Гораздо интереснее попробовать разобраться самому. Прямо с нуля. Как будто интернета нет, а есть только карты, низкоуровневые редакторы и желание понять, что там внутри. В этой статье как раз и будут мои низкоуровневые мучения и исследования. Буду смотреть в байты, сравнивать карты, ошибаться, находить закономерности и постепенно вытаскивать из файла осмысленные данные. Если вся эта археология неинтересна, можно просто промотать ближе к концу, взять готовый парсер и наконец узнать, где же на карте можно выучить «Городской портал».
https://habr.com/ru/articles/1039296/
#heroes_3 #heroes_of_might_and_magic_iii #horn_of_the_abyss #hota #h3m #python #reverse_engineering #hex #парсер
-
[Перевод] Ваш HEX-редактор должен подсвечивать байты цветами
Почти все HEX-редакторы выглядят как унылый список байтов, в котором невозможно найти ничего интересного. Но достаточно добавить цвета — и человеческий мозг сам начнёт замечать магические сигнатуры, последовательности чисел, сжатые данные и даже скрытые изображения. В этой статье будет рассмотрено, как работает подсветка байтов и какие hex-редакторы поддерживают это.
https://habr.com/ru/companies/timeweb/articles/1034682/
#hex #подсветка #hexредакторы #hex_редактор #timeweb_статьи_перевод
-
@[email protected] 🔗 lgbtqia.space/users/AeonCy... - Tonight I and my #witch partner are going to #hex #DonaldTrump. I have some spells, but anyone have any favorite #spells or #curses for a #CyberWitch? #HexTrump #Witchcraft #Curse #Samhain #Halloween #Election2024 #2024election #Trump
➴➴➴Æ🜔Ɲ.Ƈꭚ⍴𝔥єɼ👩🏻💻 (@AeonCypher... -
@[email protected] 🔗 lgbtqia.space/users/AeonCy... - Tonight I and my #witch partner are going to #hex #DonaldTrump. I have some spells, but anyone have any favorite #spells or #curses for a #CyberWitch? #HexTrump #Witchcraft #Curse #Samhain #Halloween #Election2024 #2024election #Trump
➴➴➴Æ🜔Ɲ.Ƈꭚ⍴𝔥єɼ👩🏻💻 (@AeonCypher... -
Шестнадцатеричная запись чисел с плавающей точкой в C++, Java, Go
Эта возможность есть в нескольких популярных языках программирования - но она настолько невостребованна, что и не все-то коллеги о ней знают - а в других не менее популярных языках её отказываются добавлять, несмотря на запросы энтузиастов. Этакий живой курьёз. В этой коротенькой заметке-памятке - взглянем на формат записи (он может показаться не вполне логичным и не вполне шестнадцатеричным, вопреки названию) и поддержку стандарта разными языками. Основным же применением для этой "фичи" может быть, наверное - троллить друг друга на собеседованиях :) Если вам случалось использовать такую запись на практике - поделитесь в комментариях. Или хотя бы если вы можете придумать случай когда она потенциально пригодится. 0xBEDA.BEDAp0
-
Байты, нибблы, и подсветка: пишем свой TUI hex-редактор на Python
В жизни каждого разработчика иногда приходится рассматривать бинарные файлы через специальные HEX-редакторы. Мы открываем его, видим три колонки цифр и букв, и кажется что все предельно ясно-понятно. Но почему адреса считаются шестнадцатеричными, что такое ниббл и зачем он вообще нужен? В этой статье мы не просто напишем свой hex-редактор на Python — мы разберем, как он устроен, от битового представления до цветовой подсветки. Выясним, чем подсветка по нибблам отличается от подсветки по категориям байтов, и почему градиенты в hex-дампе — это не просто украшение, а рабочий инструмент. Также мы изучим, какие практики и паттерны используются при написании редактора — от mmap для чтения файла до интерпретации байтов. Будет и код, и архитектура, и результат, и практика.
https://habr.com/ru/companies/timeweb/articles/1034646/
#hexредактор #hex #редактор #нибблы #байты #бинарные_файлы #двоичные_файлы #howto #туториал #timeweb_статьи
-
I made a thing: https://hex.pm/packages/svgm
It's a Rust NIF for https://crates.io/crates/svgm-core which is a SVG optimizer. Kinda like SVGO, but written in Rust.
I didn't get rustler precompiled to work, as you can see in the actions/CI tab on GitHub, so if someone knows how to fix that, PR's welcome.
-
More 3D printing shenanigans!
Some hexes. The pack comes with dozens of different hexes this is just a few. Would be nice to have a bunch of these and paint them.
-
News includes a redesigned Hex-pm website, #Hex 2.4 adding #OAuth and #2FA, the official Elixir Expert LSP hitting v0.1, a new LiveStash library for LiveView state recovery, and more! #ElixirLang @ElixirLang www.youtube.com/watch?v=jn4t...
Thinking Elixir Podcast 298: H... -
News includes a redesigned hex.pm website, #Hex 2.4 adding #OAuth and #2FA, the official Elixir Expert LSP hitting v0.1, a new LiveStash library for LiveView state recovery, and more! #ElixirLang @elixirlang https://www.youtube.com/watch?v=jn4tmDrIMFo -
News includes a redesigned hex.pm website, #Hex 2.4 adding #OAuth and #2FA, the official Elixir Expert LSP hitting v0.1, a new LiveStash library for LiveView state recovery, and more! #ElixirLang @elixirlang https://www.youtube.com/watch?v=jn4tmDrIMFo -
Please decode…
Seen at #ZecheZollverein during season opening right next to the kids play things.
-
Please decode…
Seen at #ZecheZollverein during season opening right next to the kids play things.
-
CAT&Docs Curls Up With ‘HEX’ Ahead Of Film’s Bow At Thessaloniki International Documentary Festival
#Acquisitions #Documentary #Festivals #News #CATandDocs #HEX #MajaHoland #ThessalonikiInternationalDocumentaryFestivalhttps://deadline.com/2026/02/hex-documentary-catdocs-acquisition-1236735564/
-
CAT&Docs Curls Up With ‘HEX’ Ahead Of Film’s Bow At Thessaloniki International Documentary Festival
#Acquisitions #Documentary #Festivals #News #CATandDocs #HEX #MajaHoland #ThessalonikiInternationalDocumentaryFestivalhttps://deadline.com/2026/02/hex-documentary-catdocs-acquisition-1236735564/
-
-
🔥 KaraokHex in Maschera 🔥
Circolo Hex, sabato 14 febbraio alle ore 21:00 CET
🔥 𝕂𝒂ℜ𝚊𝖔ᴋ𝐇𝓮𝚇 🔥
ᴇᴅɪᴢɪᴏɴᴇ ɪɴ ᴍᴀsᴄʜᴇʀᴀ✦ 𝐒𝐚𝐛𝐚𝐭𝐨 𝟏𝟒 𝐅𝐞𝐛𝐛𝐫𝐚𝐢𝐨 𝟐𝟎𝟐𝟔
✦ 𝐇𝐞𝐱 • 𝐕𝐢𝐚 𝐝𝐢 𝐂𝐨𝐫𝐭𝐢𝐜𝐞𝐥𝐥𝐚 𝟓𝟔, 𝐁𝐨𝐥𝐨𝐠𝐧𝐚ʜ 21:00 • sᴛᴀʀᴛ
ʜ 00:00 • ᴇɴᴅLa serata perfetta per evocare lə tuə divə interiore: un sabba fiammante in cui dimenticare il controllo vocale e abbracciare il caos. Il talento è opzionale, la gloria effimera è garantita.
👹 𝐒𝐞 𝐯𝐢𝐞𝐧𝐢 𝐦𝐚𝐬𝐜𝐡𝐞𝐫𝐚𝐭ə 𝐜𝐚𝐧𝐭𝐢 𝐩𝐫𝐢𝐦𝐚!🐔 Alla conduzione El Pollo Loco DJ
🧷 Disponibile raccolta punk per soddisfare anche lɜ più snob⌒⌒⌒⌒⌒⌒
✶ 𝐈𝐧𝐠𝐫𝐞𝐬𝐬𝐨 𝐚 𝐨𝐟𝐟𝐞𝐫𝐭𝐚 𝐥𝐢𝐛𝐞𝐫𝐚 (𝐜𝐨𝐧𝐬𝐢𝐠𝐥𝐢𝐚𝐭𝐢 𝟓€)
✶ 𝐓𝐞𝐬𝐬𝐞𝐫𝐚 𝐀𝐫𝐜𝐢 • 𝐀𝐫𝐜𝐢𝐠𝐚𝐲 • 𝐔𝐢𝐬𝐩 𝐧𝐞𝐜𝐞𝐬𝐬𝐚𝐫𝐢𝐚🔔 Se intendi tesserarti occorre che invii in anticipo la domanda di iscrizione scaricando sul tuo telefono l'app di ARCI e selezionando come associazione HEX APS
-
Fun: try communicating with #i3 / #SwayCompositor using #netcat and an #ASCII table!
$ man ascii
$ man sway-ipc # (for Sway)
$ nc -U "$I3SOCK" # "$SWAYSOCK" also works for SwayThen enter:
i3-ipc^@^@^@^@^C^@^@^@
'^@' is a 0 byte; you can get it with Ctrl+@ (Ctrl+Shift+2) or sometimes Ctrl+Space. '^C' is a 3 byte; you'll need to escape it so that your terminal takes it literally rather than quitting `nc`; enter Ctrl+V then Ctrl+C.
Once you're done, press Ctrl+D once to send!
-
I knew about `0xDEADBEEF` but I just found out about all these other “magic” debug values… the iOS ones are particularly funny
https://en.wikipedia.org/wiki/Magic_number_(programming)#Debug_value
-
I knew about `0xDEADBEEF` but I just found out about all these other “magic” debug values… the iOS ones are particularly funny
https://en.wikipedia.org/wiki/Magic_number_(programming)#Debug_value
-
Got an urge to play some grognard hex or RTS game on my iPad. Can’t seem to find anything that’s not pure rock-paper-scissors or F2P garbage. It’s a bit sad that this device that could work very well for games like this never caught on for this genre.
-
Got an urge to play some grognard hex or RTS game on my iPad. Can’t seem to find anything that’s not pure rock-paper-scissors or F2P garbage. It’s a bit sad that this device that could work very well for games like this never caught on for this genre.
-
I want to develop a bot that can play the hex board game against a reasonably skilled human player. Any pointers on where one could start?
https://en.wikipedia.org/wiki/Hex_(board_game)
I could imagine a greedy algorithm (that would be a bit bad) where the longest chain gets elongated by the bot.
#askfedi #hex -
I want to develop a bot that can play the hex board game against a reasonably skilled human player. Any pointers on where one could start?
https://en.wikipedia.org/wiki/Hex_(board_game)
I could imagine a greedy algorithm (that would be a bit bad) where the longest chain gets elongated by the bot.
#askfedi #hex -
Which #HEX editor do you guys recommend using on which platform? Is there any app that works on all three? (#Linux, #macOS, #Windows)
Don't really need anything too fancy, also don't mind paying for a really well supported and quality app.
I've been looking at 010 (https://www.sweetscape.com/010editor) as well as HexEd.it. First one seems really powerful, but not sure I need that to edit bios and EC firmware files. Second is a web app with all due limits.
-
Which #HEX editor do you guys recommend using on which platform? Is there any app that works on all three? (#Linux, #macOS, #Windows)
Don't really need anything too fancy, also don't mind paying for a really well supported and quality app.
I've been looking at 010 (https://www.sweetscape.com/010editor) as well as HexEd.it. First one seems really powerful, but not sure I need that to edit bios and EC firmware files. Second is a web app with all due limits.
-
At www.unicode.org/charts a lot of symbols, characters and so on.
How to insert them in a website? With &#CODE; in the html, where the "CODE" is the decimal translation of the hex in the unicode charts.
A tool to convert from hex to decimal here https://www.binaryhexconverter.com/hex-to-decimal-converter#unicode #hex #decimal #character #typo #html #web #website #tool #webtool