Skip to content

Instantly share code, notes, and snippets.

View KorhanOzturk90's full-sized avatar

Korhan Ozturk KorhanOzturk90

  • Koz Software
  • United Kingdom
View GitHub Profile
@mohanpedala
mohanpedala / bash_strict_mode.md
Last active December 5, 2025 10:58
set -e, -u, -o, -x pipefail explanation
@vool
vool / ryanapi.md
Last active December 4, 2025 10:25
Ryanair api endpoints

Note

This gist was created in 2015 with endpoints and parameters info for Ryanair’s API's, I just wrote a bit about it here

It's 2025, if you have landed here while looking to access Ryanair’s API I suggest you check out ryanair-py by Ciarán Ó hAoláin.


API domains

https://desktopapps.ryanair.com

@joar
joar / jq-insert-var.sh
Last active July 24, 2025 14:46
Add a field to an object with JQ
# Add field
echo '{"hello": "world"}' | jq --arg foo bar '. + {foo: $foo}'
# {
# "hello": "world",
# "foo": "bar"
# }
# Override field value
echo '{"hello": "world"}' | jq --arg foo bar '. + {hello: $foo}'
{
@staltz
staltz / introrx.md
Last active December 1, 2025 11:31
The introduction to Reactive Programming you've been missing
@Bouke
Bouke / gist:10454272
Last active September 22, 2025 06:27
Install FreeTDS, unixODBC and pyodbc on OS X

First, install the following libraries:

$ brew install unixodbc
$ brew install freetds --with-unixodbc

FreeTDS should already work now, without configuration:

$ tsql -S [IP or hostname] -U [username] -P [password]
locale is "en_US.UTF-8"

locale charset is "UTF-8"