sábado, 26 de novembro de 2022

Melhorar imagem da tela do computador / laptop

 

Pesquise por "Calibrar cores do vídeo" no menu Iniciar. É uma configuração bem descritiva (tem um passo a passo), então não vou detalhar muito. O que me ajudou mais foi DIMINUIR o GAMA. Sugiro colocar alguma imagem ou tela do lado que esteja bem ruim pra vc, já que a calibragem funciona na hora (não precisa reiniciar), então vc consegue ir vendo o efeito. 


Outro ponto que ajudou foi deixar a Luz Noturna sempre ativa (não sei se o de vcs tem). MAAAAS diminui a Força dela em "Configurações de Exibição" -> "Configurações de luz noturna".


Fonte: https://community.acer.com/pt/discussion/590831/aspire-a315-42-r1b0-tela-muito-ruim



domingo, 13 de novembro de 2022

Relato de alguém que diz ter estado na porta do inferno


Link para este relato em: A volta do gigante. Elomar canta com o público em evento de educação e cultura da Prefeitura de Vitória da Conquista – BLITZ CONQUISTA  https://blitzconquista.com.br/?p=121012

terça-feira, 25 de outubro de 2022

Impropérios - Abadia da Ressureição



Povo Meu, que te fiz Eu? 

Diz em que te contristei.

Que podia mais ter feito?

Em que foi que Eu te faltei?


Agios o theos,
Sanctus Deus, 

Agios ischiros,
Sanctus fortis, 

Agios athanatos eleison imas
Sanctus immortalis — miserere nobis. 

«Santo Deus, Santo forte, Santo imortal, tende piedade de nós! 

cf. Miquéias 6, 3 

segunda-feira, 26 de setembro de 2022

Azure SQL Server high DTU Load


The database was having some 100% spikes without any corresponding change in visits of the site/ API


 

I checked and removed duplicated indexes:




terça-feira, 13 de setembro de 2022

quinta-feira, 1 de setembro de 2022

terça-feira, 30 de agosto de 2022

How to make a HTML element focusable

 


  • tabindex="0" means that the element should be focusable in sequential keyboard navigation, after any positive tabindex values and its order is defined by the document's source order.

domingo, 21 de agosto de 2022

How to enable or disable forced parametrization on Microsoft SQL Server / Azure SQL Database

 

This enables the forced parametrization:

ALTER DATABASE [MyDatabaseName] SET PARAMETERIZATION FORCED

This disables the forced parametrization:

ALTER DATABASE [MyDatabaseName] SET PARAMETERIZATION SIMPLE


Read the Documentation:

https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-set-options?view=sql-server-ver16#syntax


How to show INDEXES on Microsoft SQL Server / Azure SQL Database

To show the indexes on a Table, use the sp_helpindex:

EXEC sp_helpindex N'MyTableNameHere'

For example:

EXEC sp_helpindex N'dbo.CMS_Article'

This will produce a table with the INDEXES listed:





Remarks
If indexes have been set by using the NORECOMPUTE option of UPDATE STATISTICS, that information is included in the index_description column.

sp_helpindex exposes only orderable index columns; therefore, it does not expose information about XML indexes or spatial indexes.

See the Documentation:

quarta-feira, 6 de julho de 2022

How to enable Bass of my JBL Tune 215BT on Windows 11

Windows 11:
  • Start
  • Sound (settings)  
  • More sound settings
  • Choose Enhancements







On Windows 10:
  • Start
  • Change System Sound (on Windows 10)
  • Choose Enhancements

sexta-feira, 11 de março de 2022

Update Ubuntu

do-release-upgrade

Checking for a new Ubuntu release

Please install all available updates for your release before upgrading.

sudo apt upgrade


do-release-upgrade


segunda-feira, 3 de janeiro de 2022

PHP .htaccess

 

Azure App Service on Linux images using PHP 8.x are now bundled with NGINX instead of Apache. The use of .htaccess files will not work for NGINX as these are used for Apache only. This will require the need to setup a custom startup script and modifying the existing NGINX site configuration.


NGINX Rewrite Rules for Azure App Service Linux PHP 8.x - (azureossd.github.io)