Skip to content

Instantly share code, notes, and snippets.

View KimmoHernborg's full-sized avatar

Kimmo Hernborg KimmoHernborg

View GitHub Profile
@KimmoHernborg
KimmoHernborg / expo-azure.yml
Created February 21, 2024 10:27 — forked from mrk-han/expo-azure.yml
Simple Guide for a Build and Testing Pipeline with Expo and EAS from Azure Devops CICD (Managed Workflow)
# https://aka.ms/yaml
trigger:
branches:
include:
- main
- releases/*
- hotfix/*
pr:
autoCancel: true
@KimmoHernborg
KimmoHernborg / Synology Drive Compatibility List Vendor Lock hack.md
Last active August 17, 2022 11:21
Synology Drive Compatibility List Vendor Lock hack

Source

Synology Drive Compatibility List Vendor Lock hack

I just thought I would include this from the linustechtips forums. User: Neonkoala posted on August 2nd, 2022.

Edit the file:
/etc.defaults/synoinfo.conf

Then find the option support_disk_compatibility and change it from yes to no

@KimmoHernborg
KimmoHernborg / traefik.sh
Created April 13, 2020 12:03 — forked from hjbotha/traefik.sh
wrapper script to daemonise traefik
#! /bin/bash
set -e
#set -x
ROOT=$(dirname $0)
cd $ROOT
# export your cloudflare API key by uncommenting or placing the following lines (uncommented) in traefik.conf
@KimmoHernborg
KimmoHernborg / nginx-tls.conf
Created February 4, 2019 14:15 — forked from gavinhungry/nginx-tls.conf
Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating
#
# Name: nginx-tls.conf
# Auth: Gavin Lloyd <gavinhungry@gmail.com>
# Desc: Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating
#
# Enables HTTP/2, PFS, HSTS and OCSP stapling. Configuration options not related
# to SSL/TLS are omitted here.
#
# Example: https://www.ssllabs.com/ssltest/analyze.html?d=gavinhungry.io
#
@KimmoHernborg
KimmoHernborg / HOWTODMG.md
Created April 26, 2016 15:08 — forked from jadeatucker/HOWTODMG.md
How to create a "DMG Installer" for Mac OS X

Creating a "DMG installer" for OS X

A DMG Installer is convenient way to provide end-users a simple way to install an application bundle. They are basically a folder with a shortcut to the Applications directory but they can be customized with icons, backgrounds, and layout properties. A DMG file (.dmg) is a Mac OS X Disk Image file and it is used to package files or folders providing compression, encryption, and read-only to the package.

##Creating the DMG file #Disk Utility