This is a project to test entity systems using XNA and C#.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Ensure kubectl is installed | |
if ! command -v kubectl &> /dev/null; then | |
echo "Error: kubectl is not installed. Please install it and try again." | |
exit 1 | |
fi | |
# List all namespaces | |
namespaces=($(kubectl get namespaces -o jsonpath='{.items[*].metadata.name}')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jul 03 14:42:28 as-swarm-manager dockerd[25595]: time="2017-07-03T15:42:28+01:00" level=info msg="time=\"2017-07-03T14:42:28Z\" level=debug msg=\"/VolumeDriver.Capabilities\" host=\"unix:///var/run/libstorage/123615540.sock\" pluginResponse={ map[]} time=1499092948304 " plugin=98f0aacacd60baa40de8e5aa3fc51cf29ec8d0fae7c5e01812b1e00fcb34e041 | |
Jul 03 14:42:28 as-swarm-manager dockerd[25595]: time="2017-07-03T15:42:28+01:00" level=info msg="time=\"2017-07-03T14:42:28Z\" level=debug msg=\"/VolumeDriver.Capabilities\" host=\"unix:///var/run/libstorage/123615540.sock\" pluginResponse={ map[]} time=1499092948305 " plugin=98f0aacacd60baa40de8e5aa3fc51cf29ec8d0fae7c5e01812b1e00fcb34e041 | |
Jul 03 14:42:28 as-swarm-manager dockerd[25595]: time="2017-07-03T15:42:28+01:00" level=info msg="time=\"2017-07-03T14:42:28Z\" level=debug msg=\"/VolumeDriver.Get\" host=\"unix:///var/run/libstorage/123615540.sock\" pluginResponse={test-vol-1 map[]} time=1499092948305 " plugin=98f0aacacd60baa40de8e5aa3fc51cf29ec8d0fae7c5e01812b1e00fcb3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use POSIX; | |
use File::Glob; | |
use Devel::Size qw( size total_size ); | |
use v5.12; | |
my @filenames = glob('./logs/*'); #("./access_log.2012-10-06.gz"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-vm | |
/usr/lib/jvm/java-6-sun/jre/lib/amd64/server/libjvm.so | |
-startup | |
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar | |
--launcher.library | |
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.v20110505 | |
-product | |
com.springsource.sts.ide | |
--launcher.defaultAction | |
openFile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mpm_worker_module> | |
StartServers 1 | |
MinSpareThreads 5 | |
MaxSpareThreads 10 | |
ThreadLimit 50 | |
ThreadsPerChild 10 | |
MaxClients 10 | |
MaxRequestsPerChild 10000 | |
</IfModule> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$(whoami)" = "root" ]; then USERCOLOUR="red"; else USERCOLOUR="green"; fi | |
PROMPT=$'%{$fg[$USERCOLOUR]%}%n%{$fg[green]%}@%m: %{$reset_color%}%{$fg[blue]%}% | |
/%{$reset_color%} | |
%{$fg_bold[red]%}✗ %{$reset_color%} ' | |
local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})" | |
RPROMPT='${return_code} $(git_prompt_info)' |