Skip to content

Instantly share code, notes, and snippets.

View tgotwig's full-sized avatar

♠️ Thomas Gotwig ♣️ tgotwig

  • Germany, Frankfurt am Main
  • 01:56 (UTC +02:00)
View GitHub Profile
@tgotwig
tgotwig / index.md
Last active December 7, 2021 10:17
⚔️ confluence-vs-nuclino

⚔️ Confluence vs Nuclino

🧙‍ How migrating from Confluence to Nuclino?

Should be able to import a page or space: import-from-confluence

  1. Import page doesn't work somehow: unsupported import format "doc".
    1. It looks like Confluence no longer allows exporting individual pages as .docx, the open and modern MS Word standard since 2007, but only .doc, a proprietary standard that is not supported by Nuclino. We'll investigate further and update our documentation. As an alternative, you should be able to copy/paste content from a Confluence page directly into Nuclino. Does that work?

  2. Import space doesn't work for me as well, can't find the option Space Settings → Content Tools in Confluence.
  3. > It looks like you do not have permissions to export that space, otherwise there would be a "Export space" option in the "Manage space" section. Can you please check the permissions?
@tgotwig
tgotwig / rust.md
Last active September 29, 2021 20:25
🦀 Rust Introduction
@tgotwig
tgotwig / .markdown
Last active April 16, 2021 12:05
🤖 CI overview with Github Actions

🤖 CI overview with Github Actions

Stands for Continous Integration and is something which helps you to keep up the integrity of your software by running tests when updates were made to find bugs as soon as possible (fast feedback loop):

Writing code and open a PR 👉 Let it Build 👉 Let it run Unittests and Linters

Integration-Tests and E2E-Tests are Continuous Delivery (CD) tests.

Best practices:

  • 🐹 Features should be as small as possible
@tgotwig
tgotwig / index.html
Last active December 5, 2017 22:59
Arrows (+tooltip)
<!DOCTYPE html>
<meta charset="utf-8">
<svg width="960" height="500"
></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/tippy.js@2.0.2/dist/tippy.all.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
@tgotwig
tgotwig / index.html
Last active December 6, 2017 21:45
Simple Barplot (+tooltip, random)
<!DOCTYPE html>
<meta charset="utf-8">
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
@tgotwig
tgotwig / index.html
Last active December 9, 2017 21:27
Syntenyplot (+tooltip)
<!DOCTYPE html>
<meta charset="utf-8">
<svg width="960" height="500"
></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/tippy.js@2.0.3/dist/tippy.all.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
@tgotwig
tgotwig / index.html
Last active December 5, 2017 22:11
Scatterplot (+linear regression, random)
<!DOCTYPE html>
<meta charset="utf-8">
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script>
;(function (d3, $) {