-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 3.1 KB
/
index.html
File metadata and controls
74 lines (67 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Quadrature Dev</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img class="logo" src="https://media.githubusercontent.com/media/QuadratureDev/quadraturedev.github.io/main/quadraturedev_logo_128.png" alt="Quadrature Dev Logo">
<h1>Quadrature Dev</h1>
<p>Research and Development for digital signal processing, machine learning, and data science applied to communications, radio astronomy, and spectrum agility</p>
</header>
<main>
<h2>Interests</h2>
<p>
Quadrature Dev is interested in the intersection of digital signal
processing and data science, especially applied to problems with
radio and wireless communications. We are interested in open source
and have experience with PyTorch, GNU Radio, and accelerated instruction
sets like SSE, AVX, NEON, and CUDA for GPUs.
</p>
<h2>Skills</h2>
<p>
Quadrature Dev has specialty in software development in C, C++, python, rust,
and julia. We have targetted specialized instruction sets including CUDA for NVIDIA
GPUs; SSE, AVX, AVX2, AVX512 for x86_64, NEON for ARM.
We're familiar working around low-probability of intercept and detection waveforms and
signal detectors including feature analysis and machine-learning methods. We have also
contributed to full software modems for various waveforms and are comfortable with profiling
tools for software optimization.
</p>
<h2>Services</h2>
<p>
Quadrature Dev is interested in developing software defined radios and novel
applications of radio processing that leverages GPUs. We're available for
contract development. Contact <span class="cont"></span>.
</p>
</main>
<!-- <section class="projects">
<h2>Projects</h2>
<p>Your projects content goes here.</p>
</section> -->
<section class="about-me">
<h2>About</h2>
<p>
Quadrature Dev is the contracting/consulting entity for Nathan West. I have worked on
projects for LPI/LPD signals analysis, machine learning and AI based spectrum awareness
and agility, custom software modems for standard waveforms as well as AI-native communications,
and search pipelines for doppler drifting signals in radio astronomy data for SETI.
I have contributed to open-source software as (former) maintainer of VOLK and contributed
to release management for GNU Radio. I am not currently accepting contract work, but have a set
of technical hobby projects I keep up on the side. If you have an interesting project and
want to discuss feel free to reach out to exchange ideas.
</p>
<img class="img-responsive" src="https://media.githubusercontent.com/media/QuadratureDev/quadraturedev.github.io/main/nathan.png" alt="Nathan West">
</section>
<span class="cont"></span>
<script>
var user = 'nathan';
var domain = 'quadrature';
var contElements = document.getElementsByClassName('cont');
for (element of contElements) {
element.innerHTML = '<a href="' + 'mail' + 'to:' + user + '@' + domain + '.dev' + '">' + user + ' (at) ' + domain + ' (dot) dev' + '</a>';
}
</script>
</body>
</html>