brsaneconfig4 -a name=NOME_PARA_O_SCANNER model=MODELO_SCANNER(Ex. DCP-L2520DW) ip=IP_DO_SCANNER
Tem sim mano:
git fetch --all;
git reset --hard origin/<branch-desejada>
git fetch vai trazer todas as alteraรงรตes do repositรณrio remoto sem fazer um merge ou um rebase.
git reset vai resetar sua branch para ficar igual ao estado do que vocรช acabou de dar o "git fetch". O -- hard muda todos os seus arquivos para que eles fiquem idรชnticos ao da origin/branch-desejada.
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
#------------------------------------------------------------------------------------------------------- | |
#if [ "$color_prompt" = yes ]; then | |
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
#else | |
#PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' | |
#fi | |
#unset color_prompt force_color_prompt | |
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
#!/bin/bash | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Postgresql PITR - Backup Incremental # | |
# # | |
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = # | |
# # | |
# Parte 1 - Configuraรงรฃo # | |
# # |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# http://wiki.nginx.org/Pitfalls | |
# http://wiki.nginx.org/QuickStart | |
# http://wiki.nginx.org/Configuration | |
# | |
# Generally, you will want to move this file somewhere, and start with a clean | |
# file but keep this around for reference. Or just disable in sites-enabled. | |
# |
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 a mySQL table to hold hashed passwords and random salt | |
-- | |
-- SQL create script for for table `users` | |
-- | |
CREATE TABLE IF NOT EXISTS `users` ( | |
`user_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, | |
`email` varchar(30) NOT NULL, | |
`reg_date` date NOT NULL, |
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 | |
tablename, | |
auditoria.func_criar_tabela_auditoria(tablename, false) | |
from | |
pg_tables | |
where | |
schemaname = 'public' | |
order by | |
tablena |
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 schema auditoria; | |
create table auditoria.ta_padrao ( | |
id_auditoria bigint not null, | |
dt_auditoria timestamp not null, | |
op_auditoria char(1) not null, | |
pid int not null, | |
application_name text not null, | |
client_hostname text not null | |
); |
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 or replace function auditoria.func_application_name(iprocpid int) returns text as | |
$body$ | |
declare | |
tApplicationName text; | |
begin | |
select | |
application_name into tApplicationName | |
from | |
pg_stat_activity | |
where |
NewerOlder