You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by lr...@apache.org on 2016/05/27 23:34:04 UTC

[21/48] bahir-website git commit: Move site into subdirectory; add README, README.md, HOWTO.md

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/97bba539/site/css/main.scss
----------------------------------------------------------------------
diff --git a/site/css/main.scss b/site/css/main.scss
new file mode 100644
index 0000000..f2e566e
--- /dev/null
+++ b/site/css/main.scss
@@ -0,0 +1,53 @@
+---
+# Only the main Sass file needs front matter (the dashes are enough)
+---
+@charset "utf-8";
+
+
+
+// Our variables
+$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+$base-font-size:   16px;
+$base-font-weight: 400;
+$small-font-size:  $base-font-size * 0.875;
+$base-line-height: 1.5;
+
+$spacing-unit:     30px;
+
+$text-color:       #111;
+$background-color: #fdfdfd;
+$brand-color:      #2a7ae2;
+
+$grey-color:       #828282;
+$grey-color-light: lighten($grey-color, 40%);
+$grey-color-dark:  darken($grey-color, 25%);
+
+// Width of the content area
+$content-width:    800px;
+
+$on-palm:          600px;
+$on-laptop:        800px;
+
+
+
+// Use media queries like this:
+// @include media-query($on-palm) {
+//     .wrapper {
+//         padding-right: $spacing-unit / 2;
+//         padding-left: $spacing-unit / 2;
+//     }
+// }
+@mixin media-query($device) {
+    @media screen and (max-width: $device) {
+        @content;
+    }
+}
+
+
+
+// Import partials from `sass_dir` (defaults to `_sass`)
+@import
+        "base",
+        "layout",
+        "syntax-highlighting"
+;

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/97bba539/site/feed.xml
----------------------------------------------------------------------
diff --git a/site/feed.xml b/site/feed.xml
new file mode 100644
index 0000000..a6628bd
--- /dev/null
+++ b/site/feed.xml
@@ -0,0 +1,30 @@
+---
+layout: null
+---
+<?xml version="1.0" encoding="UTF-8"?>
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+  <channel>
+    <title>{{ site.title | xml_escape }}</title>
+    <description>{{ site.description | xml_escape }}</description>
+    <link>{{ site.url }}{{ site.baseurl }}/</link>
+    <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
+    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
+    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
+    <generator>Jekyll v{{ jekyll.version }}</generator>
+    {% for post in site.posts limit:10 %}
+      <item>
+        <title>{{ post.title | xml_escape }}</title>
+        <description>{{ post.content | xml_escape }}</description>
+        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
+        <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
+        <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
+        {% for tag in post.tags %}
+        <category>{{ tag | xml_escape }}</category>
+        {% endfor %}
+        {% for cat in post.categories %}
+        <category>{{ cat | xml_escape }}</category>
+        {% endfor %}
+      </item>
+    {% endfor %}
+  </channel>
+</rss>

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/97bba539/site/index.md
----------------------------------------------------------------------
diff --git a/site/index.md b/site/index.md
new file mode 100644
index 0000000..4b58d66
--- /dev/null
+++ b/site/index.md
@@ -0,0 +1,19 @@
+---
+layout: page
+title: Home
+tagline: Apache Project !
+---
+
+{% include JB/setup %}
+
+## Apache SystemML
+
+SystemML provides declarative large-scale machine learning (ML) that aims at flexible specification 
+of ML algorithms and automatic generation of hybrid runtime plans ranging from single node, 
+in-memory computations, to distributed computations on Apache Hadoop and  Apache Spark. 
+ML algorithms are expressed in a R or Python syntax, that includes linear algebra primitives, statistical functions, 
+and ML-specific constructs. This high-level language significantly increases the productivity of data scientists 
+as it provides (1) full flexibility in expressing custom analytics, and (2) data independence from the underlying 
+input formats and physical data representations. Automatic optimization according to data characteristics such as 
+distribution on the disk file system, and sparsity as well as processing characteristics in the distributed environment 
+like number of nodes, CPU, memory per node, ensures both efficiency and scalability.