This file contains 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
# cat /etc/my.cnf.d/server.cnf | |
# | |
# These groups are read by MariaDB server. | |
# Use it for options that only the server (but not clients) should see | |
# | |
# See the examples of server my.cnf files in /usr/share/mysql/ | |
# | |
# this is read by the standalone daemon and embedded servers | |
[server] |
This file contains 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
@echo off | |
C:\python\python26\python.exe D:\path\to\Traipse.pyw | |
pause |
This file contains 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
@echo off | |
if not exist "%~dp0bin\gcc.exe" goto epicfail | |
if "%X_DISTRO%" == "nuwen" goto :eof | |
set X_DISTRO=nuwen | |
if exist "%~dp0git\cmd\git.exe" set PATH=%~dp0git\cmd;%PATH% | |
set PATH=%~dp0bin;%PATH% | |
set X_MEOW=%~dp0include;%~dp0include\freetype2 | |
if defined C_INCLUDE_PATH (set C_INCLUDE_PATH=%X_MEOW%;%C_INCLUDE_PATH%) else (set C_INCLUDE_PATH=%X_MEOW%) | |
if defined CPLUS_INCLUDE_PATH (set CPLUS_INCLUDE_PATH=%X_MEOW%;%CPLUS_INCLUDE_PATH%) else (set CPLUS_INCLUDE_PATH=%X_MEOW%) | |
set X_MEOW= |
This file contains 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
Build FAILED. | |
Warnings: | |
/home/predatorian/Programming/mRemoteNG/mRemoteV1/mRemoteV1.vbproj (default targets) -> | |
/usr/lib/mono/4.0/Microsoft.Common.targets (ResolveAssemblyReferences target) -> | |
/usr/lib/mono/4.0/Microsoft.Common.targets: warning : Reference 'Microsoft.VisualBasic.PowerPacks.Vs, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL' not resolved | |
/usr/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Using 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' reference. | |
/usr/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'mscorlib, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Using 'mscorlib, Version=2 |
This file contains 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
[root@fenix-centos ~]# service megamek start | |
+ DAEMON=/opt/megamek-0.38.0/MegaMek.jar | |
+ DAEMONPATH=/usr/bin/java | |
+ DAEMONPATHARGS='-jar -Xmx768' | |
+ DAEMONARGS='-dedicated -port 2346' | |
+ NAME=megamek | |
+ PIDFILE=/var/run/megamek.pid | |
+ SCRIPTNAME=/etc/init.d/megamek | |
+ USER=megamek | |
+ case "$1" in |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Canvas Hexagonal Map</title> | |
<style type="text/css"> | |
canvas { | |
border:0; | |
display:block; | |
margin:0 auto; |
This file contains 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
# https://www.zabbix.com/documentation/1.8/api/getting_started | |
require 'net/http' | |
@params = { | |
"jsonrpc" => '2.0', | |
'method' => 'user.login', | |
'params' => { | |
'user' => 'Admin', | |
'password' => 'zabbix' |
This file contains 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
C:\U\haylon\Documents\GH\dist-r-corp> chef -v | |
Chef Development Kit Version: 0.4.0 | |
C:\U\haylon\Documents\GH\dist-r-corp> gem which openssl # https://github.com/chef/chef-dk/issues/199 | |
C:/opscode/chefdk/embedded/lib/ruby/2.0.0/openssl.rb | |
C:\U\haylon\Documents\GH\dist-r-corp> git --version | |
git version 1.9.4.msysgit.2 | |
C:\U\haylon\Documents\GH\dist-r-corp> openssl version |
This file contains 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
# | |
# | |
# | |
# | |
# Loads the knife classes and code to be used. | |
require 'chef/knife' | |
module ExamplePlugin | |
# This module is arbritary and mainly for keeping your plugin code |
This file contains 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
# | |
# | |
# | |
# | |
require 'net/https' | |
require 'uri' | |
require 'json' | |
require 'optparse' |
OlderNewer