This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Simple Intel x520 EEPROM patcher | |
| # Modifies the EEPROM to unlock the card for non-intel branded SFP modules. | |
| # | |
| # Copyright 2024 Ivan Vatlin <me@jeffangelion.ru> | |
| # | |
| # Licensed under the GPLv3 | |
| # | |
| # Based on research described at https://forums.servethehome.com/index.php?threads/patching-intel-x520-eeprom-to-unlock-all-sfp-transceivers.24634/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # | |
| # Simple Intel x520 EEPROM patcher | |
| # Modifies the EEPROM to unlock the card for non-intel branded SFP modules. | |
| # | |
| # Copyright 2020,2021,2022 Andreas Thienemann <andreas@bawue.net> | |
| # | |
| # Licensed under the GPLv3 | |
| # | |
| # Based on research described at https://forums.servethehome.com/index.php?threads/patching-intel-x520-eeprom-to-unlock-all-sfp-transceivers.24634/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://github.com/telegramdesktop/tdesktop/blob/2ef8136308e31e07988ee4654b73ae2a5ab495dc/Telegram/SourceFiles/ui/empty_userpic.cpp#L257 | |
| // https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/SourceFiles/ui/chat/chat_style.cpp#L1033 | |
| struct Color { | |
| red u8 | |
| green u8 | |
| blue u8 | |
| } | |
| fn (c Color) str() string { |
Верно! Это был легкий вопрос, куп... эм... Все, больше не могу! Купо-купо-купо! Итак, третий вопрос, купо! Помнишь "Золотое блюдце" из Final Fantasy VII? Какого из этих аттракционнов там не было?
Варианты ответов неизвестны, дополнить позже
Да! Скажи, там можно было играть часами! Всё, последний вопрос, купо! На сей раз - по Final Fantasy VIII. Помнишь историю Лагуны? Какую из перечисленных фраз он НЕ произносит во время битвы в кратере?
"Мне нужно в туалееет!"
"У меня пятки чееешутся!"
"У меня нос чееешется!"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Rough RIFF signature | |
| 0 string RIFF riff, | |
| >4 lelong+4 >0 size: %d | |
| >4 lelong+4 >0 {size: %d} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *** Pre-CBMEM romstage console overflowed, log truncated! *** | |
| [DEBUG] Selected CAS latency : 9T | |
| [DEBUG] MPLL busy... done in 10 us | |
| [DEBUG] MPLL frequency is set at : 666 MHz | |
| [DEBUG] Selected CWL latency : 7T | |
| [DEBUG] Selected tRCD : 9T | |
| [DEBUG] Selected tRP : 9T | |
| [DEBUG] Selected tRAS : 24T | |
| [DEBUG] Selected tWR : 10T |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Copyright 2008 Carl-Daniel Hailfinger | |
| # Small fixes by Ivan Vatlin (C) 2021 | |
| # Original script: http://www.coreboot.org/pipermail/coreboot/attachments/20140530/245547f8/attachment.sh | |
| # Link was taken from this article: https://www.coreboot.org/EHCI_Debug_Port | |
| LANG=C | |
| dmesgfile=$1 | |
| debug_lspci_devs=$(lspci -nvvD | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <cstring> | |
| #include <cmath> | |
| /* This function converts char array (little endian) to integer | |
| * For example: {0xCA, 0xFE, 0xBA, 0xBE} -> 0xBEBAFECA -> 3199925962 | |
| * I'm a bad programmer, so here is workaround: | |
| * You need to specify length of char array by second function argument | |
| * Kill me :( | |
| */ | |
| int hex_to_dec (const unsigned char input[], const unsigned int count) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| :root { | |
| --bg-color: #261A60; | |
| --font-color: #9C93C6; | |
| --base-color: #613A2F; /* Chocolate: #613A2F */ | |
| --left-color: #8A5448; /* Light Chocolate: #8A5448 */ | |
| --right-color: #482E28; /* Dark Chocolate: #482E28 */ |
NewerOlder