Skip to content

Instantly share code, notes, and snippets.

View ossistyle's full-sized avatar
💭
I may be slow to respond.

Thomas Hoffmann ossistyle

💭
I may be slow to respond.
View GitHub Profile
@ossistyle
ossistyle / en.txt
Created April 4, 2025 08:09 — forked from up1/en.txt
Robotframework :: multiple language
*** Variables ***
${HELLO} Hello
@ossistyle
ossistyle / gitlab-ssh-config.md
Created April 4, 2025 07:30 — forked from projected1/gitlab-ssh-config.md
GitLab SSH Configuration.

GitLab SSH Config

This tutorial will help you to configure your GitLab SSH keys. Once configured, you should be able to clone repositories, push your changes and submit your pull requests to GitLab repositories via SSH.

Unless otherwise noted, all instructions are for the Window environment. If you are looking for instructions for Linux or MAC OS, please consult the official documentation instead.

Generating a New SSH Key

If not already installed, install Git for Windows.

@ossistyle
ossistyle / export_vscode_extesions.md
Created October 30, 2024 10:44 — forked from joseluisq/export_vscode_extesions.md
How to export your VS Code extensions from terminal

How to export your VS Code extensions from terminal

Note: Unix-like systems only.

  1. Export your extensions to a shell file:
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh
@ossistyle
ossistyle / github_desktop_ubuntu.md
Created October 28, 2024 10:14 — forked from berkorbay/github_desktop_ubuntu.md
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

# Bash best practices and style-guide
Just simple methods to keep the code clean.
Inspired by [progrium/bashstyle](https://github.com/progrium/bashstyle) and [Kfir Lavi post](http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming/).
## Quick big rules
* All code goes in a function
* Always double quote variables
@ossistyle
ossistyle / aliases.zsh
Created October 24, 2024 10:06 — forked from Pelielo/aliases.zsh
Custom aliases for ZSH
# CUSTOM ALIASES FOR ZSH
#
# Add these lines to ~/.zshrc:
# wget -q -O $HOME/.oh-my-zsh/custom/aliases.zsh https://gist.githubusercontent.com/Pelielo/26eef84fc93bc4d228d78f7992c145f1/raw/
# source $HOME/.oh-my-zsh/custom/aliases.zsh
# zshrc
alias zs="source ~/.zshrc"
alias zc="vim ~/.zshrc"
@ossistyle
ossistyle / example.yml
Created October 17, 2024 18:41 — forked from cecilemuller/example.yml
Run Docker Compose + in Github Action
name: Test
on:
push:
branches:
- main
- features/**
- dependabot/**
pull_request:
branches:
@ossistyle
ossistyle / Dockerfile
Created October 14, 2024 14:34 — forked from yogeek/Dockerfile
Gosu usage in Docker
FROM ubuntu
RUN apt-get install ...
# grab gosu for easy step-down from root
ENV GOSU_VERSION 1.10
RUN set -x \
&& curl -sSLo /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
&& curl -sSLo /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
&& export GNUPGHOME="$(mktemp -d)" \
@ossistyle
ossistyle / download_image.js
Created November 6, 2020 09:54 — forked from codeorelse/download_image.js
Download image for Dynamic Video
function downloadAsset(assetUrl, renameTo, dataFolder)=> {
var defer = Promise.defer()
var download = new Download()
.get(assetUrl)
.rename(renameTo)
.dest(path.resolve(dataFolder)
download.run(function (err, files, stream) {
defer.resolve();
});
@ossistyle
ossistyle / css_resources.md
Last active August 29, 2015 14:11 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides