Skip to content

Instantly share code, notes, and snippets.

View n3phtys's full-sized avatar

Christopher Kaag n3phtys

  • Optica
  • Ludwigsburg, Germany
View GitHub Profile
@n3phtys
n3phtys / install-cervisia-server.bat
Last active January 5, 2018 20:08
Installs Cervisia-Server + Frontend (immediately runs it)
@echo off
echo Checking if you have git installed
echo Checking if you have nodejs + npm installed
echo Checking if you have angular-cli installed
echo Checking if you have rustup / rustc / cargo installed
REM start "" http://www.stackoverflow.com
echo Do you have git installed?
git --version >nul 2>&1 && (
@n3phtys
n3phtys / install-cervisia.sh
Created January 2, 2018 17:56
Installer for Cervisia-Server
#/usr/bin/sh
#have installed: git, rustup, nodejs + npm, angular-cli
rustup default nightly
git clone https://github.com/n3phtys/cervisia-server.git
git clone https://github.com/n3phtys/ng-cervisia.git
cp cervisia-server/src/SettingsDefault.toml ~/.cervisia-server/Settings.toml
cd ng-cervisia
npm install
ng build

Keybase proof

I hereby claim:

  • I am n3phtys on github.
  • I am n3phtys (https://keybase.io/n3phtys) on keybase.
  • I have a public key whose fingerprint is 2CEC CB64 75E4 CC14 5D9C 9CF9 9EB6 0B15 11CE E313

To claim this, I am signing this object:

@n3phtys
n3phtys / Timer.ts
Last active April 25, 2017 15:47
TypeScript / Angular Beispiel Snippets
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public title : string = 'this app works!';
private nummer : number = 0;