Skip to content

Instantly share code, notes, and snippets.

View stillru's full-sized avatar
🧒

Steve Illichevsky stillru

🧒
View GitHub Profile
@stillru
stillru / postman-deb.sh
Last active September 30, 2022 06:30 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
curlExists=$(command -v curl)
echo "Testing Postman version"
targetName=""
if [ -z $curlExists ]; then
targetName=$(wget -S --spider "https://dl.pstmn.io/download/latest/linux64" 2>&1 | grep -i '^\s*Date:' | sed 's/Date:\s*//g' | xargs -I {} date --date='{}' '+%Y-%m-%d')
else
@stillru
stillru / optics.py
Last active September 4, 2015 15:04 — forked from ryangomba/optics.py
OPTICS clustering in Python
# Copyright (c) 2012, Ryan Gomba
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation