Algumas fotos e algumas coisas

Postado 17:03 04/08/2016 por Thiago Condé COMPARTILHAR

Escrevendo em LCD com #arduino!!Criando em papel adesivo etiquetas para #cartuchos de tinta #recargaLoja as vezes fica bagunçada, mas prefiro a conquista da liberdade!! Testando o EDGE do #wim10 e #programando a loja e os #produtos do site...Onde se iniciou o site da CondTEC, meio notebook :)  Continuar lendo

Minha configuração Ubuntu 17

Postado 01:19 23/04/2018 por THIAGO CONDÉ COMPARTILHAR

Instalação Inkscape:sudo add-apt-repository ppa:inkscape.dev/stable -y && sudo apt-get update && sudo apt-get install inkscape -y dconf Editor sudo apt-get install dconf-toolsGo to org -> gnome -> settings-daemon -> plugins -> xsettings and change overrides key from{'Gtk/ButtonImages': , 'Gtk/MenuImages': }Install LAMP Stack – (Linux, Apache, MariaDB/MySQL, PHP)sudo apt-get install apache2 php mysql-serverInstall phpMyAdmin on Ubuntu 16.04sudo apt-get install phpmyadminsudo nano... Continuar lendo

Your password does not satisfy the current policy requirements

Postado 11:52 14/07/2022 por THIAGO CONDÉ COMPARTILHAR

I want to create a new user in MySQL with the syntax:create user 'demo'@'localhost' identified by 'password'; But it returns an error:Your password does not satisfy the current policy requirements.I have tried many passwords but they don't work. How can I fix this?For MySQL 8 you can use the following script:SET GLOBAL validate_password.LENGTH = 4; SET GLOBAL validate_password.policy = 0; SET GLOBAL validate_password.mixed_case_count = 0; SET GLOBAL validate_password.number_count = 0; SET... Continuar lendo