Skip to content

Instantly share code, notes, and snippets.

View rauhmaru's full-sized avatar
🎯
Focusing

Raul Libório rauhmaru

🎯
Focusing
  • openSUSE
  • Salvador/BA
View GitHub Profile
@rauhmaru
rauhmaru / jogo_nim.py
Last active February 22, 2022 12:56
Jogo nim / nim game
def computador_escolhe_jogada(n, m):
jogada = 1
while jogada <= m:
if (n - jogada) % (m + 1) == 0:
if jogada == 1 or n == 1:
print("O computador tirou uma peça.")
return jogada
else:
print("O computador tirou {} peças.".format(jogada))
return jogada
@rauhmaru
rauhmaru / throttled.sh
Created April 17, 2021 20:00 — forked from aallan/throttled.sh
Script to parse the output of the 'vcgencmd get_throttled' command on a Raspberry Pi
#!/bin/bash
# https://retropie.org.uk/forum/topic/2295/runcommand-warning-if-voltage-temperature-throttling
#Flag Bits
UNDERVOLTED=0x1
CAPPED=0x2
THROTTLED=0x4
HAS_UNDERVOLTED=0x10000
HAS_CAPPED=0x20000
@rauhmaru
rauhmaru / geraCertificados.sh
Created August 28, 2018 05:21
Script para gerar certificados
#!/bin/bash
# Gera certificados com base em uma lista
# Raul Libório
#v 0.1 - script com geracao de certificados e envio
#v 0.2 - conversao em caixa alta antes do envio
# recomendo que coloque todos os caracteres em caixa alta antes, com
# a ajuda do libreOffice, é mais simples. Faremos essa atualização em breve
@rauhmaru
rauhmaru / teste
Created May 12, 2016 22:35
Teste
IEVAN POLKA
URL="http://shenlong.solutis.com.br/hooks"
TOKEN="JbkKG29BFaSPcq8JT/jMb7WhrXwvnSR3QiPvYYXm33nenhG9jJG88uAx8Y7qeN6PiQ"
WEBHOOK="$URL/$TOKEN"
CURL="curl -X POST -k --data-urlencode"
TITLE_LINK="http://noc.tjba.jus.br/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}"
####################