Skip to content

Instantly share code, notes, and snippets.

View iocentos's full-sized avatar
🏠
Working from home

Ioannis Sintos iocentos

🏠
Working from home
View GitHub Profile
hello world
@iocentos
iocentos / cvimrc
Last active November 3, 2017 09:31
set noautofocus
set nocncpcompletion
set smoothscroll
let searchlimit = 40
let barposition = "bottom"
let scrollstep = 200
#!/usr/bin/python
'''
The following script performs unsupervised apk upload to google play console.
Make sure first to create a service account and store the json file somwhere safe.
It also uploads the mapping.txt file so that we can see crash reports in developer console.
First install google api publisher api
$ pip install google-api-python-client
@iocentos
iocentos / install_jenkins_plugin.sh
Created October 21, 2016 09:34 — forked from micw/install_jenkins_plugin.sh
Script to install one or more jenkins plugins including dependencies while jenkins is offline
#!/bin/bash
set -e
if [ $# -eq 0 ]; then
echo "USAGE: $0 plugin1 plugin2 ..."
exit 1
fi
plugin_dir=/var/lib/jenkins/plugins
#!/usr/bin/env ruby
require 'optparse'
require 'couchbase'
require 'rubygems'
require 'highline/import'
require 'json'
require 'fileutils'