Skip to content

Instantly share code, notes, and snippets.

View cyan198's full-sized avatar
🏠
Working from home

Alfvin Ridwanto cyan198

🏠
Working from home
View GitHub Profile
@cyan198
cyan198 / semver-pipeline.yml
Last active July 15, 2019 14:30
Azure pipeline Yaml definition to generate semantic version for dotnet project and save it to var group for other other pipelines use
trigger:
- master
jobs:
- job: determine_ver
pool:
# vmImage: 'Ubuntu-16.04'
vmImage: 'windows-2019'
steps:
@cyan198
cyan198 / aspnetcore-odbc-hana-driver.dockerfile
Created July 15, 2019 10:26
Dockerfile for Aspnetcore with odbc and SAP Hana driver
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 AS runtime
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
unixodbc unixodbc-dev \
&& rm -rf /var/lib/apt/lists/*
COPY ./libodbcHDB.so ./app/hana/
COPY ./odbc.ini /etc/
@cyan198
cyan198 / Readme.MD
Last active November 3, 2022 12:14
Setup WiFi with snap on Ubuntu Core

Connect to WiFi on Ubuntu Core using Snap

It was done on the following environment:

  • Raspberry Pi 3 Model B
  • OS: Ubuntu Core
  • Pi is connected to internet via Ethernet

Here are the overview of the steps: