-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (68 loc) · 4.11 KB
/
index.html
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
<!doctype html>
<html>
<head>
<title>Skyscreamer - Open source frameworks for high-performance applications</title>
<meta name="description" content="An open source collaborative dedicated to building frameworks that encapsulate the best practices of high-performance applications, founded by three software engineers with a combined 50 years of professional programming experience." />
<meta name="keywords" content="open source,high performance libraries,java open source,spring open source,java,spring,carter page,corby page,solomon duskis" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="css/style.css" rel="stylesheet"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31549021-1']);
_gaq.push(['_setDomainName', 'skyscreamer.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<header>
<h1>Skyscreamer Open Source</h1>
</header>
<nav>
<ul>
<li><a class="intro" href="./">Introduction</a></li>
<li><a class="blog" href="http://blog.skyscreamer.org">Our Blog</a></li>
<li><a class="yoga" href="http://yoga.skyscreamer.org">Yoga</a></li>
<li><a class="jsonassert" href="http://jsonassert.skyscreamer.org">JSONassert</a></li>
<li><a class="nevado" href="http://nevado.skyscreamer.org">Nevado JMS</a></li>
<li><a class="contrib" href="https://github.com/skyscreamer/"> </a></li>
</ul>
</nav>
<section>
<a name="intro"></a>
<h2>Introduction</h2>
<p>Skyscreamer is an open-source collaborative dedicated to building frameworks for high-performance real-world
applications. Anyone with a passion for software is welcome to contribute!</p>
<h2>Current Projects</h2>
<p><a href="http://yoga.skyscreamer.org">Yoga</a> is a Java-based REST resource query framework. It allows you to
add the kind of sophisticated data selectors used by LinkedIn and Google in their API's to an existing JAX-RS or
Spring MVC REST server in minutes.</p>
<p><br/><a href="http://jsonassert.skyscreamer.org">JSONassert</a> extends JUnit to write powerful JSON unit tests
in very little code. It is a project we built to support Yoga, but it has become popular in its own right for
regressing REST interfaces.</p>
<p><br/><a href="http://nevado.skyscreamer.org">Nevado JMS</a> is a JMS driver for Amazon's queue service.
It allows AWS-based applications to leverage SQS with less custom code, and loose coupling to avoid lock-in.
Over 80% of the JMS spec is supported, including queues, topics, transactions, and TTLs.</p>
<h2>Who We Are</h2>
<div id="carter" class="profile"><img src="i/carter.jpg" align="left" height="100" /> Carter Page is a Technical Lead / Manager at Google.
He loves programming and giving back to the technical community.</div>
<div id="corby" class="profile"><img src="i/corby.jpg" align="right" height="100" /> Corby Page is the founder of ASP Methods and has been programming
for the media, energy, and finance worlds for over 20 years.</div>
<div id="solomon" class="profile"><img src="i/solomon.jpg" align="left" height="100" /> Solomon Duskis is the founder of Agile Developments in NYC.
He has been dedicated to the open source community for years as an author, speaker, and contributor.</div>
</section>
<section>
<a name="contact"></a>
<h2>Contact</h2>
<p>
This is open source so if you want to help out whether by submitting code, design, suggestions, feedback,
or feature requests, we appreciate whatever you can contribute. Contact us at
<a href="mailto:[email protected]">[email protected]</a> with questions or ideas.
</p>
</section>
</body>
</html>