-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (87 loc) · 3.15 KB
/
index.html
File metadata and controls
87 lines (87 loc) · 3.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link rel='stylesheet' href='normalize.css' />
<link rel='stylesheet' href='style.css' />
<title>Ix Technology Corporation</title>
</head>
<body>
<header>
<h1>
<img src='logo.png' alt='Logo' width='40' />
<span>Ix Technology Corporation</span>
</h1>
<nav>
<a href='#about'>About</a>
<a href='#contact'>Contact</a>
<a href='https://github.com/ixtechnology'>Projects</a>
</nav>
<p>
A firm developing the future of computing: reconfigurable
hardware, hyperorthogonal data structures, and functional
web programming.
</p>
</header>
<main>
<article id='about'>
<h2>About</h2>
<p>
We are currently working on three experimental projects:
<a href='https://github.com/ixtechnology/prc'>
pervasively reconfigurable computing</a>,
<a href='https://github.com/ixtechnology/cots'>
zz-structured data applications</a>,
and our robust open-source laptop:
<a href='https://github.com/ixtechnology/cots'>COTS MBC</a>.
These projects draw on influences from artificial intelligence
research to paraconsistent logic.
</p>
<p>
Our firm is also in the business of developing merchantable
applications. Specifically, we're focused on the web.
Functional programming furnishes us with excellent tools
for this task, allowing us to build reliable, robust, scalable,
and high-uptime software targeting myriad devices.
</p>
<h2>Our Team</h2>
<p>
Ix Technology was founded in Bloomington, Indiana by
<a href="https://github.com/jpt4">James Torre</a> and
<a href="https://github.com/nalck">Nathaniel Alcock</a>.
James leads scientific research and Nathaniel coordinates
technical development. We have a growing number of open-source
contributors including <a href="https://github.com/harporoeder">
Harpo Roeder</a>, <a href="https://github.com/gavwhela">
@gavwhela</a>, <a href="https://github.com/cafelumiere">
Michael McConnell</a>, and <a href="https://github.com/torchound">
Joseph E.S. Cieslik</a>.
</p>
</article>
<article id='contact'>
<h2>Contact Us</h2>
<p>
Our team is available for hire. We're frontend and backend web
developers, system administrators, and software engineers. We
can be reached at <a href='mailto:[email protected]'>
[email protected]</a>.
</p>
<p>
Ix Technology is committed to Open Source development and
collegiality. Feel free to peruse our ongoing projects on
<a href="https://github.com/ixtechnology">GitHub</a>. You
can join our discussions and get the latest news by subscribing
to our development <a href="mailto:[email protected]">mailing list
</a>.
</p>
</article>
</main>
<footer>
<a href="https://github.com/ixtechnology/noship/blob/master/LICENSE">
©
<script>document.write(new Date().getFullYear());</script>
Ix Technology Corporation
</a>
</footer>
</body>
</html>