Skip to content

Instantly share code, notes, and snippets.

View tgotwig's full-sized avatar

♠️ Thomas Gotwig ♣️ tgotwig

  • Germany, Frankfurt am Main
  • 16:55 (UTC +02:00)
View GitHub Profile
@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
@mob-sakai
mob-sakai / _README.md
Last active February 20, 2024 00:29
Run shell script on gist

Run shell script on gist

Shells that support process substitution such as bash and zsh allow to run shell script on gist as follows.

# With curl:
bash <(curl -sL ${GIST_URL}) args...

# With wget:
@ruanbekker
ruanbekker / tree_style_tab_firefox.md
Created November 28, 2019 06:18
Hide Native Tabs with Tree Style Tabs for Firefox
@ericclemmons
ericclemmons / example.md
Last active April 24, 2024 18:09
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here