Skip to content

Instantly share code, notes, and snippets.

//Bibliotecas para o display com I2C
#include <LCD.h>
#include <LiquidCrystal.h>
#include <LiquidCrystal_I2C.h>
#include <LiquidCrystal_SR.h>
#include <LiquidCrystal_SR3W.h>
#include <Wire.h>
#include <Keypad.h>
#define lcdprint(x, y, text) lcd.setCursor(x, y); lcd.print(text)
<!DOCTYPE html>
<html>
<body>
<%
Response.Write("Hello World!")
%>
</body>
</html>
<?php
// Inclui a conexão
include_once('../../../../Connections/cartografia.php');
// Criando a consulta ao Banco de dados
$resultado = mysql_query('SELECT * FROM markers ORDER BY id ASC');
while($dados = mysql_fetch_array($resultado)) {
echo 'Nome: '.$dados['name'].', e-mail: '.$dados['type'].'<br />';
echo "<script>";
from types import FunctionType
import inspect
def extract_wrapped(decorated):
closure = (c.cell_contents for c in decorated.__closure__)
return next((c for c in closure if isinstance(c, FunctionType)), None)
inspect.getsource(extract_wrapped(your_func))