I hereby claim:
- I am tyler-sommer on github.
- I am veonik (https://keybase.io/veonik) on keybase.
- I have a public key ASDyv6_Y54xyAAFhCsGVJE3g0wzUWQSj21v5oNioNDp81Qo
To claim this, I am signing this object:
| #define _GNU_SOURCE | |
| #include <errno.h> | |
| #include <sched.h> | |
| #include <signal.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/mount.h> | |
| #include <sys/stat.h> | |
| #include <sys/syscall.h> | |
| #include <sys/types.h> |
| .hljs{display:block;overflow-x:auto;padding:.5em;color:#bababa} | |
| .repository.file.list .non-diff-file-content .code-view .lines-code ol,.repository.file.list .non-diff-file-content .code-view .lines-num{background-color:#2b2b2b!important} | |
| .hljs-emphasis,.hljs-strong{color:#a8a8a2} | |
| .hljs-bullet,.hljs-link,.hljs-literal,.hljs-number,.hljs-quote,.hljs-regexp{color:#6896ba} | |
| .hljs-code,.hljs-selector-class{color:#a6e22e} | |
| .hljs-emphasis{font-style:italic} | |
| .hljs-attribute,.hljs-keyword,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-variable{color:#cb7832} | |
| .hljs-params{color:#b9b9b9} | |
| .hljs-string{color:#6a8759} | |
| .hljs-addition,.hljs-built_in,.hljs-builtin-name,.hljs-selector-attr,.hljs-selector-id,.hljs-selector-pseudo,.hljs-subst,.hljs-symbol,.hljs-template-tag,.hljs-template-variable,.hljs-type{color:#e0c46c} |
| #!/bin/bash | |
| entity_kind="" | |
| entity_id="" | |
| usage() { | |
| echo "Usage: $0 [-h] [-a <allianceID> | -c <corporationID> | -p <characterID>]" | |
| echo | |
| echo "One option (-a, -c, -p) must be selected." | |
| } |
I hereby claim:
To claim this, I am signing this object:
| {% extends 'layout.html.twig' %} | |
| {% block content %} | |
| <div class="row"> | |
| <div class="col-md-8"> | |
| <h4>Dashboard</h4> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-md-12"> |
| { | |
| "host_groups": [ | |
| { | |
| "name": "master", | |
| "components": [ | |
| { | |
| "name": "NAMENODE" | |
| }, | |
| { | |
| "name": "DATANODE" |
| Dir.glob('/home/git/repositories/**/*.git') do |item| | |
| hook = "#{item}/hooks" | |
| if not File.symlink?(hook) | |
| puts "Updating #{hook}" | |
| File.rename(hook, "#{hook}.old") | |
| File.symlink("/home/git/gitlab-shell/hooks", hook) | |
| end | |
| end |
| <?php | |
| /** | |
| * Serializable Closure | |
| * | |
| * Allows the serialization of a closure, specifically a Closure, for storage | |
| */ | |
| class SerializableCallable implements \Serializable | |
| { | |
| /** |
| <?php | |
| /** | |
| * A Simple Operation Benchmark Class | |
| * | |
| * @author Tyler Sommer | |
| * @license WTFPL | |
| */ | |
| class Benchmark { | |
| protected $_length; |