Skip to content

Instantly share code, notes, and snippets.

View alexkoster's full-sized avatar
📚
Learning something new! 📚

Alex Koster alexkoster

📚
Learning something new! 📚
View GitHub Profile
@alexkoster
alexkoster / OpenSourceCRM.rst
Created August 21, 2025 02:18 — forked from cstroe/OpenSourceCRM.rst
A distilled list of open-source CRM software
@rssnyder
rssnyder / oracle-cloud-free-tier-guide.md
Last active October 2, 2025 14:26
oracle-cloud-free-tier-guide

how to leverage oracle's temping offers

free tier limits

The limits of the free tier say that you can create up to 4 instances.

  • x2 x86 instances (2core/1g)
  • x2 ampere instances (with 4core/24g spread between them)
  • 200GB total boot volume space across all intances (minimum of 50G per instance)

create your account

@Sotatek-NuiTran
Sotatek-NuiTran / multi_ssh_git.md
Last active September 26, 2025 06:33
Setup SSH keys for multiple github and gitlab account

Setup SSH keys for multiple github and gitlab account

Prepare SSH keys:

Add a new key

$ ssh-keygen -t rsa_new -C "your_email@youremail.com"

Start ssh-agent

$ eval `ssh-agent -s`
@cstroe
cstroe / OpenSourceCRM.rst
Last active September 22, 2025 15:08
A distilled list of open-source CRM software
@timlinux
timlinux / gist:3bbabf96779906d746ff
Last active January 21, 2020 17:14
Setup procedure for a new Fedora workstation
#!/bin/bash
##########################################################
# Updated 3 July 2015 to use dnf and tweaks for Fedora 22
##########################################################
# Change below to whichever host is running apt cacher
# setup apt-cacher - do this after lxc docker as ssl sources are not configured for cacher by me
dnf install -y apt-cacher-ng
systemctl start apt-cacher-ng.service

Codesys RPI HOWTO

This describes how you could configure your Raspberry PI to work, hopefully, better with Codesys.

Instructions

  • Based on raspbian image
@andphe
andphe / gist:3232343
Created August 2, 2012 01:41
Export your links from Safari reading list
/usr/bin/plutil -convert xml1 -o - ~/Library/Safari/Bookmarks.plist | grep -E -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g'