- Updated new player guide: https://www.youtube.com/watch?v=HWI1c2c4WX8
- Make sure you have working voice coms on at least on Discord (ingame VOIP is not always reliable)
- Cities and other landing zones have signs with directions and basic maps, look around and pay attention to the signs. (3.23+ also minimap, however paying attention to signs etc will be immensely helpful in locations that do not have a minimap available)
- If you can't get a guide via the official system just tell in server chat that you're new and ask if someone could show you around, there probably is someone.
- Turret gunner cheat sheet: https://robertsspaceindustries.com/spectrum/community/SC/forum/3/thread/guide-turret-gunner-cheatsheet
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
""" | |
SHT40, SHT41, SHT43, SHT45 | |
MicroPython driver for micro:bit | |
https://www.fredscave.com/drivers/008-sht4x.html | |
AUTHOR: fredscave.com | |
DATE : 2024/10 | |
VERSION : 1.00 | |
Converted to asyncio by [email protected] on 2025-03-07 |
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
""" | |
Hash the STM32 UID, Python version | |
Original C code from from https://pcbartists.com/firmware/stm32-firmware/generating-32-bit-stm32-unique-id/ | |
""" | |
import pyb | |
import struct | |
# Magic numbers for 32-bit hashing, copied from Murmur3 | |
C1 = 0xcc9e2d51 |
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
from pathlib import Path | |
import ast | |
import pprint | |
import sys | |
if len(sys.argv) < 2: | |
print("Enter filename: ", end=None) | |
pname = Path(input()) | |
else: | |
pname = Path(sys.argv[1]) |
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
from concurrent.futures import ProcessPoolExecutor | |
import time | |
import random | |
def long_task(sleeptime): | |
print("Sleeping {}".format(sleeptime)) | |
time.sleep(sleeptime) | |
if sleeptime < 1: | |
return [] | |
if random.random() > 0.7: |
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
rambombp2015-674:Downloads rambo$ python2.7 rec_test.py | |
level is 0 | |
level is 1 | |
level is 2 | |
level is 3 | |
level is 4 | |
level is 5 | |
level is 6 | |
level is 7 | |
level is 8 |
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
// gcc -Wall void_ptr.c -o void_ptr ; ./void_ptr | |
#include <stdio.h> | |
#include <stdint.h> | |
void muck_count(void* param) | |
{ | |
uint8_t *foo = (uint8_t*)param; | |
printf("foo %u\n", *foo); | |
*foo = 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
import time | |
from WSDiscovery import WSDiscovery, QName | |
from onvif import ONVIFCamera, ONVIFError | |
import urllib.parse | |
ONVIF_TYPE_NVT = QName('http://www.onvif.org/ver10/network/wsdl', 'NetworkVideoTransmitter') | |
try_auth = [ | |
('admin', ''), | |
('admin', 'ms1234'), | |
] |
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
class Spuce < Formula | |
desc "A C++ library for DSP filters" | |
homepage "http://pyspuc.com" | |
head "https://github.com/audiofilter/spuce.git" | |
url "https://github.com/audiofilter/spuce/archive/0.4.3.tar.gz" | |
version "0.4.3" | |
sha256 "5688e107b57640ba0485790d64eb16bff855f54f6fa5b2fdab568ee91f6dc687" | |
depends_on "cmake" => :build | |
depends_on :python |
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 --git a/CMakeLists.txt b/CMakeLists.txt | |
index 1e61faf..062914d 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -166,7 +166,7 @@ if(VSXU_DEBUG) | |
add_definitions( | |
-g | |
-Wall | |
- -mtune=nocona | |
+ -march=armv8-a |
NewerOlder