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
UX's Tools | |
Marvel Prototyping - https://marvelapp.com | |
InVision - https://www.invisionapp.com | |
Sketch - http://www.sketchapp.com | |
Axure - http://www.axure.com | |
Balsamig - https://balsamiq.com | |
FramerJS - http://framerjs.com | |
Pixate - http://www.pixate.com | |
Weld |
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
Ext.Ajax.timeout = 60000; | |
Application.CONF.DECIMAL_PRECISION = 2; | |
Application.CONF.DEFAULT_PAGE_SIZE = 50; | |
//Configurações Padrão para aplicações específicas em português do Brasil | |
Ext.apply(Ext.util.Format, { | |
thousandSeparator: '.', | |
decimalSeparator: ',', | |
currencySign: '', |
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
Verifying that +djhonyy is my blockchain ID. https://onename.com/djhonyy |
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
CREATE TABLE IF NOT `Cidade` ( | |
`IdCidade` INT(11) NOT NULL AUTO_INCREMENT, | |
`IdEstado` TINYINT(3) UNSIGNED NOT NULL, | |
`NomeCidade` VARCHAR(60) NOT NULL, | |
`SiglaCidade` VARCHAR(4) NULL DEFAULT NULL, | |
`CodigoIBGE` MEDIUMINT(9) UNSIGNED NULL DEFAULT NULL, | |
`Status` CHAR(1) NOT NULL DEFAULT 'A', | |
PRIMARY KEY (`IdCidade`), | |
INDEX `IDXCidade` (`IdEstado` ASC), | |
CONSTRAINT `FKCidade_Estado` |
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
CREATE TABLE IF NOT EXISTS `Estado` ( | |
`IdEstado` TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT, | |
`NomeEstado` VARCHAR(40) NOT NULL, | |
`SiglaEstado` CHAR(2) NOT NULL, | |
`CodigoIBGE` TINYINT(3) UNSIGNED NULL DEFAULT NULL, | |
`Status` CHAR(1) NOT NULL DEFAULT 'A', | |
PRIMARY KEY (`IdEstado`)) | |
ENGINE = InnoDB | |
DEFAULT CHARACTER SET = latin1; |
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
CREATE TABLE IF NOT EXISTS `BandeiraCartao` ( | |
`IdBandeiraCartao` INT(11) NOT NULL, | |
`NomeBandeiraCartao` VARCHAR(40) NOT NULL, | |
`Status` CHAR(1) NOT NULL DEFAULT 'A', | |
PRIMARY KEY (`IdBandeiraCartao`)) | |
ENGINE = InnoDB | |
INSERT INTO `BandeiraCartao` (`IdBandeiraCartao`, `NomeBandeiraCartao`, `Status`) VALUES (38, 'AMERICAN EXPRESS - AMEX', 'A'); | |
INSERT INTO `BandeiraCartao` (`IdBandeiraCartao`, `NomeBandeiraCartao`, `Status`) VALUES (39, 'MASTERCARD', 'A'); | |
INSERT INTO `BandeiraCartao` (`IdBandeiraCartao`, `NomeBandeiraCartao`, `Status`) VALUES (40, 'HIPERCARD', 'A'); |
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
CREATE TABLE IF NOT EXISTS `Banco` ( | |
`IdBanco` VARCHAR(45) NOT NULL, | |
`CodigoBanco` VARCHAR(6) NOT NULL, | |
`NomeBanco` VARCHAR(120) NOT NULL, | |
`Status` CHAR(1) NOT NULL DEFAULT 'A', | |
PRIMARY KEY (`IdBanco`) | |
ENGINE = InnoDB | |
INSERT INTO `Banco` (`IdBanco`, `CodigoBanco`, `NomeBanco`, `Status`) VALUES ('1', '001', 'Banco do Brasil S.A.', 'A'); | |
INSERT INTO `Banco` (`IdBanco`, `CodigoBanco`, `NomeBanco`, `Status`) VALUES ('2', '341', 'Banco Itaú S.A.', 'A'); |
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
CREATE TABLE `Ocupacao` ( | |
`IdOcupacao` int(11) NOT NULL AUTO_INCREMENT, | |
`NomeOcupacao` varchar(240) NOT NULL, | |
PRIMARY KEY (`IdOcupacao`) | |
) ENGINE=InnoDB AUTO_INCREMENT=32181 DEFAULT CHARSET=latin1 | |
INSERT INTO `Ocupacao` (`IdOcupacao`, `NomeOcupacao`) VALUES (16091, 'Superintendente de seção de estimativa de custos'); | |
INSERT INTO `Ocupacao` (`IdOcupacao`, `NomeOcupacao`) VALUES (16092, 'Chefe de assessoria de planejamento econômico'); | |
INSERT INTO `Ocupacao` (`IdOcupacao`, `NomeOcupacao`) VALUES (16093, 'Médico'); | |
INSERT INTO `Ocupacao` (`IdOcupacao`, `NomeOcupacao`) VALUES (16094, 'Professor de religião (no ensino superior)'); |
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
Extreme Web Performance | |
https://docs.google.com/presentation/d/1S7i_Z204o5LjaSBzQtxyrhDWfKH3UninQ1-EhaZaAPE/edit#slide=id.p | |
WPO – Web Performance Optimization | |
http://www.stevesouders.com/blog/2010/05/07/wpo-web-performance-optimization/ | |
Creating a Performance Culture | |
http://www.stevesouders.com/blog/2013/05/17/creating-a-performance-culture/ | |
How To Optimize Your Site With GZIP Compression |
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
Quatro pessoas tem idades tais que a soma das três primeiras é 73 anos, a soma das três | |
últimas é 60 anos, a primeira somada com as duas últimas é 63 anos, e a última somada com | |
as duas primeiras é 68 anos. Nesse caso, a mais velha das quatro pessoas tem quantos anos? | |
A) 30 | |
B) 28 | |
C) 32 | |
D) 29 | |
E) 31 |
NewerOlder