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 / keybase.md
Created April 11, 2017 15:01
keybase.md

Keybase proof

I hereby claim:

  • I am stillru on github.
  • I am stillru (https://keybase.io/stillru) on keybase.
  • I have a public key whose fingerprint is 8E55 2A24 2B70 B787 AF2E 195F 2A7B D19B 79EA 3FF3

To claim this, I am signing this object:

@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
<link href="../topeka-elements/category-images.html" rel="import">
<link href="../core-icon/core-icon.html" rel="import">
<link href="../core-icons/core-icons.html" rel="import">
<link href="../core-icons/av-icons.html" rel="import">
<link href="../paper-fab/paper-fab.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
@stillru
stillru / url
Created October 26, 2013 03:37
Windows dev install
http://eureka.ykyuen.info/2013/09/16/setup-yeoman-in-windows-powershell/