This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:-1 tvg-logo="https://listaiptv.gratis/logos/imagens/recordtv.png" group-title="Jornalismo", RecordTV Brasília | |
https://playplusbsa-lh.akamaihd.net/i/pp_bsa@377860/master.m3u8 | |
#EXTINF:-1 tvg-logo="https://listaiptv.gratis/logos/imagens/recordtv.png" group-title="Nacionais", Canais Nacionais | |
https://playplusbh-lh.akamaihd.net/i/pp_bh@377862/master.m3u8 | |
#EXTINF:-1,3L-TV_ group-title="Nacionais", Canais Nacionais_3 group-title="Nacionais", Canais Nacionais | |
http://evpp.mm.uol.com.br:1935/ne10/ne10.smil/playlist.m3u8 | |
#EXTINF:-1,3L-TV_ group-title="Nacionais", Canais Nacionais_10 | |
https://cdn-cdn-iguacu.ciclano.io:1443/cdn-iguacu/cdn-iguacu/playlist.m3u8 | |
#EXTINF:-1,3L-TV_ group-title="Nacionais", Canais Nacionais_22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim: set ft=pf | |
# /etc/pf.conf | |
ext_if="vtnet0" | |
webports = "{http, https}" | |
int_tcp_services = "{domain, ntp, smtp, www, https, ftp}" | |
int_udp_services = "{domain, ntp}" | |
set skip on lo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# basic pfctl control | |
# == | |
# Related: http://www.OpenBSD.org | |
# Last update: Tue Dec 28, 2004 | |
# == | |
# Note: | |
# this document is only provided as a basic overview | |
# for some common pfctl commands and is by no means | |
# a replacement for the pfctl and pf manual pages. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def soma_matrizes(A, B): | |
soma = [[A[i][j] + B[i][j] for j in range(len(B[0]))] | |
for i in range(len(A))] | |
return soma if soma_possivel(A, B) else "As matrizes nao sao nxn" | |
def mult_matrizes(A, B): | |
mult = [[sum(A[i][k] * B[k][j] for k in range(len(B))) | |
for j in range(len(B[0]))] for i in range(len(A))] | |
return mult if mult_possivel(A, B) else "Operacao nao eh possivel" |