apt-get install libreadline-dev libconfig-dev libssl-dev lua5.2 liblua5.2-dev libevent-dev libjansson-dev make git -y
cd /usr/src
git clone --recursive https://github.com/vysheng/tg.git
' Obtém informações do Microsoft Security Essentials | |
' e exibe de uma forma compreensível ao Zabbix | |
' execute com: cscript.exe //nologo mse.vbs | |
' Este post foi de grande ajuda: | |
' http://serverfault.com/questions/230368/timestamp-of-last-definition-update-for-microsoft-security-essentials-via-script | |
' Tobias 12/11/13 | |
set objetoShell = CreateObject( "WScript.Shell" ) | |
set objetoFS = CreateObject("Scripting.FileSystemObject") |
#!/usr/bin/env python | |
import sys | |
# http://www.python.org.br/wiki/PythonNoLugarDeShellScript | |
from subprocess import Popen, PIPE | |
class Cmd(object): | |
def __init__(self, cmd): | |
self.cmd = cmd | |
def __call__(self, *args): |
#!/bin/bash | |
# Copyright (C) 2013 Tobias <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
#!/bin/bash | |
# This script syncs (i.e. makes git pull) on a specified directory or, se no | |
# parameter was specified, in all the subdirectories that are git projects. | |
# | |
# Usage: | |
# ./auto_sync_git.sh directory_of_my_project | |
# ./auto_sync_git.sh | |
# An alias to the git binary |
I hereby claim:
To claim this, I am signing this object:
Verifying that "gnumoksha.id" is my Blockstack ID. https://onename.com/gnumoksha |
I hereby claim:
To claim this, I am signing this object:
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:713beb28e0c16bad0359da1ce724f606efff66f7] |
<?php | |
declare(strict_types=1); | |
namespace Libs\Tools\Http; | |
use Http\Client\Common\Plugin\CookiePlugin; | |
use Http\Client\Common\Plugin\RedirectPlugin; | |
use Http\Client\Common\PluginClient; | |
use Http\Message\CookieJar; |