Skip to content

Instantly share code, notes, and snippets.

View contato318's full-sized avatar
🏠
Working from home

Dirceu Silva contato318

🏠
Working from home
View GitHub Profile
#!/bin/bash
#parando a replicação
## SE NAO TIVER REPLICACAO, COMENTE A LINHA ABAIXO #
mysql -uadm.backup -e 'stop slave';
####################################
#Passando os parametros de controle#
####################################
@contato318
contato318 / readme.md
Created December 1, 2016 05:36 — forked from jas-/readme.md
Ulteo-OVD implementation guide

Ulteo Remote Application Server

Installation, configuration, patching & troubleshooting guide to the Ulteo-OVD services. Additional details of this software can be found on their website. Here are some useful resources.

  1. Ulteo home - http://www.ulteo.com/home/
  2. Ulteo Downloads - http://ulteo.com/home/en/ovdi/openvirtualdesktop/3.0
  3. Ulteo OVD source code - http://www.ulteo.com/home/en/download/sourcecode
  4. Additional OVD source code access - http://archive.ulteo.com/mirror/ovd/releases/sources/
  5. Community forums - https://groups.google.com/forum/?fromgroups#!forum/ulteo-ovd-community-support
@contato318
contato318 / __main__.py
Created July 5, 2016 00:31 — forked from drgarcia1986/__main__.py
Example of OAuth2 autentication server with Client Credentials grant (using python-oauth2 and tornado)
# !/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Diego Garcia'
import tornado.web
import tornado.ioloop
import oauth2.tokengenerator
import oauth2.grant
import oauth2.store.redisdb
import oauth2.store.mongodb