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
<command names="help">http://overviewer.org/irc/bot</command> | |
<command names="hesperus">https://github.com/agrif/hesperus</command> | |
<command names="dtt,dttguide"> | |
https://github.com/overviewer/Minecraft-Overviewer/wiki/DTT-Upgrade-Guide | |
</command> | |
<command names="quickstart,quickstartguide,guide"> | |
https://github.com/overviewer/Minecraft-Overviewer/wiki/Quick-Start-Guide | |
</command> | |
<command names="rmo,rmoguide"> | |
https://github.com/overviewer/Minecraft-Overviewer/wiki/Rendermode-Options-Guide |
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
diff -ur -x build -x prefix binutils-with-gold-2.44/bfd/opncls.c binutils-wasi/bfd/opncls.c | |
--- binutils-with-gold-2.44/bfd/opncls.c 2025-02-01 19:00:00.000000000 -0500 | |
+++ binutils-wasi/bfd/opncls.c 2025-05-15 08:13:04.975771488 -0400 | |
@@ -870,9 +870,9 @@ | |
which run tests with "ld [...] -o /dev/null". */ | |
&& S_ISREG(buf.st_mode)) | |
{ | |
- unsigned int mask = umask (0); | |
+ unsigned int mask = 022;/*umask (0);*/ | |
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
list(LENGTH SOURCES SOURCES_LENGTH) | |
math(EXPR SOURCES_LENGTH "${SOURCES_LENGTH} - 1") | |
foreach(I RANGE ${SOURCES_LENGTH}) | |
... | |
endforeach() |
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
def _calculate_params(self, platform): | |
key = (platform.family, platform.speed) | |
try: | |
info = self.PLL_INFO[key] | |
except KeyError: | |
raise NotImplementedError('PLL not implemented for {!r}'.format(key)) | |
fclkin = self.in_period.megahertz | |
params = None | |
diff = None |
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
00 <<< rx 1741722232.601 | |
1741722235.198 tx >>> 00 20 | |
1741722235.293 tx >>> 16 0b 0b 2c | |
1741722235.405 tx >>> 11 08 | |
01 <<< rx 1741722235.410 | |
1741722235.501 tx >>> 11 31 | |
31 31 <<< rx 1741722235.509 | |
1741722235.597 tx >>> 11 0a | |
00 00 <<< rx 1741722235.609 | |
1741722235.693 tx >>> 11 11 |
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
static DISPLAY_STATIC: StaticCell< | |
ssd1306::Ssd1306Async< | |
ssd1306::prelude::I2CInterface< | |
I2cDeviceWithConfig<NoopRawMutex, hal::i2c::I2c<'static, hal::mode::Async>>, | |
>, | |
ssd1306::size::DisplaySize128x64, | |
ssd1306::mode::BufferedGraphicsModeAsync<ssd1306::size::DisplaySize128x64>, | |
>, | |
> = StaticCell::new(); |
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
let msg = aprs::Packet::Message { | |
destination: "AD8IZ-7".parse().unwrap(), | |
text: "Hello, world!".into(), | |
number: None, | |
}; | |
let packet = ax25::Packet { | |
destination: "APZADZ".parse().unwrap(), | |
source: "AD8IZ-10".parse().unwrap(), | |
path: (&["WIDE1-1".parse().unwrap(), "WIDE2-1".parse().unwrap()] as &[_]) |
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
import hashlib | |
import os | |
import struct | |
class Sha1: | |
def __init__(self): | |
self.state = [ | |
0x67452301, | |
0xEFCDAB89, | |
0x98BADCFE, |
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
let eop = | |
frameshift::provider::CelestrakProvider::from_csv(std::fs::File::open("EOP-All.csv")?)?; | |
println!("J2000 = {}", frameshift::time::epoch::J2000.to_tai()); | |
println!("J2000 = {}", frameshift::time::epoch::J2000.to_tt()); | |
println!( | |
"J2000 = {}", | |
frameshift::time::epoch::J2000 | |
.to_tai() | |
.to_utc_with(&eop) |
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
fn main() -> anyhow::Result<()> { | |
let lines = vec![ | |
"ISS (ZARYA)", | |
"1 25544U 98067A 24285.74177330 .00036177 00000-0 64514-3 0 9990", | |
"2 25544 51.6390 98.0883 0008472 63.6655 27.1997 15.49693494476628", | |
]; | |
let home = satkit::ITRFCoord::from_geodetic_deg(0.0, 0.0, 268.9); | |
// parse TLE |
NewerOlder