I hereby claim:
- I am xenji on github.
- I am xenji (https://keybase.io/xenji) on keybase.
- I have a public key whose fingerprint is B9A9 A8AC AB30 6CFF FB1F 434A A316 1A56 490E 539E
To claim this, I am signing this object:
| Param( | |
| [Parameter(Mandatory = $false, Position = 0)] | |
| [string]$name | |
| ) | |
| function current_context() { | |
| kubectl config view -o=jsonpath='{.current-context}' | |
| } | |
| function get_contexts() { |
| [main] | |
| summary=Profile for Mario's Gigabyte Aero 14kv8 | |
| # These settings enable Intel's speed step to do its work. | |
| [cpu] | |
| governor=powersave | |
| energy_perf_bias=normal | |
| # Set the autosuspend to 10s | |
| [audio] |
| #!/bin/bash | |
| set -u | |
| set -e | |
| set -o pipefail | |
| export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | |
| cat <<'EOF' > /etc/modprobe.d/blacklist-ipv6.conf |
| package com.xenji.xm.model.hibernate; | |
| import org.hibernate.HibernateException; | |
| import org.hibernate.engine.spi.SessionImplementor; | |
| import org.hibernate.usertype.UserType; | |
| import java.io.Serializable; | |
| import java.net.URI; | |
| import java.net.URISyntaxException; | |
| import java.sql.PreparedStatement; |
| package com.trivago.ckg.config.titan; | |
| import com.thinkaurelius.titan.core.TitanGraph; | |
| import io.netty.channel.EventLoopGroup; | |
| import io.netty.channel.nio.NioEventLoopGroup; | |
| import org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0; | |
| import org.apache.tinkerpop.gremlin.server.GraphManager; | |
| import org.apache.tinkerpop.gremlin.server.GremlinServer; | |
| import org.apache.tinkerpop.gremlin.server.Settings; | |
| import org.apache.tinkerpop.gremlin.server.util.ThreadFactoryUtil; |
| defmodule Weather.Broker do | |
| use GenServer | |
| require Logger | |
| def start_link(name) do | |
| GenServer.start_link(__MODULE__, :ok, name: name) | |
| end | |
| def stop(server) do | |
| GenServer.stop(server) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import os, sys, commands, random, time | |
| import pprint | |
| try: | |
| import MySQLdb | |
| except : | |
| sys.stderr.write('Cannot load MySQLdb lib.\n') | |
| sys.exit(1) |
| { | |
| "size": 0, | |
| "query": { | |
| "match_all": {} | |
| }, | |
| "aggs": { | |
| "browser_distribution": { | |
| "terms": { | |
| "field": "browser" | |
| }, |
| /** @jsx React.DOM */ | |
| define(['react'], function(React){ | |
| /** | |
| * Ajax Spinner | |
| * | |
| * Props: | |
| * - {object} data | |
| * - {String} data.imgSrc | |
| * - {int} data.width |