I hereby claim:
- I am pgrm on github.
- I am pgrm (https://keybase.io/pgrm) on keybase.
- I have a public key whose fingerprint is 8AC2 C7F7 9261 02B0 F02B 5C7C 6BA0 2D65 7EA8 466C
To claim this, I am signing this object:
package org.apache.drill.exec.test.generated; | |
import org.apache.drill.exec.exception.SchemaChangeException; | |
import org.apache.drill.exec.expr.holders.BitHolder; | |
import org.apache.drill.exec.expr.holders.VarCharHolder; | |
import org.apache.drill.exec.ops.FragmentContext; | |
import org.apache.drill.exec.record.RecordBatch; | |
import org.apache.drill.exec.vector.RepeatedVarCharVector; | |
import org.apache.drill.exec.vector.VarCharVector; | |
import org.apache.drill.exec.vector.complex.impl.RepeatedVarCharReaderImpl; |
2014-06-21 10:24:03,729 INFO org.apache.hadoop.yarn.server.nodemanager.containermanager.monitor.ContainersMonitorImpl: Stopping resource-monitoring for container_1403345039835_0001_01_000009 | |
2014-06-21 10:24:04,961 INFO org.apache.hadoop.yarn.server.nodemanager.containermanager.ContainerManagerImpl: Start request for container_1403345039835_0001_01_000010 by user ubuntu | |
2014-06-21 10:24:04,961 INFO org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger: USER=ubuntu IP=10.216.60.23 OPERATION=Start Container Request TARGET=ContainerManageImpl RESULT=SUCCESS APPID=application_1403345039835_0001 CONTAINERID=container_1403345039835_0001_01_000010 | |
2014-06-21 10:24:04,961 INFO org.apache.hadoop.yarn.server.nodemanager.containermanager.application.Application: Adding container_1403345039835_0001_01_000010 to application application_1403345039835_0001 | |
2014-06-21 10:24:04,966 INFO org.apache.hadoop.yarn.server.nodemanager.containermanager.container.Container: Container container_1403345039835_0001 |
/// <reference path="../leaflet/leaflet.d.ts" /> | |
declare module L { | |
export interface MapOptions { | |
drawControl?: boolean; | |
} | |
export interface ControlStatic { | |
Draw: Control.DrawStatic; | |
} |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
config.vm.provider "parallels" | |
config.vm.provider "virtualbox" |
I hereby claim:
To claim this, I am signing this object:
execve("/usr/bin/ansible-playbook", ["ansible-playbook", "test.yaml"], [/* 16 vars */]) = 0 | |
brk(0) = 0x12cf000 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fd3291f0000 | |
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
fstat(3, {st_mode=S_IFREG|0644, st_size=24176, ...}) = 0 | |
mmap(NULL, 24176, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fd3291f9000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) |
#!/bin/bash | |
# run sudo apt update or similar and feed the password for the rest to run smooth | |
# this is for the old bash based on ubuntu 14.04 | |
sudo apt update && sudo apt dist-upgrade -y | |
# Instlall NodeJS, Yarn and npm related dependencies | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list |
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. |
# Execution policy - https://technet.microsoft.com/en-us/library/ee176961.aspx | |
# Get PS Get (http://psget.net/) | |
(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex | |
import-module PsGet | |
# Usful modules | |
# http://psget.net/directory/Jump.Location/ | |
Install-Module Jump.Location |
sudo apt install curl -y | |
# nodejs | |
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash - | |
# google chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
# dotnet core |