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
<!DOCTYPE html> | |
<html></html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Algar Tech Print - Relatório Tendência</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src="https://code.highcharts.com/highcharts.src.js"></script> | |
<script> | |
window.addEventListener('load', function(){ |
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
.test{ | |
transition: background-color 0.5 ease; | |
background: #f00; | |
} | |
.test:hover{ | |
background: #fff; | |
} |
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
$(document).ready(function(){ | |
var MainCaroussel = { | |
init: function(){ | |
$('.caroussel-wrapper').on('click', MainCaroussel.nav); | |
}, | |
nav : function() { | |
var caroussel = $('#caroussel-list'), | |
carousselItem = caroussel.find('li'), | |
limite = carousselItem.length; | |
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
import java.awt.BorderLayout; | |
import javax.swing.JFrame; | |
import javax.swing.JLabel; | |
import javax.swing.JPanel; | |
public class main extends JFrame { | |
JPanel panel; |
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
SELECT * FROM clientes WHERE | |
idade <= 20, | |
totalPedidos > 30; |
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
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); | |
ctx.fillStyle = "#FF0000"; | |
ctx.fillRect(0,0,150,75); |
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
body{ | |
background-color: #ebeeff; | |
background-image: url(../imagens/bgs/01.png); | |
} | |
#logoCliente{ | |
margin-top: 5%; | |
margin-left: 38%; | |
margin-bottom: 20px; | |
} |
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
$db = new PDO('mysql:host=localhost:3306;dbname=db','root',''); | |
$stm = $db->prepare('SELECT * FROM db.usuario'); | |
$result = $stm->execute(); | |
$usuarios = array(); | |
while($row = $stm->fetchObject()) | |
{ | |
$usuarios[] = $row->nome; | |
} | |
/* |
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
#include<stdio.h> | |
#include<stdlib.h> | |
int main(void){ | |
int opcao, senha, nr_parcelas; | |
float valor_produto, total, valor_parcela, acrescimo; | |
printf("**** Sistema Financeiro ****\n\n"); |
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
#include<stdio.h> | |
#include<stdlib.h> | |
int main(void){ | |
int opcao, senha, nr_parcelas; | |
float valor_produto, total, valor_parcela, acrescimo; | |
printf("**** Sistema Financeiro ****\n\n"); |
NewerOlder