racerxdl / fastboot

0 лайк(-ов)
0 форк(-ов)
5 файл(-ов)
Последняя активность 1 month ago

Command:

$ fastboot oem partition help

Output:

(bootloader) usage: fastboot oem partition [options]
(bootloader)
(bootloader) options:

racerxdl / spacereset.py

0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
SpaceEngineers Torch DS restarter for cases where the MSCV debug window prevents it from auto restart. Should be run in the same machine (linux) as the DS
1 import asyncio
2 import time
3 import os, signal
4 import opengsq
5 from opengsq.responses.source import SourceInfo, GoldSourceInfo, Visibility
6
7
8 async def query(info):
9 host, port = str(info["host"]), int(str(info["port"]))
10 source = opengsq.Source(host, port, 15)

racerxdl / url.cpp

0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
C++ Implementation of golang URL package - I did that for a project, and I decided to save it here.
1 #pragma once
2
3 #include <algorithm>
4 #include <map>
5 #include <stdexcept>
6
7 #include "common/common.h"
8
9 // Based on Golang Implementation
10 // MIT

racerxdl / onelisten.go

0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
One program, to listen to all TCP ports. It actually doesnt listen, but sniff them. - Based on http://maycon.hacknroll.io/hacking-tricks/2019/11/05/trick-check-outgoing-ports.html
1 package main
2
3 import (
4 "fmt"
5 "github.com/google/gopacket"
6 "github.com/google/gopacket/layers"
7 "github.com/google/gopacket/pcap"
8 "time"
9 )
Новее Позже