These are are some notes I put together on butchering the rectangular dishy cable.
FOLLOW THESE GUIDELINES AT YOUR OWN RISK. I TAKE NO RESPONSIBILITY FOR ANY DAMAGE OR INJURY YOU SUSTAIN FROM FOLLOWING OR NOT FOLLOWING THESE GUIDELINES.
#!/bin/bash | |
# author: Miles Benton | |
# created: 31st Aug 2021 | |
# modified: 31st Aug 2021 | |
# | |
# Notes: | |
# small bash script that automates installing and setting up ONT minknow and GPU | |
# guppy for live basecalling and GPU processing of nanopore data on Ubuntu 21.04 | |
# based releases. | |
# |
// https://stackoverflow.com/questions/52518298/how-to-create-a-script-mapper-in-keycloak | |
// https://stackoverflow.com/questions/48199539/best-way-to-test-debug-javascript-mappers-policies-in-keycloak | |
// https://docs.oracle.com/javase/10/nashorn/nashorn-java-api.htm#JSNUG119 | |
var client = keycloakSession.getContext().getClient(); | |
var forEach = Array.prototype.forEach; | |
// print(user.getRealmRoleMappings()); | |
var isAdmin = false; |
Author: Mark Jessop (VK5QI) [email protected]
This guide provides information on how to capture FFT data using the strf toolset, process it to look for satellite signals, and finally compare their doppler shift against TLEs from the SpaceTrack database. This can help with resolving the 'TLE lottery' after new launches, or cataloguing transmissions from spacecraft already in orbit.
It should be noted that the analysis described in this document is but a small subset of what the strf tools are capable of! Scott Tilley has a post describing some of the history behind strf and giving a crash course on the relationship between orbital dynamics and the doppler effect here: https://skyriddles.wordpress.com/2019/01/04/basic-orbital-dynamics/
The target platform is Debian-based distributions (e.g. Debian, Raspbian, Ubuntu), but should be applicable to other Linux-based platforms. The data processing software (rfplot and rffit) is also k
import os | |
from solid import * | |
from PIL import Image | |
def assembly(annotation=""): | |
a = import_stl("base.stl") + translate([5, -37, 10])( | |
linear_extrude(height=2, convexity=4)( | |
text(annotation, |
## Stop all OSDs | |
## Set OSD nodown | |
ceph osd set nodown | |
##Set OSD nobackfill | |
ceph osd set nobackfill | |
--- | |
version: '3' | |
services: | |
elasticsearch: | |
image: elasticsearch:5 | |
kibana: | |
image: kibana:5 | |
ports: | |
- "5601:5601" | |
logstash: |
#!/usr/bin/env python2 | |
""" | |
Author: takeshix <[email protected]> | |
PoC code for CVE-2014-0160. Original PoC by Jared Stafford ([email protected]). | |
Supportes all versions of TLS and has STARTTLS support for SMTP,POP3,IMAP,FTP and XMPP. | |
""" | |
import sys,struct,socket | |
from argparse import ArgumentParser |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!