Feed cleverhans-blog [copy] http://www.cleverhans.io/feed.xml has loading error: cURL error 22: The requested URL returned error: 404
Marrold: No one calls it a Guild
No one calls it a Guild
← Older revision Revision as of 22:38, 5 July 2023 Line 10: Line 10:'''''' Status Update (2023-05-11): London hackspace has recently secured an interim location at the The Republic of Park Royal, see location below (the lease at our previous long-term home in Ujima house ended in Dec 2022). We are currently in the process of extracting our equipment from storage and setting up, and are '''not yet open for general access''' - please keep in touch via our [https://discord.com/channels/943237246092447794/943237246092447797| Discord Guild] for announcements.Status Update (2023-05-11): London hackspace has recently secured an interim location at the The Republic of...
Торговля ликвидностью в сети Биткоин
Краткое руководство, как приобрести, настроить и управлять своим собственным Bitcoin Lightning Node, избегая подводных камней и типичных ошибок.
Читать далееО жизни до и после смерти
В своей предыдущей статье я описал фундаментальную реальность как вычислительный процесс эволюции. Теперь я предлагаю обсудить религиозные и метафизические аспекты такого мировоззрения.
Читать далееOn Computational Nature of Reality
I explain experimental results of Bell’s Theorem by superdeterminism. I follow with insights into how such a universe may arise and be compatible with the subjective experience of free will.
Read moreО вычислительной природе реальности
Я объясняю экспериментальные результаты проверки теоремы Белла супердетерминизмом. Далее я показываю, как такая Вселенная может возникнуть и быть совместимой с субъективным опытом свободы воли.
Читать далееLiyang: /* Location */ → Template:Location
Location: → Template:Location
← Older revision Revision as of 22:09, 24 May 2023 Line 11: Line 11: '''''' Status Update (2023-05-11): London hackspace has recently secured an interim location at the The Republic of Park Royal, see location below (the lease at our previous long-term home in Ujima house ended in Dec 2022). We are currently in the process of extracting our equipment from storage and setting up, and are '''not yet open for general access''' - please keep in touch via our [https://discord.com/channels/943237246092447794/943237246092447797| Discord Guild] for announcements.Status Update (2023-05-11): London hackspace has recently secured an interim location at the The Republic of Park Royal,...How to connect an ESP32 to a free Wifi behind a Captive Portal?
Connecting an ESP32 board to a public Wi-Fi network with a captive portal that requires user interaction can be a bit tricky. Your ESP32 does not have any user-driven interaction possibilities and each captive portal offers different steps for users to consent. Sometimes its a single page with terms of use and a simple accpet button but it could also be a completely different flow.
Nevertheless, here’s one approach that might work:
Connect to the Wi-Fi network using the ESP32’s built-in Wi-Fi capabilities. You can use the following code to do this:import network ssid = 'YOUR_WIFI_SSID' wifi = network.WLAN(network.STA_IF) wifi.active(True) wifi.connect(ssid)Once you’re connected to the...
Разработка BIOS на языках высокого уровня
Ничего лишнего: материнская плата, видеокарта и ROM-BIOS
Меня давно волнует вопрос, как подступиться к разработке на голом железе, на чистом си. Хотелось понять, каким же образом идёт запуск BIOS, u-boot, grub и прочих первичных загрузчиков. Ведь необходимо перейти от ассемблера к тёплому ламповому си и соблюсти условие, собрать всё это в линукс любимым компилятором gcc.
Хотя я и имею достаточный опыт BareMetal-разработки, тем не менее, всё это были чужие проекты со своим кодом. А мне хотелось понять, как начать свой проект с чистого листа, когда есть только чистая железка и идея. Толковых статей как подступится к этой задаче достаточно мало, при этом...
GNUnet 0.19.4
GNUnet 0.19.4
This is a bugfix release for gnunet 0.19.3. Special thanks goes out to ulfvonbelow who provided an array of patches. This is not an April Fool's joke.
Download links gnunet-0.19.4.tar.gz ( signature )The GPG key...
OpenTelemetry: How to Observe a Dockerized Python Service in Google Cloud
Over the last couple of years, OpenTelemetry became the de-facto instrumentation standard for collecting and observing distributed service trace information.
OpenTelemetry allows users to add standardized instrumentation code within their applications with the purpose of observing traces, metrics, logs and events independent of service implementation technologies and across all the major cloud vendors.
Within this post, we will implement a simple Python service and instrument it with OpenTelemetry.
We will then ship the Python service as a Docker image, deploy it within Google cloud and finally collect distributed trace data by using OpenTelemetry within Dynatrace.
This blog post will give you an end-to-end example...