Skip to content

Instantly share code, notes, and snippets.

View DineshKuppan's full-sized avatar
🎯
Focusing

Dinesh DineshKuppan

🎯
Focusing
View GitHub Profile

📱Valet

A Decentralized Automated Testing Network

🙈 tl;dr:

Valet is a decentralized test automation network where developers run tests on real devices (iOS or Android), and device owners get paid for executing them. Using Nostr for discovery, Lightning for payments, and Raspberry Pi nodes for execution, it’s less expensive, more open, and more scalable than traditional test clouds. Built by Jason Huggins (Selenium, Appium, Sauce Labs), Valet is an experiment in P2P testing at scale. 🚀

@atsuoishimoto
atsuoishimoto / timelog.py
Created July 23, 2019 04:57
measure time
import inspect, builtins, threading, time
import itertools
class _Section:
def __init__(self, log, ref, funcname, filename, lineno):
self._log = log
self._ref = ref
self._funcname = funcname
self._filename = filename
self._lineno = lineno