I use it. If you don't, read these:
You can still ignore semicolons, but know that ASI is a syntactic error correction procedure,
<html> | |
<head> | |
</head> | |
<body> | |
<form onsubmit="return false;"> | |
<input id="textfield" value="www" onchange=" | |
var basedomain = document.getElementById('basedomain').value; | |
var value = this.value; | |
var finalurl = 'http://'+value+'.'+basedomain; | |
alert('Tentado acessar: '+finalurl); |
<html> | |
<head> | |
</head> | |
<body> | |
<form onsubmit="return false;"> | |
<input id="textfield" value="0001" onchange=" | |
var value = this.value; | |
if(value){ | |
confirm('Abrindo URL para Cliente: '+value); | |
var finalurl = 'https://minhaurl.com.br/cadastro.php?cda='+value; |
<?php | |
require_once "lib/spyc.php"; | |
$obj = Spyc::YAMLLoad('videos.yml'); | |
//print_r($obj); | |
foreach($obj as $grupo){ | |
echo "<h1>".$grupo['video']."</h1>"; | |
echo "<h3><strong>Arquivo:</strong>".$grupo['arquivo']."</h2>"; | |
echo "<p>".$grupo['descricao']."</p>"; | |
program httpstream; | |
uses | |
Forms, | |
Ustream in 'Ustream.pas' {Fstream}; | |
{$R *.res} | |
begin | |
Application.Initialize; |
#!/usr/bin/perl -w | |
use strict; | |
use IO::Socket; | |
my ($host, $port, $kidpid, $handle, $line); | |
unless (@ARGV == 2) { die "usage: $0 host port" } | |
($host, $port) = @ARGV; | |
# create a tcp connection to the specified host and port | |
$handle = IO::Socket::INET->new(Proto => "tcp", |
<?php | |
/* | |
Sistema: Sistema | |
Finalidade: Classe para conexão com o banco de dados (postgresql ou mysql). | |
Autor: Wanderson Ferreira Dias | |
Observacao: | |
Alteracoes: | |
Nro Data Autor - Alteracao | |
--- -------- ------------------------------------------------------------------- | |
001 20.05.06 Wanderson - 1º versão do programa |
I use it. If you don't, read these:
You can still ignore semicolons, but know that ASI is a syntactic error correction procedure,
FastSerialPort0(Serial); | |
FastSerialPort2(serialGPS); | |
FastSerialPort1(serialIMU); | |
Encoder encoder(2,3); | |
void loop(){ | |
Serial.println(readGPS(true)); | |
Serial.println(readIMU()); |
This is OK!! | |
This is OK!! | |
This is OK!! | |
This is OK!! | |
This is OK!! |
// We'll use timers 3 and 4 | |
HardwareTimer timer3(3); | |
HardwareTimer timer4(4); | |
void setup() { | |
// Pause the timer while we're configuring it |