Skip to content

Instantly share code, notes, and snippets.

View xdedss's full-sized avatar
🚀
Flying to Mars

LZR xdedss

🚀
Flying to Mars
View GitHub Profile
@xdedss
xdedss / aircon.lircd.conf
Last active October 11, 2022 14:35
美的空调遥控器lirc配置文件
begin remote
name aircon
flags RAW_CODES
eps 30
aeps 100
gap 19991
begin raw_codes
@xdedss
xdedss / controller.py
Last active February 5, 2021 09:49
krpc tutorial 03
import krpc
from math import sin, cos, pi
import time
conn = krpc.connect(name='controller')
space_center = conn.space_center # SpaceCenter对象
vessel = space_center.active_vessel # 当前载具
body = vessel.orbit.body # 当前载具所处的天体
@xdedss
xdedss / TimeoutAction.cs
Last active February 15, 2024 08:17
An attempt to run actions with timeout in C#
using System;
using System.Threading;
public class TimeoutAction
{
private Thread timerThread;
private Thread mainThread;
private AutoResetEvent timerStartEvent = new AutoResetEvent(false);
private AutoResetEvent timerPreparedEvent = new AutoResetEvent(false);