Home
About
SK blog
Rapture in Everything
Posts tagged "automation"
2021 Apr 10
2021 Apr 10
Airtable and n8n: a great fit
How to use a one-off workflow in n8n to fix data in Airtable....
personal stack
tech
self-hosted
2019 Dec 30
2019 Dec 30
Getting Started with Github Actions for .NET Core
When I pushed my recent Ghoplin mini-project to GitHub, it automatically offered to define a build action. I really liked the user experience here: GitHub offered the Action feature, detected my project type and generated a file, with project-appropriate defaults and in the correct folder. I updated the dontnet version in the script and tried it; everything works and the task reports a success. name: .NET Core on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.10 - name: Build run: dotnet publish -r...
programming
tech
git
2019 Jun 22
2019 Jun 22
Tinkering with Transposit (beta) and AirTable
Transposit is an interesting new service that aims to help when you're trying to connect various apps (or, more specifically, their APIs) together. But it does it in a novel way: it lets you query various data sources as if they were SQL objects. That is an ingenious idea: most of us already know SQL and it maps quite well to what we're trying to achieve with many of the APIs. To illustrate: Transposit lets you treat various services as SQL schema and query them; not only that, it lets you perform joins and other operations and mix them with...
tech
programming
automation
2018 Dec 27
2018 Dec 27
Playing with Huginn: "Your agents are standing by!"
"Huginn is a system for building agents and performing automated tasks online." Here's how I found it, made a personal newsletter (and some other stuff) with it. Next time: Docker setup....
huginn
docker
self-hosted