This file contains 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 CustomReporter = jasmine.CustomReporter; | |
import CustomReporterResult = jasmine.CustomReporterResult; | |
export class TraceReporter implements CustomReporter { | |
private traceResult = new Map<string, SpecResult[]>(); | |
specDone(result: CustomReporterResult) { | |
const tags = (result['metadata'] || {tags: []}).tags; | |
tags.forEach(tag => { | |
if (this.traceResult.has(tag)) { |
This file contains 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
[Desktop Entry] | |
Name=Franz | |
Comment=Multi-service messenger | |
Exec=/opt/Franz/Franz | |
Icon=franz | |
Terminal=false | |
Type=Application | |
Categories=Messaging,Internet |
This file contains 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
\setbeamerfont{title}{size=\Large,% | |
series=\bfseries} | |
\setbeamerfont{author}{size=\small} | |
\setbeamerfont{date}{size=\small} | |
\setbeamerfont{section title}{size=\Large,% | |
series=\bfseries} | |
\setbeamerfont{block title}{size=\normalsize,% | |
series=\bfseries} | |
\setbeamerfont{block title alerted}{size=\normalsize,% | |
series=\bfseries} |
This file contains 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
\usepackage{titlesec} | |
\usepackage{titling} | |
% Specify different font for section headings | |
\newfontfamily\headingfont[]{Roboto Bold} | |
\titleformat*{\section}{\LARGE\headingfont} | |
\titleformat*{\subsection}{\Large\headingfont} | |
\titleformat*{\subsubsection}{\large\headingfont} | |
\renewcommand{\maketitlehooka}{\headingfont} % font in \maketitle |
This file contains 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
const create = (val) => { | |
return (o: Observer<any>) => { | |
setTimeout(() => { | |
console.log(val); | |
o.next(val); | |
o.complete(); | |
}, 5000) | |
} | |
}; |
Follow those steps to install OpenProject on a fresh uberspace.
First we set-up all dependencies. We use ruby 2.2.5
and install gems in a user directory:
echo "gem: --user-install --no-rdoc --no-ri" > ~/.gemrc
cat <<'EOF' >> ~/.bash_profile
This file contains 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
npm install -D @types/node |
This file contains 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": "ee-19-3", | |
"version": "0.0.0", | |
"license": "MIT", | |
"angular-cli": {}, | |
"scripts": { | |
"start": "ng serve", | |
"lint": "tslint \"src/**/*.ts\"", | |
"test": "ng test", | |
"pree2e": "webdriver-manager update", |
NewerOlder