Browse Source

Initial commit: Readme and notebook

Achilleas Koutsou 5 years ago
commit
f3d2e2e6de
2 changed files with 98 additions and 0 deletions
  1. 95 0
      Go-CNS-talk-2018.ipynb
  2. 3 0
      README.md

+ 95 - 0
Go-CNS-talk-2018.ipynb

@@ -0,0 +1,95 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "slideshow": {
+     "slide_type": "slide"
+    }
+   },
+   "source": [
+    "# Go for science!"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Hello, Gophers\n"
+     ]
+    }
+   ],
+   "source": [
+    "import \"fmt\"\n",
+    "n, err := fmt.Println(\"Hello, Gophers\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "slideshow": {
+     "slide_type": "slide"
+    }
+   },
+   "source": [
+    "## Features\n",
+    "\n",
+    "- Statically typed\n",
+    "- Compiled\n",
+    "- Quick and easy cross-compilation (Windows, Darwin, Linux, x86, ARM)\n",
+    "- Garbage collection\n",
+    "- Memory safe\n",
+    "- Built-in concurrency\n",
+    "- Fast compiler, fast runtime\n",
+    "\n",
+    ">     \"Like C, but sane\"\n",
+    "                           Achilleas Koutsou, 2018"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "slideshow": {
+     "slide_type": "slide"
+    }
+   },
+   "source": [
+    "## Why it's *cool*\n",
+    "\n",
+    "- Fast growing (both community and ecosystem)\n",
+    "- "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "celltoolbar": "Slideshow",
+  "kernelspec": {
+   "display_name": "Go",
+   "language": "go",
+   "name": "gophernotes"
+  },
+  "language_info": {
+   "codemirror_mode": "",
+   "file_extension": ".go",
+   "mimetype": "",
+   "name": "go",
+   "nbconvert_exporter": "",
+   "pygments_lexer": "",
+   "version": "go1.11.1"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}

+ 3 - 0
README.md

@@ -0,0 +1,3 @@
+# Go CNS Talk 2018
+
+Slides, images, and scripts for the CNS seminar talk on 15 Oct, 2018.