Skip to content

Commit e994c88

Browse files
committed
Initial commit
0 parents  commit e994c88

File tree

10 files changed

+301
-0
lines changed

10 files changed

+301
-0
lines changed

assets/Font-Awesome

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 5aacb03fa67b66b2e83844e3bdc9634af3d953f9

assets/arc.png

23 KB
Loading

assets/kartik.JPG

20.6 KB
Loading

assets/pg.jpg

33.9 KB
Loading

assets/sctb.jpg

16.6 KB
Loading

assets/style.css

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
body{
2+
font-family: 'Source Sans Pro', 'Lucida Grande', sans-serif;
3+
}
4+
a{
5+
6+
color: #0000ff;
7+
font-family: monospace;
8+
font-weight: bolder;
9+
}
10+
#bigsearch{
11+
width:80%;
12+
height: 3.125em;
13+
font-size: large;
14+
padding:.5%;
15+
}
16+
input:focus{
17+
border:1px solid black;
18+
color:black;
19+
background-color: #ffbb33;
20+
outline:0;
21+
}
22+
#container{width:80%;
23+
border:3px solid black;
24+
margin-left: auto;
25+
margin-right: auto;
26+
background-color: #f6f6ef;
27+
padding:3%;
28+
}
29+
.cell{
30+
width:30%;
31+
display: inline-block;
32+
border: 2px solid black;
33+
padding:1%;
34+
}
35+
footer{
36+
padding: 1%;
37+
border-top: 3px solid #ffbb33;
38+
margin-top: 1%;
39+
}
40+
nav>ul{list-style: none; padding: 1%; background-color: #ffbb33;}
41+
nav li{
42+
display:inline;
43+
border-right: 1px solid black;
44+
padding:1%;
45+
margin:1%;
46+
vertical-align: super;
47+
}
48+
nav a{
49+
color:black;
50+
text-decoration: none;
51+
}
52+
#brand{font-family: veranda}
53+
#instructions{
54+
width:75%;
55+
display: inline-block;
56+
57+
}
58+
#stoneSignature{
59+
width:20%;
60+
display:inline-block;
61+
border-left: 2px solid #ffbb33;
62+
padding:1%;
63+
}
64+
.avatar{
65+
display: inline-block;
66+
width: 40px;
67+
}
68+
.codebox{
69+
display:inline-block;
70+
background: none repeat scroll 0% 0% #444;
71+
color:#f3f3f3;
72+
font-family: monospace;
73+
font-weight: normal;
74+
padding:1%;
75+
}
76+
hr{
77+
border: 0;
78+
border-bottom: 1px dashed #ffbb33;
79+
80+
}
81+
82+
none repeat scroll 0% 0% #444
83+
Source Sans Pro','Lucida Grande',sans-serif

documentation.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="./assets/style.css">
4+
<link rel="stylesheet" href="./Font-Awesome/css/font-awesome.min.css">
5+
<meta charset="UTF-8">
6+
</head>
7+
<body>
8+
<div id="container">
9+
<nav>
10+
11+
<ul>
12+
<img src=./arc.png width='30px'>
13+
<li id="Brand"><a href='quarry.html'>quarry</li>
14+
<li><a href='./documentation.html'>Documentation</a></li>
15+
<li><a href='http://arclanguage.org/forum'>forum</a></li>
16+
<li><a href='http://github.com/quarry'>code</a></li>
17+
</ul>
18+
</nav>
19+
<div>
20+
<h1>Installation</h1>
21+
<p>quarry ships with arc</p>
22+
<div class="codebox">
23+
$ brew install arc
24+
</div>
25+
</div>
26+
<br>
27+
<h1>Usage</h1>
28+
<div class="codebox">
29+
30+
quarry info [stone]: get info about a stone or about the current project
31+
<br>
32+
quarry lay &lt;stone&gt;: download and install an arc package
33+
<br>
34+
quarry build: install all the packages necessary for a project as described in a package management file
35+
<br>
36+
quarry mason: add/create a new quarry user
37+
<br>
38+
quarry cut &lt;stone&gt;: publish a new quarry package
39+
<br>
40+
quarry get &lt;stone&gt;: download but don’t install a quarry package
41+
<br>
42+
quarry help: Print quarry usage/help page
43+
<br>
44+
quarry rm &lt;stone&gt;: remove a quarry package"
45+
</div>
46+
47+
<div>
48+
<h1>Read the Source Code</h1>
49+
<p> Quarry is open source and on github</p>
50+
<h1>Contribute</h1>
51+
<p> We'd love for you to contribue!!!</p>
52+
</div>
53+
<footer><i class="fa fa-2x fa-github-square"></i> <i class="fa fa-2x fa-facebook-square"></i> <i class="fa fa-2x fa-twitter-square"></i> © 2016 Hugues de Payns</footer>
54+
55+
</div>
56+
57+
</body>
58+
</html>

exampleStone.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="./style.css">
4+
<link rel="stylesheet" href="./font-awesome.min.css">
5+
<meta charset="UTF-8">
6+
</head>
7+
<body>
8+
<div id="container">
9+
<nav>
10+
11+
<ul>
12+
<img src=./arc.png width='30px'>
13+
<li id="Brand"><a href='quarry.html'>quarry</li>
14+
<li><a href='./documentation.html'>Documentation</a></li>
15+
<li><a href='http://arclanguage.org/forum'>forum</a></li>
16+
<li><a href='http://github.com/quarry'>code</a></li>
17+
</ul>
18+
</nav>
19+
<div id='instructions'>
20+
<div>
21+
<h1>arc-news</h1>
22+
<h3> Hacker News Style Forum.</h2>
23+
</div>
24+
<div class="codebox">
25+
<h3>Documentation </h3>
26+
<p>Installation
27+
<br>
28+
$ quarry lay arc-news
29+
</p>
30+
<br>
31+
Step 1. Do this
32+
<br>
33+
Step 2. Do that
34+
<br>
35+
Step 3. Do something else
36+
<br>
37+
Step 4. Submit a story, Get Upvotes, Enjoy Life
38+
</p>
39+
40+
</div>
41+
</div>
42+
43+
<div id="stoneSignature">
44+
<h3> Author</h3>
45+
<img src='pg.jpg', class='avatar'>
46+
<p>Paul Graham &lt;[email protected]&gt;</p>
47+
<hr>
48+
<h3> Contributors</h3>
49+
<img src='kartik.jpg', class='avatar'>
50+
<img src='pg.jpg', class='avatar'>
51+
<img src='sctb.jpg', class='avatar'>
52+
<hr>
53+
<h3> Repository </h3>
54+
<a href='github.com/arc-news/arc-news'>github.com/arc-news/arc-news</a>
55+
</div>
56+
57+
58+
<footer><i class="fa fa-2x fa-github-square"></i> <i class="fa fa-2x fa-facebook-square"></i> <i class="fa fa-2x fa-twitter-square"></i> © 2016 Hugues de Payns</footer>
59+
60+
</div>
61+
62+
</body>
63+
</html>

index.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="./assets/style.css">
4+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
5+
<meta charset="UTF-8">
6+
</head>
7+
<body>
8+
<div id="container">
9+
<nav>
10+
11+
<ul>
12+
<img src=./arc.png width='30px'>
13+
<li id="Brand"><a href='quarry.html'>quarry</a></li>
14+
<li><a href='./documentation.html'>Documentation</a></li>
15+
<li><a href='http://arclanguage.org/forum'>forum</a></li>
16+
<li><a href='http://github.com/quarry'>code</a></li>
17+
</ul>
18+
</nav>
19+
<div> <h1> quarry: </h1>
20+
<h2>The Arc-language Package Manager</h2></div>
21+
<div><form><input id="bigsearch"type="text" name="search" placeholder="Find a stone(quarry packages are called stones)"></input></form></div>
22+
<hr>
23+
<div>
24+
<div class='cell'> <h3> <i class="fa fa-cubes"></i> 40 Stones and Counting</h3></div>
25+
<div class='cell'> <h3> <i class="fa fa-line-chart"></i>400 Downloads and Counting</h3></div>
26+
<div class='cell'> <h3> <i class="fa fa-users"></i>15 Developers and Counting</h3></div>
27+
<div>
28+
<hr>
29+
<div>
30+
<h1>What is Arc? The Hundred Year Language</h1>
31+
<p>If we had the hundred-year language now, it would at least make a great pseudocode. What about using it to write software? Since the hundred-year language will need to generate fast code for some applications, presumably it could generate code efficient enough to run acceptably well on our hardware. We might have to give more optimization advice than users in a hundred years, but it still might be a net win.</p>
32+
33+
34+
35+
<p>Now we have two ideas that, if you combine them, suggest interesting possibilities: (1) the hundred-year language could, in principle, be designed today, and (2) such a language, if it existed, might be good to program in today. When you see these ideas laid out like that, it's hard not to think, why not try writing the hundred-year language now?</p>
36+
37+
<p>When you're working on language design, I think it is good to have such a target and to keep it consciously in mind. When you learn to drive, one of the principles they teach you is to align the car not by lining up the hood with the stripes painted on the road, but by aiming at some point in the distance. Even if all you care about is what happens in the next ten feet, this is the right answer. I think we can and should do the same thing with programming languages.</p>
38+
<hr>
39+
<h1>Contribute</h1>
40+
<p> The Arc Community is growing rapidly and you should totally join. You know, if you think you're up to it.</p>
41+
</div>
42+
<footer><i class="fa fa-2x fa-github-square"></i> <i class="fa fa-2x fa-facebook-square"></i> <i class="fa fa-2x fa-twitter-square"></i> © 2016 Hugues de Payns</footer>
43+
44+
</div>
45+
46+
</body>
47+
</html>

mason.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="./style.css">
4+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
5+
<meta charset="UTF-8">
6+
</head>
7+
<body>
8+
<div id="container">
9+
<nav>
10+
11+
<ul>
12+
<img src=./arc.png width='30px'>
13+
<li id="Brand"><a href='quarry.html'>quarry</li>
14+
<li><a href='./documentation.html'>Documentation</a></li>
15+
<li><a href='http://arclanguage.org/forum'>forum</a></li>
16+
<li><a href='http://github.com/quarry'>code</a></li>
17+
</ul>
18+
</nav>
19+
<div id='instructions'>
20+
<div>
21+
<h1>PG</h1>
22+
<p> Bug Fixer</p>
23+
<hr>
24+
</div>
25+
<div>
26+
<h3>3 Packages by pg </h3>
27+
28+
<p> <i class="fa fa-cube"></i> arc — The Hundred Year Language</p>
29+
<p> <i class="fa fa-cube"></i> arc-news — HackerNews Style Forum</p>
30+
<p> <i class="fa fa-cube"></i> hacker-news — Front Page of the Internet</p>
31+
32+
</div>
33+
</div>
34+
35+
<div id="stoneSignature">
36+
<img src='pg.jpg', >
37+
<p>Paul Graham <a>&lt;[email protected]&gt;</a></p>
38+
<a href='github.com/pg'>github.com/pg</a>
39+
<br>
40+
<a href='twitter.com/pg'>twitter.com/pg</a>
41+
</div>
42+
43+
44+
<footer><i class="fa fa-2x fa-github-square"></i> <i class="fa fa-2x fa-facebook-square"></i> <i class="fa fa-2x fa-twitter-square"></i> © 2016 Hugues de Payns</footer>
45+
46+
</div>
47+
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)