This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying I am +geoheil on my passcard. https://onename.com/geoheil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying I am +geoheil on my passcard. https://onename.com/geoheil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[11pt]{article} | |
\usepackage{fancyvrb} | |
\begin{document} | |
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | |
Duis autem vel eum iriure dolor in hendrerit in vulputate veli |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant up | |
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Box 'jimmidyson/centos-7.1' could not be found. Attempting to find and install... | |
default: Box Provider: virtualbox | |
default: Box Version: = 1.2.6 | |
==> default: Loading metadata for box 'jimmidyson/centos-7.1' | |
default: URL: https://atlas.hashicorp.com/jimmidyson/centos-7.1 | |
==> default: Adding box 'jimmidyson/centos-7.1' (v1.2.6) for provider: virtualbox | |
default: Downloading: https://atlas.hashicorp.com/jimmidyson/boxes/centos-7.1/versions/1.2.6/providers/virtualbox.box | |
==> default: Successfully added box 'jimmidyson/centos-7.1' (v1.2.6) for 'virtualbox'! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: concourse | |
director_uuid: <%= `bosh status --uuid` %> | |
releases: | |
- name: concourse | |
version: latest | |
- name: garden-linux | |
version: latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos7 | |
MAINTAINER Georg Heiler | |
# Install Nexus 3 Milestone 7. | |
ENV NEXUS_VERSION 3.0.0-m7 | |
ENV SONATYPE_WORK /sonatype-work | |
ENV JAVA_HOME /opt/java |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ComponentScan | |
@EnableAutoConfiguration | |
public class RebeatPrototype { | |
private static final Logger LOGGER = Logger.getLogger(RebeatPrototype.class); | |
public static void main(String[] args) { | |
LOGGER.info("INIT CONTEXT"); | |
// CREATE SPRING-CAMEL CONTEXT (PROPERTIES REPLACEMENT, AUTOLOADING COMPONENTS,...) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:7 | |
MAINTAINER Georg Heiler <[email protected]> | |
# Install Essentials | |
RUN yum update -y && \ | |
yum clean all | |
# Install Packages | |
RUN yum install -y git && \ | |
yum install -y wget && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM phusion/baseimage | |
MAINTAINER Georg Heiler | |
ENV NEXUS_DATA /nexus-data | |
ENV NEXUS_VERSION 3.0.0-03 | |
RUN \ | |
apt-get update; apt-get upgrade -y -qq; \ | |
apt-get install -y -qq wget; \ | |
apt-get install -y -qq curl; \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.spark.sql.{ Row, SQLContext } | |
import org.apache.spark.sql.expressions.Window | |
val sql = new org.apache.spark.sql.SQLContext(sc) | |
val dataset = Seq( | |
("Thin", "cell phone", 6000), | |
("Normal", "tablet", 1500), | |
("Mini", "tablet", 5500), | |
("Ultra thin", "cell phone", 5000), | |
("Very thin", "cell phone", 6000), |
OlderNewer