x
View main.go
This file contains 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
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
"time" | |
) | |
var expectedPort = 80 |
View regression.py
This file contains 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
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim:fenc=utf-8 | |
# | |
""" | |
A partir de una serie de medidas de presión y el correspondiente volumen, | |
aproximar una función polinómica. | |
""" |
View entendiendo_mds.py
This file contains 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
#! /usr/bin/env pytho2 | |
# -*- coding: utf-8 -2- | |
# vim:fenc=utf-8 | |
# | |
# Copyright © 2022 adrian <adrian@arco> | |
# | |
# Distributed under terms of the MIT license. | |
""" | |
Representamos en 2d y 3d un número de puntos que entre ellos siempre están |
View load_skydive_topology.py
This file contains 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
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim:fenc=utf-8 | |
""" | |
Leer la topologia de un fichero JSON y cargarlo en skydive | |
""" | |
import json | |
from tqdm import tqdm |
View test_xiaomi_alarm.py
This file contains 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
from ble_monitor.ble_parser import BleParser | |
import struct | |
class TestXiaomi: | |
"""Tests for the Xiaomi parser""" | |
def test_Xiaomi_RTCGQ02LM(self): | |
"""Simulando el dispositivo y añadiendo algún sensor adicional (switch)""" | |
data_string = "02" # ext_packet=True si 0x0D |
View ble_get_services.py
This file contains 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
""" | |
Get services, characteristics and descriptors for a BLE device | |
""" | |
import sys | |
import asyncio | |
import platform | |
from bleak import BleakClient | |
ADDRESS = ( "20:C3:8F:8A:5B:EA") |
View Pipfile
This file contains 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
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
pyserial = "*" | |
requests = "*" | |
[dev-packages] |
View exec_other_ns.go
This file contains 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
/* | |
* Execute a command under a different network namespace | |
*/ | |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" |
View Makefile
This file contains 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
all: build playbook | |
build: | |
cd library && go build -o helloworld helloworld_src.go && cd .. | |
playbook: | |
DEFAULT_MODULE_PATH=~/.ansible/plugins/modules:/usr/share/ansible/plugins/modules:./modules/ ansible-playbook play.yaml | |
# vim:ft=make |
NewerOlder