4353 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 27 / 218
Newer►
  • Meld

    à tester

    10 août 2019 à 13:42:04 UTC+2 - permalink - archive.org - https://meldmerge.org/
    diff git merge tool
  • thumbnail
    Managing PostgreSQL users and roles | AWS Database Blog

    A faire en superuser:

    -- Revoke privileges from 'public' role
    REVOKE CREATE ON SCHEMA public FROM PUBLIC;
    REVOKE ALL ON DATABASE mydatabase FROM PUBLIC;

    -- Create schema
    CREATE SCHEMA myschema

    -- Read-only role
    CREATE ROLE readonly;
    GRANT CONNECT ON DATABASE mydatabase TO readonly;
    GRANT USAGE ON SCHEMA myschema TO readonly;
    GRANT SELECT ON ALL TABLES IN SCHEMA myschema TO readonly;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT ON TABLES TO readonly;

    -- Read/write role
    CREATE ROLE readwrite;
    GRANT CONNECT ON DATABASE mydatabase TO readwrite;
    GRANT USAGE, CREATE ON SCHEMA myschema TO readwrite;
    GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO readwrite;
    GRANT USAGE ON ALL SEQUENCES IN SCHEMA myschema TO readwrite;
    ALTER DEFAULT PRIVILEGES IN SCHEMA myschema GRANT USAGE ON SEQUENCES TO readwrite;

    -- Users creation
    CREATE USER reporting_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER reporting_user2 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user1 WITH PASSWORD 'some_secret_passwd';
    CREATE USER app_user2 WITH PASSWORD 'some_secret_passwd';

    -- Grant privileges to users
    GRANT readonly TO reporting_user1;
    GRANT readonly TO reporting_user2;
    GRANT readwrite TO app_user1;
    GRANT readwrite TO app_user2;

    3 août 2019 à 16:10:30 UTC+2 * - permalink - archive.org - https://aws.amazon.com/fr/blogs/database/managing-postgresql-users-and-roles/
    aws postgresql rds
  • Enable or Disable Close Tab by Double Click in Firefox | Tutorials

    about:config
    browser.tabs.closeTabByDblclick

    2 août 2019 à 15:25:42 UTC+2 - permalink - archive.org - https://www.tenforums.com/tutorials/113005-enable-disable-close-tab-double-click-firefox.html
    firefox
  • thumbnail
    avsm/docker-ssh-agent-forward: Forward SSH agent socket into a container
    30 juillet 2019 à 08:26:21 UTC+2 - permalink - archive.org - https://github.com/avsm/docker-ssh-agent-forward
    docker mac mount ssh
  • thumbnail
    GitHub - scrooloose/nerdtree: A tree explorer plugin for vim.

    Comment j'ai fait pour me passer de nerdtree?

    29 juillet 2019 à 15:50:41 UTC+2 - permalink - archive.org - https://github.com/scrooloose/nerdtree
    vim
  • Iterm Themes - Color Schemes and Themes for Iterm2
    28 juillet 2019 à 11:43:48 UTC+2 - permalink - archive.org - https://iterm2colorschemes.com/
    color iterm2 mac
  • thumbnail
    GitHub - tmux-plugins/tmux-continuum: Continuous saving of tmux environment. Automatic restore when tmux is started. Automatic tmux start when computer is turned on.

    Encore mieux que tmux-resurrect

    25 juillet 2019 à 08:12:01 UTC+2 - permalink - archive.org - https://github.com/tmux-plugins/tmux-continuum
    tmux
  • thumbnail
    How to use custom workflows and restrict actions by username · Issue #701 · runatlantis/atlantis · GitHub

    https://unix.stackexchange.com/questions/111508/bash-test-if-word-is-in-set

    24 juillet 2019 à 09:17:28 UTC+2 * - permalink - archive.org - https://github.com/runatlantis/atlantis/issues/701
    atlantis terraform
  • AWS Fargate Pricing Calculator

    0,25 vCPU + 0,5GB = 9,010$ (1 month)

    23 juillet 2019 à 18:25:07 UTC+2 - permalink - archive.org - http://fargate-pricing-calculator.site.s3-website-us-east-1.amazonaws.com/
    aws fargate
  • 1x Engineer
    18 juillet 2019 à 19:49:35 UTC+2 - permalink - archive.org - https://1x.engineer/
    engineer
  • Terraform: terraform_remote_state - Terraform by HashiCorp
    12 juillet 2019 à 13:54:34 UTC+2 - permalink - archive.org - https://www.terraform.io/docs/providers/terraform/d/remote_state.html
    aws data terraform
  • PostgreSQL: Documentation: 11: 34.15. The Password File
    12 juillet 2019 à 11:22:59 UTC+2 - permalink - archive.org - https://www.postgresql.org/docs/current/libpq-pgpass.html
    postgresql
  • thumbnail
    Voici l'emplacement des 8 fontaines d’eau pétillante gratuites de Paris - Carnets de Week-Ends
    8 juillet 2019 à 20:30:33 UTC+2 - permalink - archive.org - https://www.carnetsdeweekends.fr/voici-lemplacement-8-fontaines-deau-petillante-gratuites-de-paris/
    eau paris
  • thumbnail
    Announcing Amazon VPC Traffic Mirroring for Amazon EC2 Instances
    3 juillet 2019 à 15:39:40 UTC+2 - permalink - archive.org - https://aws.amazon.com/about-aws/whats-new/2019/06/announcing-amazon-vpc-traffic-mirroring-for-amazon-ec2-instances/
    aws mirror network
  • Note: postgre

    voir obsidian "Postgresql pg survival"

    3 juillet 2019 à 14:38:58 UTC+2 * - permalink - archive.org - https://links.infomee.fr/?IImegQ
    postgresql
  • AWS Systems Manager Session Manager - AWS Systems Manager

    interessant

    28 juin 2019 à 10:44:14 UTC+2 - permalink - archive.org - https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
    aws ssh ssm
  • Frequently Asked Questions — Ansible Documentation
    27 juin 2019 à 17:28:27 UTC+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-configure-a-jump-host-to-access-servers-that-i-have-no-direct-access-to
    ansible bastion jump ssh
  • thumbnail
    Secure your instances with multi-factor authentication | AWS Startups Blog
    12 juin 2019 à 18:18:16 UTC+2 - permalink - archive.org - https://aws.amazon.com/fr/blogs/startups/securing-ssh-to-amazon-ec2-linux-hosts/
    aws mfa ssh
  • thumbnail
    coolaj86/browser-authenticator.js: Two- / Multi- Factor Authenication (2FA / MFA / OTP) for browser JavaScript - browser-authenticator.js - CoolAJ86 on GIT
    12 juin 2019 à 15:48:16 UTC+2 - permalink - archive.org - https://git.coolaj86.com/coolaj86/browser-authenticator.js
    auth authenticator google mfa
  • thumbnail
    Git Tree Compare - Visual Studio Marketplace
    7 juin 2019 à 17:12:57 UTC+2 - permalink - archive.org - https://marketplace.visualstudio.com/items?itemName=letmaik.git-tree-compare
    git tree
Links per page: 20 50 100
◄Older
page 27 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation