Skip to content

Commit 7dcf924

Browse files
committed
Initial commit.
0 parents  commit 7dcf924

29 files changed

+7052
-0
lines changed

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
node_modules/
2+
tmp/
3+
npm-debug.log
4+
5+
### https://raw.github.com/github/gitignore/2664dad61f3fda7755acc70ceb5aac4b1e956981/Global/Vim.gitignore
6+
7+
# swap
8+
[._]*.s[a-w][a-z]
9+
[._]s[a-w][a-z]
10+
# session
11+
Session.vim
12+
# temporary
13+
.netrwhist
14+
*~
15+
# auto-generated tag files
16+
tags
17+
18+
19+
### https://raw.github.com/github/gitignore/2664dad61f3fda7755acc70ceb5aac4b1e956981/Elm.gitignore
20+
21+
# elm-package generated files
22+
elm-stuff
23+
# elm-repl generated files
24+
repl-temp-*
25+
26+
27+
### https://raw.github.com/github/gitignore/2664dad61f3fda7755acc70ceb5aac4b1e956981/Sass.gitignore
28+
29+
.sass-cache/
30+
*.css.map
31+
32+

.stylelintrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"rules": {
4+
"number-leading-zero": null,
5+
"at-rule-empty-line-before": null,
6+
"block-closing-brace-newline-after": null
7+
}
8+
}

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
arow.info

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 ARoW. Co., Ltd.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# arow-oss.github.io
2+
3+
ARoW Co., Ltd. official web page.

deploy.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#! /bin/bash
2+
3+
set -ue
4+
5+
git checkout src
6+
git push origin `git subtree split --prefix dist src`:master --force
+44
Loading

dist/5e848f6c300f3f5dabd56c27748d10f7.svg

+377
Loading

dist/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
goatass.info

dist/b1b836e279a9985f53ce17cf03cead23.svg

+189
Loading

dist/img/background.svg

+44
Loading

dist/img/logo.svg

+189
Loading

dist/img/main.svg

+377
Loading

dist/index-1f33f08e7ca3a43220bb.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index-1f33f08e7ca3a43220bb.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index-en.html

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>ARoW Co., Ltd.</title>
6+
<link rel=stylesheet href="css/normalize.css">
7+
<link rel=stylesheet href="css/custom.css">
8+
</head>
9+
<body style='margin:1em'>
10+
<header>
11+
<h1>ARoW Co., Ltd.</h1>
12+
<img src="img/logo.png" alt="ARoW">
13+
<div id="language">
14+
<a href="index.html">日本語</a>
15+
</div>
16+
</header>
17+
<div class="wrapper" style="float:left; padding-bottom:55px">
18+
<h2>What do we do?</h2>
19+
<ul>
20+
<li>business hacking</li>
21+
<li>developing systems that can continuously grow</li>
22+
<li>support for starting a venture business</li>
23+
</ul>
24+
<h2>CEO</h2>
25+
<ul>
26+
<li>Kadzuya OKAMOTO
27+
<li><a href="http://uzuz.jp">UZUZ Co.,Ltd</a> CTO</li>
28+
</ul>
29+
<h2>Contact</h2>
30+
<div id="email"></div>
31+
32+
<h2>Recruiting</h2>
33+
<div id="recruit">
34+
<dl>
35+
<dt>What will you do?</dt>
36+
<dd>
37+
<p>Haskell, front-end development, etc.</p>
38+
<div>
39+
<p>Let me know if there are any interesting technologies you want to use. I'll find a project where you can use them.</p>
40+
<ul>
41+
<li>Proof Assistant (Coq, Agda, Idris, etc.)</li>
42+
<li>React.js</li>
43+
<li>Elm</li>
44+
<li>Immutable Infrastructure</li>
45+
<li>other</li>
46+
</ul>
47+
</div>
48+
</dd>
49+
<dt>Location</dt>
50+
<dd>Shinjuku-ku, Tokyo OR remote</dd>
51+
<dt>Hours</dt>
52+
<dd>Flex (5 hours per day, no overtime)</dd>
53+
<dt>Schedule</dt>
54+
<dd>3 days per week / you will be given 15+ vacation days per year, so please take off whenever you want</dd>
55+
<dt>Yearly Salary</dt>
56+
<dd>
57+
252,000,000 yen (negotiable)
58+
<p>
59+
If you can speak Japanese fluently, we pay you extra 120,000 yen.
60+
</p>
61+
<p>
62+
If you can come to our office once a week, we pay you extra 360,000 yen.
63+
</p>
64+
</dd>
65+
<dt>Working on the side</dt>
66+
<dd>
67+
<p>As long as it's not fraud, any side-work will be permitted. You are even allowed to be a full-time worker at another company while being employed at ARoW.</p>
68+
<p>If desired, I will find freelance work for you as well.</p>
69+
</dd>
70+
</dl>
71+
</div>
72+
73+
<!-- bpush button -->
74+
<div id="push" style="bottom: -4px; position: fixed;">
75+
<div id="bpush_button" style="display: inline-block;"
76+
data-site="375"
77+
data-back="http://www.arow.info"
78+
data-image_src="./img/push-eng.png"
79+
data-width="266"
80+
data-height="40"
81+
data-link_target="_blank"
82+
>
83+
</div>
84+
<script>
85+
(function(d,s,ns){
86+
var ns = d.createElement(s);
87+
ns.async=1;ns.src="//bpush.net/connect/button.js";
88+
var s0=d.getElementsByTagName(s)[0];
89+
s0.parentNode.insertBefore(ns, s0);
90+
})(document,'script');
91+
</script>
92+
</div>
93+
94+
<!--Start of Tawk.to Script-->
95+
<script type="text/javascript">
96+
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
97+
(function(){
98+
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
99+
s1.async=true;
100+
s1.src='https://embed.tawk.to/54b7d6ce289aef4754422047/1a7k61mj7';
101+
s1.charset='UTF-8';
102+
s1.setAttribute('crossorigin','*');
103+
s0.parentNode.insertBefore(s1,s0);
104+
})();
105+
</script>
106+
<!--End of Tawk.to Script-->
107+
<!--Start of Email Generation-->
108+
<script async>
109+
window.onload = function(){
110+
var me = "okamoto";
111+
var domain = "arow." + "info";
112+
var at = "@";
113+
document.getElementById("email").innerHTML=me+at+domain;
114+
}
115+
</script>
116+
<!--End of Email Generation-->
117+
</div>
118+
<div style="float:right;position:relative">
119+
<img class="rabbit" width="30px" src="./img/rabbit.png" alt="ARoW rabbit" style="position: fixed; bottom: 12em; margin-right: -10px;" >
120+
</div>
121+
<script>
122+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
123+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
124+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
125+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
126+
127+
ga('create', 'UA-71777587-1', 'auto');
128+
ga('send', 'pageview');
129+
130+
</script>
131+
</body>
132+
</html>
133+

0 commit comments

Comments
 (0)