4243 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 213
  • thumbnail
    Auto activate and deactivate python venv using zsh - DEV Community
    python_venv() {
      MYVENV=./venv
      # when you cd into a folder that contains $MYVENV
      [[ -d $MYVENV ]] && source $MYVENV/bin/activate > /dev/null 2>&1
      # when you cd into a folder that doesn't
      [[ ! -d $MYVENV ]] && deactivate > /dev/null 2>&1
    }
    autoload -U add-zsh-hook
    add-zsh-hook chpwd python_venv
    May 20, 2022 at 1:59:01 PM GMT+2 * - permalink - archive.org - https://dev.to/moniquelive/auto-activate-and-deactivate-python-venv-using-zsh-4dlm
    python venv zsh
  • Regular Expression HOWTO — Python 3.10.4 documentation

    named group

    May 18, 2022 at 9:36:46 AM GMT+2 - permalink - archive.org - https://docs.python.org/3/howto/regex.html
    group named python re
  • thumbnail
    Complete Guide to getting started with coc.nvim | Develop Paper
    May 13, 2022 at 11:09:48 AM GMT+2 - permalink - archive.org - https://developpaper.com/complete-guide-to-getting-started-with-coc-nvim/
    autocomplete lsp vim
  • thumbnail
    Les Baladeurs : podcast d'aventures et de mésaventures en pleine nature
    May 12, 2022 at 10:13:54 PM GMT+2 - permalink - archive.org - https://www.lesothers.com/podcast-les-baladeurs
    nature podcast voyage
  • window resizer with shortcut
    May 12, 2022 at 2:57:33 PM GMT+2 - permalink - archive.org - https://rectangleapp.com/
    mac window
  • A Tour of Go
    • https://exercism.org/
    • https://quii.gitbook.io/learn-go-with-tests/

    via Laurent

    May 12, 2022 at 10:42:49 AM GMT+2 - permalink - archive.org - https://go.dev/tour/welcome/1
    go
  • thumbnail
    Provide cross-account access to objects in Amazon S3 objects
    May 10, 2022 at 2:50:20 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/premiumsupport/knowledge-center/cross-account-access-s3/
    cross s3
  • IPAM — pynetbox 6.6.2.dev7+g0f1e588 documentation
    May 4, 2022 at 1:56:18 PM GMT+2 - permalink - archive.org - https://pynetbox.readthedocs.io/en/latest/IPAM.html
    ipam lib netbox python
  • thumbnail
    GitHub - Textualize/rich: Rich is a Python library for rich text and beautiful formatting in the terminal.
    • https://pypi.org/project/simple-term-menu/
    • https://click.palletsprojects.com/en/8.1.x/
    May 4, 2022 at 9:58:14 AM GMT+2 - permalink - archive.org - https://github.com/Textualize/rich
    color format python terminal
  • thumbnail
    Terratest | Automated tests for your infrastructure code.
    April 30, 2022 at 8:28:51 PM GMT+2 - permalink - archive.org - https://terratest.gruntwork.io/
    terraform test
  • thumbnail
    Extending HAProxy with the Stream Processing Offload Engine - HAProxy Technologies
    April 27, 2022 at 2:00:24 PM GMT+2 - permalink - archive.org - https://www.haproxy.com/blog/extending-haproxy-with-the-stream-processing-offload-engine/
    haproxy spoe
  • thumbnail
    Using command-line history | Vim Tips Wiki | Fandom

    Navigate through your search history (/) or command history (:) without leaving your home row?

    q:

    q/

    Think "query search" and "query command"

    April 23, 2022 at 7:53:49 PM GMT+2 - permalink - archive.org - https://vim.fandom.com/wiki/Using_command-line_history
    history vim
  • thumbnail
    Pulumi - Modern Infrastructure as Code
    April 22, 2022 at 1:20:51 PM GMT+2 - permalink - archive.org - https://www.pulumi.com/
    terrafom
  • Introduction | asdf

    asdf is a tool version manager. All tool version definitions are contained within one file (.tool-versions) which you can check in to your project's Git repository to share with your team, ensuring everyone is using the exact same versions of tools.

    April 21, 2022 at 1:59:58 PM GMT+2 - permalink - archive.org - https://asdf-vm.com/guide/introduction.html#how-it-works
    tool version
  • Sign git commits on GitHub with GPG in macOS | Samuelsson

    brew install pinentry-mac
    If not existing already create the file ~/.gnupg/gpg-agent.conf and add the following line:
    pinentry-program /usr/local/bin/pinentry-mac
    gpgconf --kill gpg-agent

    April 20, 2022 at 1:41:58 PM GMT+2 - permalink - archive.org - https://samuelsson.dev/sign-git-commits-on-github-with-gpg-in-macos/
    gpg keychain mac
  • thumbnail
    GitHub - FairwindsOps/nova: Find outdated or deprecated Helm charts running in your cluster.
    April 17, 2022 at 9:12:36 AM GMT+2 - permalink - archive.org - https://github.com/FairwindsOps/nova
    audit chart helm kubernetes
  • thumbnail
    Create a managed Amazon MemoryDB for Redis Cluster using the ACK MemoryDB Controller - ACK

    "Create Amazon MemoryDB Cluster Instances#

    You can create Amazon MemoryDB Clusters using the Cluster custom resource"

    They really name their CRD "Cluster" ?? :facepalm:

    April 16, 2022 at 11:03:14 AM GMT+2 - permalink - archive.org - https://aws-controllers-k8s.github.io/community/docs/tutorials/memorydb-example/
    aws crd memorydb redis
  • When to use the keyword type vs text datatype in Elasticsearch | ObjectRocket
    April 15, 2022 at 1:53:59 PM GMT+2 - permalink - archive.org - https://kb.objectrocket.com/elasticsearch/when-to-use-the-keyword-type-vs-text-datatype-in-elasticsearch
    elasticsearch type
  • Note: Design applicatif

    Don't Repeat Yourself (DRY) : https://fr.wikipedia.org/wiki/Ne_vous_r%C3%A9p%C3%A9tez_pas
    Keep It Simple, Stupid (KISS) : https://fr.wikipedia.org/wiki/Principe_KISS
    You aren't gonna need it (YAGNI) : https://fr.wikipedia.org/wiki/YAGNI
    Boy Scout Rule : https://97-things-every-x-should-know.gitbooks.io/97-things-every-programmer-should-know/content/en/thing_08/
    Single Responsibility Principle (SRP) : https://en.wikipedia.org/wiki/Single-responsibility_principle
    Dependency inversion principle (DIP) : https://en.wikipedia.org/wiki/Dependency_inversion_principle
    4 règles du design simple : https://martinfowler.com/bliki/BeckDesignRules.html
    Query Command Separation : https://martinfowler.com/bliki/CommandQuerySeparation.html
    Design Pattern : https://refactoring.guru/design-patterns
    Clean/Hexagonal/Onion architecture : https://blog.octo.com/application-domain-infrastructure-des-mots-de-la-layered-hexagonal-clean-architecture/

    April 15, 2022 at 11:48:20 AM GMT+2 - permalink - archive.org - https:///?RrVd5w
    app cod design kiss
  • thumbnail
    GitHub - koreader/koreader: An ebook reader application supporting PDF, DjVu, EPUB, FB2 and many more formats, running on Cervantes, Kindle, Kobo, PocketBook and Android devices

    Alternative os for reader

    April 13, 2022 at 8:46:48 AM GMT+2 - permalink - archive.org - https://github.com/koreader/koreader
    alternative kindle kobo reader
Links per page: 20 50 100
◄Older
page 1 / 213
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation