Skip to content

Instantly share code, notes, and snippets.

View vladistan's full-sized avatar

Vlad Korolev vladistan

View GitHub Profile
@vladistan
vladistan / Developer-Boxstarter
Last active May 19, 2019 23:21 — forked from ZinkNotTheMetal/Developer-Boxstarter
This gist sets up my box via boxstarter and chocolatey
# Invoke using following syntax into IE:
# http://boxstarter.org/package/url?[raw link to this gist]
try {
# Boxstarter options
$Boxstarter.RebootOk=$true
$Boxstarter.NoPassword=$false # Is this a machine with no logon password?
$Boxstarter.AutoLogin=$true
# Set Windows variables
Enable-RemoteDesktop

Keybase proof

I hereby claim:

  • I am vladistan on github.
  • I am vladistan (https://keybase.io/vladistan) on keybase.
  • I have a public key ASAjfcqP_NaDlmDZlyGAPl4C5I1tdqwpvpxrSEHIG_KURgo

To claim this, I am signing this object:

@vladistan
vladistan / go-api-support.json
Created October 9, 2016 20:53
GO API Support info for go team
{
"Timestamp": "2016-10-09T16:57:40-04:00",
"Config Statistics": {
"Valid Config": {
"Number of pipelines": 23,
"Number of agents": 10,
"Number of environments": 0,
"Number of unique materials": 32,
"Number of schedulable materials": 27
},
Timestamp:
==========
Tue Aug 23 00:33:24 EDT 2016
=================
Config Statistics
=================
@vladistan
vladistan / FolderRotate.py
Created September 12, 2014 01:57
Rename set of directories with numeric part in it by adding 1 to the number.
# coding=utf-8
#The MIT License (MIT)
#
#Copyright (c) <year> <copyright holders>
#
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
@vladistan
vladistan / gist:6be48779c762ca6c1f7b
Created April 23, 2014 15:38
OPML to Markdown Transform
xquery version "3.0";
declare namespace nm = "http://dblfuzzr.com/opml2md/";
declare option saxon:output 'omit-xml-declaration=yes';
declare function nm:lvlText($x)
{
xs:string($x/@text)
};
@vladistan
vladistan / aws_auth.py
Last active December 29, 2015 11:49
Retrieve the aws key and secret from .awsAuth file. More information on .awsAuth is here https://code.google.com/p/aws4c/wiki/DevGuide
# coding=utf-8
import os
def get_aws_key(key_id):
"""
Retrieve the aws key and secret from .awsAuth file.
Your awsAuth file should contain the following lines for the tests to work.