4353 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 26 / 218
Newer►
  • thumbnail
    scroll - How to move screen without moving cursor in Vim? - Stack Overflow

    Additionally:

    Ctrl-y Moves screen up one line
    Ctrl-e Moves screen down one line
    Ctrl-u Moves cursor & screen up ½ page
    Ctrl-d Moves cursor & screen down ½ page
    Ctrl-b Moves screen up one page, cursor to last line
    Ctrl-f Moves screen down one page, cursor to first line

    Ctrl-y and Ctrl-e only change the cursor position if it would be moved off screen.

    August 26, 2019 at 1:49:05 PM GMT+2 - permalink - archive.org - https://stackoverflow.com/questions/3458689/how-to-move-screen-without-moving-cursor-in-vim
    move vim
  • Note: tag git annotated

    git tag -a 1.0.1 -m "1.0.1"
    git push --tags

    August 23, 2019 at 2:41:49 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?UJKhew
    git tag
  • Working with GPUs on Amazon ECS - Amazon Elastic Container Service
    August 21, 2019 at 5:55:26 PM GMT+2 - permalink - archive.org - https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html
    aws gpu
  • API failures Error Messages - Amazon Elastic Container Service

    Your task definition contains a parameter that requires a specific container instance attribute that is not available on your container instances. For example, if your task uses the awsvpc network mode, but there are no instances in your specified subnets with the ecs.capability.task-eni attribute. For more information about which attributes are required for specific task definition parameters and agent configuration variables, see Task Definition Parameters and Amazon ECS Container Agent Configuration.

    August 21, 2019 at 4:29:09 PM GMT+2 - permalink - archive.org - https://docs.amazonaws.cn/en_us/AmazonECS/latest/developerguide/api_failures_messages.html
    aws ecs
  • thumbnail
    How do I reorder tmux windows? - Super User

    bind-key -n C-S-Left swap-window -t -1
    bind-key -n C-S-Right swap-window -t +1

    Pressing Ctrl+Shift+Left (will move the current window to the left. Similarly right. No need to use the modifier (C-b).

    August 21, 2019 at 11:21:10 AM GMT+2 - permalink - archive.org - https://superuser.com/questions/343572/how-do-i-reorder-tmux-windows
    tmux
  • thumbnail
    GitHub - dhruvasagar/vim-zoom: Toggle zoom in / out individual windows (splits)
    August 20, 2019 at 5:57:51 PM GMT+2 - permalink - archive.org - https://github.com/dhruvasagar/vim-zoom
    plugin vim zoom
  • HTTPie – command line HTTP client
    August 18, 2019 at 11:59:55 AM GMT+2 - permalink - archive.org - https://httpie.org/
    curl
  • Curlie | curlie
    August 18, 2019 at 11:59:40 AM GMT+2 - permalink - archive.org - https://curlie.io/
    curl
  • Best Practices — Ansible Documentation

    ansible directory structure

    August 17, 2019 at 5:52:36 PM GMT+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/user_guide/playbooks_best_practices.html
    ansible
  • thumbnail
    Is better way to zoom windows in Vim than ZoomWin? - Stack Overflow

    I try to use vim without any plugins as I don't want to rely on them when I work on another system. Coming upon this same issue now, I can propose some 'better ways' (alternative ways) as requested by the OP:

    c-w-| to have window take over (if using vsplits). c-w-= to restore. c-w-_ for horizontal splits
    close the other window(s), thereby making current one fullscreen. Split and re-open from buffer to restore
    August 17, 2019 at 5:43:34 PM GMT+2 - permalink - archive.org - https://stackoverflow.com/questions/13194428/is-better-way-to-zoom-windows-in-vim-than-zoomwin
    vim zoom
  • thumbnail
    All the right moves | Vim Tips Wiki | FANDOM powered by Wikia
    August 16, 2019 at 5:04:24 PM GMT+2 - permalink - archive.org - https://vim.fandom.com/wiki/All_the_right_moves
    move vim
  • Writing a Kubernetes Operator in Python without frameworks and SDK

    simple example on how to write a kubernetes operator

    August 16, 2019 at 4:26:20 PM GMT+2 - permalink - archive.org - https://medium.com/flant-com/kubernetes-operator-in-python-451f2d2e33f3
    k8s operator python
  • thumbnail
    Jerry Hargrove | History of Amazon Web Services

    SQS first service :|

    August 15, 2019 at 2:03:03 PM GMT+2 - permalink - archive.org - https://www.awsgeek.com/pages/AWS-History/
    aws history
  • thumbnail
    Support for pulling ECR images from another AWS account? · Issue #308 · aws/amazon-ecs-agent · GitHub

    $(aws ecr get-login –registry-ids <accountID_of_repository> --region <region>)

    August 12, 2019 at 5:31:52 PM GMT+2 - permalink - archive.org - https://github.com/aws/amazon-ecs-agent/issues/308
    crossaccount ecr
  • thumbnail
    postgresql - List the database privileges using psql - Database Administrators Stack Exchange

    SELECT grantee, table_name , privilege_type
    FROM information_schema.role_table_grants
    WHERE grantee = 'readwrite'

    August 12, 2019 at 1:40:22 PM GMT+2 - permalink - archive.org - https://dba.stackexchange.com/questions/4286/list-the-database-privileges-using-psql
    grants postgresql
  • thumbnail
    pgadmin - PostgreSQL, display role members - Database Administrators Stack Exchange

    SELECT r.rolname as username,r1.rolname as "role"
    FROM pg_catalog.pg_roles r LEFT JOIN pg_catalog.pg_auth_members m
    ON (m.member = r.oid)
    LEFT JOIN pg_roles r1 ON (m.roleid=r1.oid)
    WHERE r.rolcanlogin
    ORDER BY 1;

    August 12, 2019 at 1:37:32 PM GMT+2 * - permalink - archive.org - https://dba.stackexchange.com/questions/136858/postgresql-display-role-members
    permissions postgresql role
  • terraform-aws-ecs-scheduled-task/main.tf at master · dxw/terraform-aws-ecs-scheduled-task · GitHub

    TIL : les ECS scheduled tasks sont en fait trigger par cloudwatch

    August 12, 2019 at 9:42:09 AM GMT+2 - permalink - archive.org - https://github.com/dxw/terraform-aws-ecs-scheduled-task/blob/master/main.tf
    ecs task
  • Downloads & Changelog
    August 12, 2019 at 9:40:05 AM GMT+2 - permalink - archive.org - https://omnidb.org/en/downloads-en
    client postgresql
  • thumbnail
    arl/tmux-gitbar: Git in your tmux status bar
    August 10, 2019 at 1:44:09 PM GMT+2 - permalink - archive.org - https://github.com/arl/tmux-gitbar#installation
    git tmux
  • Note: ssm links

    https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-sessions-start.html#sessions-start-ssh

    https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started-enable-ssh-connections.html

    August 10, 2019 at 1:43:30 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Hgv05w
    aws ssm
Links per page: 20 50 100
◄Older
page 26 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation