Skip to content

Instantly share code, notes, and snippets.

View phsteve's full-sized avatar
🚀
😻

Steve Katz phsteve

🚀
😻
View GitHub Profile
@phsteve
phsteve / tips.md
Created May 7, 2018 13:28
Useful commands

Get a shell in a k8s pod: kubectl exec -it gitlab-gitlab-12345-asdf -- /bin/bash

@phsteve
phsteve / psget_error_post_upgrade.txt
Created May 4, 2017 20:24
error after salt upgrade
PS C:\Users\skatz> C:\salt\salt-call.bat --local -l debug psget.avail_modules
[DEBUG ] Reading configuration from c:\salt\conf\minion
[DEBUG ] Including configuration from 'c:\salt\conf\minion.d\_schedule.conf'
[DEBUG ] Reading configuration from c:\salt\conf\minion.d\_schedule.conf
[DEBUG ] Configuration file path: c:\salt\conf\minion
[WARNING ] Insecure logging configuration detected! Sensitive data may be logged.
[DEBUG ] Reading configuration from c:\salt\conf\minion
[DEBUG ] Including configuration from 'c:\salt\conf\minion.d\_schedule.conf'
[DEBUG ] Reading configuration from c:\salt\conf\minion.d\_schedule.conf
[DEBUG ] Determining pillar cache
@phsteve
phsteve / psget_verbose
Last active May 4, 2017 20:06
verbose psget error
PS C:\Users\skatz> C:\salt\salt-call.bat --local -l debug psget.avail_modules
C:\salt\salt-call.bat : [DEBUG ] Reading configuration from c:\salt\conf\minion
At line:1 char:1
+ C:\salt\salt-call.bat --local -l debug psget.avail_modules
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: ([DEBUG ] Read...alt\conf\minion:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
[DEBUG ] Including configuration from 'c:\salt\conf\minion.d\_schedule.conf'
[DEBUG ] Reading configuration from c:\salt\conf\minion.d\_schedule.conf
@phsteve
phsteve / psget_error.txt
Created May 4, 2017 19:57
psget.avail_modules is not available
PS C:\Users\skatz> C:\salt\salt-call.bat --local chocolatey.install psget
local:
Chocolatey v0.10.5
Installing the following packages:
psget
By installing you accept licenses for the packages.
psget v1.0.4.407 already installed.
Use --force to reinstall, specify a version to install, or try upgrade.
Chocolatey installed 0/1 packages. 0 packages failed.
@phsteve
phsteve / Change
Last active December 27, 2015 08:19
My recursive change counting algorithm.
#n is the total amount, L is the list of change denominations.
def change(n, L):
if n < 0:
return 0
if n == 0:
return 1
if L == []:
return 0
return change(n, L[:-1]) + change(n-L[-1], L)
@phsteve
phsteve / p14.py
Last active December 22, 2015 09:48
Project Euler Problem 14
#The Collatz sequence is defined by the following rules on the set of positive numbers:
# n -> n/2 if n is even
# n -> 3n + 1 if n is odd
#Starting with 13, the sequence proceeds:
# 13 - 40 - 20 - 10 - 5 - 16 - 8 - 4 - 2 - 1
#Which starting number, under 1,000,000 produces the longest chain?
@phsteve
phsteve / horserace gist
Created August 23, 2013 00:49
Bet tracking program
#!/usr/bin/python
#This is a program to calculate payouts for horse racing. The user is prompted
#for the names of the horses, then the names of the bettors, then for any number
#of bets. At the end, it displays the winnings of each bettor.
#It uses parimutuel-style betting, where the odds for each horse are calculated
#by dividing the total amount bet on all the horses by the amount bet on the
#specific horse. The people who have bet on a winning horse divide up all the
#money bet in proportion to the relative amount of their respective bets on the
@phsteve
phsteve / pythoninstall.md
Last active August 29, 2015 14:22
Python and Pip installation with Homebrew

Python on Mac OS X

If you're writing Python:

Do which -a python to see how many Pythons you have installed.

If you see only /usr/bin/python, then you're good to go.

If not:

msg: http://lunchlady.neverware.com/centos/6/updates/repodata/1e07fe299b6b8246f02eae9fcb583c793da533ab23c1c33f842d7322e7ab424f-filelists.sqlite.bz2: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error: failure: repodata/1e07fe299b6b8246f02eae9fcb583c793da533ab23c1c33f842d7322e7ab424f-filelists.sqlite.bz2 from updates: [Errno 256] No more mirrors to try.
@phsteve
phsteve / -
Created September 18, 2014 22:05
GIST