I hereby claim:
- I am lhotari on github.
- I am lhotari (https://keybase.io/lhotari) on keybase.
- I have a public key whose fingerprint is 53A8 9613 1119 4A6B 0A44 97D9 E535 CAAF 8594 137E
To claim this, I am signing this object:
| brew install caskroom/cask/brew-cask | |
| brew cask install virtualbox | |
| brew cask install vagrant | |
| vagrant plugin install vagrant-cachier | |
| vagrant plugin install vagrant-vbguest | |
| vagrant plugin install vagrant-omnibus |
| /* | |
| * Script for generating Markdown for | |
| * https://github.com/grails/grails-core/wiki/Travis-CI-status | |
| */ | |
| @GrabResolver(name='grailsCore', root='https://repo.grails.org/grails/core/', m2Compatible='true') | |
| @Grab(group='org.slf4j', module='slf4j-nop', version='1.7.10') | |
| @Grab(group='org.grails', module='grails-datastore-rest-client', version='4.0.0.M3') | |
| import grails.plugins.rest.client.RestBuilder | |
| def githubApiToken = System.getenv('GH_API_TOKEN') |
I hereby claim:
To claim this, I am signing this object:
| import javax.management.DynamicMBean; | |
| import javax.management.MBeanException; | |
| import javax.management.ReflectionException; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| public class DiagnosticCommandMBeanHelper { | |
| public static String threadPrint() throws ReflectionException, MBeanException { | |
| try { |
| // Example of using StAX to split a large XML document and parse a single element using XmlSlurper | |
| import javax.xml.stream.XMLInputFactory | |
| import javax.xml.stream.XMLStreamReader | |
| import javax.xml.transform.Transformer | |
| import javax.xml.transform.TransformerFactory | |
| import javax.xml.transform.sax.SAXResult | |
| import javax.xml.transform.stax.StAXSource | |
| def url = new URL("http://repo2.maven.org/maven2/archetype-catalog.xml") |
| #!/bin/bash | |
| # Disables Spotlight / mdworker and Time Machine backups for all build and .gradle directories under the working directory. | |
| /usr/bin/find . '(' -name build -or -name .gradle ')' -exec touch "{}/.metadata_never_index" \; | |
| /usr/bin/find . '(' -name build -or -name .gradle ')' -exec xattr -w com.apple.metadata:com_apple_backup_excludeItem com.apple.backupd "{}" \; |
| sudo apt-get install linux-generic-hwe-16.04 linux-image-generic-hwe-16.04 linux-tools-generic-hwe-16.04 linux-image-extra-virtual-hwe-16.04 | |
| sudo apt-get install xserver-xorg-hwe-16.04 |
| apt-get install autojump zsh tig git htop vim wget | |
| apt-get install apt-transport-https ca-certificates curl software-properties-common | |
| apt-get install libgnome-keyring-dev && (cd /usr/share/doc/git/contrib/credential/gnome-keyring && make) | |
| apt-get install indicator-sysmonitor | |
| apt-get install keepass2 | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
| add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |
| #!/bin/bash | |
| sudo apt-get update | |
| sudo apt-get install --install-recommends linux-generic-hwe-18.04 xserver-xorg-hwe-18.04 | |
| sudo mkdir /etc/default/grub.d | |
| # adjust i915 related kernel parameters | |
| # references for different settings: | |
| # intel_iommu=igfx_off - https://bugs.archlinux.org/task/55629 | |
| # intel_idle.max_cstate=4 |
| #!/usr/bin/env python3 | |
| # Licensed to the Apache Software Foundation (ASF) under one | |
| # or more contributor license agreements. See the NOTICE file | |
| # distributed with this work for additional information | |
| # regarding copyright ownership. The ASF licenses this file | |
| # to you under the Apache License, Version 2.0 (the | |
| # "License"); you may not use this file except in compliance | |
| # with the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 |