Skip to content

Instantly share code, notes, and snippets.

00020126990014BR.GOV.BCB.PIX0123junioregisely@gmail.com0250Nosso amor é rico, mas nossos bolsos... Bem, ajuda5204000053039865802BR5922GISELY MACEDO DE SOUSA6008TERESINA62130509Casamento63043A8D
00020126930014br.gov.bcb.pix0114+55869817929370253Live Posse IFPI Tecnico Administrativo e Professores520400005303986540538.465802BR5925SILVESTRE DO CARMO DE LIM6008TERESINA62580520SAN2023020513350372750300017br.gov.bcb.brcode01051.0.063049B9F
@JuniorLima
JuniorLima / Drone 01
Created December 11, 2022 21:03
Drone + OBS
rtmp://192.168.31.77:1935
@JuniorLima
JuniorLima / letra.css
Created July 10, 2021 03:47
Adicionar no CSS 3 do plugin. No CTRL SHIFT E, altura da linha 25, negrito
.screen-custom {
}
.text-custom {
position: relative;
}
.text-custom span:not(:empty) {
background-color: rgba(67, 50, 42, 0.7);
display: grid;
@JuniorLima
JuniorLima / letra.css
Created January 11, 2021 16:02
Holyrics + Navegador
.screen-custom {
}
.text-custom {
position: relative;
}
.text-custom span:not(:empty) {
background-color: rgba(67, 50, 42, 0.7);
display: grid;
@JuniorLima
JuniorLima / leia_me.md
Last active April 6, 2017 00:14
Instalação de Firewall, Servidor e Cliente

Atividade Redes SENAC

Configurando servidor de firewall, com servidor e máquinas cliente.

Apresentação das máquinas

Firewall Debian - Servidor Debian - Cliente Windows XP - Cliente Windows XP -

@JuniorLima
JuniorLima / comandos_iptables.sh
Last active April 11, 2017 22:52
IPTABLES - Senac Teresina
# CLIENTE
10.19.8.196
# SERVIDOR
10.19.8.109
#Ver regas
iptables -L
# Bloquear conexões via SSH de cliente
@JuniorLima
JuniorLima / supervisord.conf
Created September 10, 2015 13:17
ascii upload image django
# /etc/supervisor/supervisord.conf
environment=LANG="en_US.utf8", LC_ALL="en_US.UTF-8", LC_LANG="en_US.UTF-8"
@JuniorLima
JuniorLima / local_settings.py
Created June 25, 2015 20:20
local_settings
# -*- coding: utf-8 -*-
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'institucional',
'USER': 'root',
'PASSWORD': 'root',
@JuniorLima
JuniorLima / base.html
Last active August 29, 2015 14:08
Buscas no Django
{% load staticfiles %}
<html>
<head>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<img src="{% static "images/sitelogo.png" %}" alt="Logo" />
{% block content %}{% endblock %}
</body>
</html>