Skip to content

Instantly share code, notes, and snippets.

View nelsoncbf's full-sized avatar
:octocat:

Nelson Fonseca nelsoncbf

:octocat:
View GitHub Profile
@nelsoncbf
nelsoncbf / Clipboard.js
Created May 2, 2023 03:25 — forked from rproenca/Clipboard.js
Copy text to clipboard using Javascript. It works on Safari (iOS) and other browsers.
window.Clipboard = (function(window, document, navigator) {
var textArea,
copy;
function isOS() {
return navigator.userAgent.match(/ipad|iphone/i);
}
function createTextArea(text) {
textArea = document.createElement('textArea');
@nelsoncbf
nelsoncbf / supervisor_client.py
Last active May 11, 2020 21:59 — forked from jalp/supervisor_client.py
Supervisor api client in Python
#import xmlrpclib
from xmlrpc import client
class ProcessStatus(object):
RUNNING = 'RUNNING'
STOPPED = 'STOPPED'
FATAL = 'FATAL'
RESTARTING = 'RESTARTING'
SHUTDOWN = 'SHUTDOWN'