See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
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
| POST / HTTP/1.1 | |
| Host: localhost | |
| User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 | |
| Next-Action: x | |
| Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Length: 459 | |
| ------WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Disposition: form-data; name="0" |
(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
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
| public static org.slf4j.Logger toSlf4j(final Logger logger) | |
| { | |
| return new org.slf4j.Logger() | |
| { | |
| @Override | |
| public String getName() | |
| { | |
| return logger.getName(); | |
| } |
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
| ; 8-bit Xor-Shift random number generator. | |
| ; Created by Patrik Rak in 2008 and revised in 2011/2012. | |
| ; See http://www.worldofspectrum.org/forums/showthread.php?t=23070 | |
| org 40000 | |
| call rnd ; BASIC driver | |
| ld c,a | |
| ld b,0 | |
| ret |