I hereby claim:
- I am rpherrera on github.
- I am herrera (https://keybase.io/herrera) on keybase.
- I have a public key ASC0-VURP6vXyUkYoLympqxuGoMCzXo1WObdqJYvLxC_Rgo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8"/> | |
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport"> | |
<title>Monitor Sinistro</title> | |
</head> | |
<body> | |
<iframe id="monitor" frameborder="0" scrolling="no" width="510" height="275" allowtransparency="true" marginwidth="0" marginheight="0" src="https://sslfxrates.forexprostools.com/index.php?force_lang=12&pairs_ids=2091;2103;2124;2126;39;2186;7;8830;8833;8849;8836;166;170;8884;&header-text-color=%23FFFFFF&curr-name-color=%230059b0&inner-text-color=%23000000&green-text-color=%232A8215&green-background=%23B7F4C2&red-text-color=%23DC0001&red-background=%23FFE2E2&inner-border-color=%23CBCBCB&border-color=%23cbcbcb&bg1=%23F6F6F6&bg2=%23ffffff&bid=show&ask=show&last=hide&change=hide&last_update=hide"></iframe> |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Changes the permissions from all directories beneath current directory to ug=rwx,o=rx (755 mode) | |
find . -type d -exec chmod 775 {} \; | |
# Changes the permissions from all files beneath current directory to ug=rw,o=r (664 mode) | |
find . -type f -exec chmod 664 {} \; |
import vici | |
import json | |
s = vici.Session() | |
for i in s.list_sas(): | |
print json.dumps(i, indent=2) | |
# sample output: | |
# { | |
# "rw": { |
#!/bin/bash | |
docker images -a | awk '{print $3}' | grep -v IMAGE | uniq | xargs docker rmi -f |
#!/bin/bash | |
docker ps -a | awk '{print $1}' | grep -v CONTAINER | xargs docker rm -v |
def star_regex(regex, string): | |
if string: | |
if regex[0] == string[0]: | |
return star_regex(regex, string[1:]) | |
else: | |
if regex[len(regex) - 1] == string[0]: | |
return True | |
else: | |
return False |
!function(S,A,T,a,N,I,C){S.GoogleAnalyticsObject=T;S[T]||(S[T]=function(){ | |
(S[T].q=S[T].q||[]).push(arguments)});S[T].l=+new Date;I=A.createElement(a); | |
C=A.getElementsByTagName(a)[0];I.src=N;C.parentNode.insertBefore(I,C)} | |
(window,document,'ga','script','http://www.google-analytics.com/analytics.js'); | |
ga('create', 'UA-XXXXX-X', 'auto'); | |
ga('send', 'pageview'); |