4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 9 / 170
Newer►
  • thumbnail
    CLI tools you won't be able to live without 🔧 - DEV Community 👩‍💻👨‍💻

    via Victor, pas mal de trucs que j'utilisais, d'autres que je découvre!

    January 23, 2023 10:48:15 AM GMT+01:00 * - permalink -
    QRCode
    - https://dev.to/lissy93/cli-tools-you-cant-live-without-57f6
    tools linux
  • Accessible Color Palette Generator | WCAG Compliant
    January 18, 2023 02:50:35 PM GMT+01:00 * - permalink -
    QRCode
    - https://venngage.com/tools/accessible-color-palette-generator
    daltonisme couleurs dashboard grafana
  • Moa
    January 17, 2023 06:39:53 PM GMT+01:00 * - permalink -
    QRCode
    - https://moa.party/
    twitter mastodon
  • Guide d’Autodéfense Numérique

    Un truc qui devrait être au programme de 6eme

    January 16, 2023 10:08:35 AM GMT+01:00 * - permalink -
    QRCode
    - https://guide.boum.org/pr%C3%A9face-%C3%A0-cette-%C3%A9dition.html
    hacking hack ethical civic education
  • thumbnail
    Google’s New AI: Fly INTO Photos…But Deeper! 🐦 - YouTube

    amazing

    January 13, 2023 06:32:22 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.youtube.com/watch?v=H-pTZf1zsa8
    ia gpt3 stablediffusion openai
  • thumbnail
    Conventional Comments

    code review hints > this should be on each and every onboarding

    January 11, 2023 09:07:27 AM GMT+01:00 * - permalink -
    QRCode
    - https://conventionalcomments.org/
    code comment review
  • thumbnail
    Theory-building and why employee churn is lethal to software companies – Baldur Bjarnason

    Churn is destructive
    Constant churn in a software development team, both among the programmers and designers, is absolutely devastating. It is the death knell for a software project. Makes deadlines meaningless. It turns software into a disposable, single-use product like a paper towel. Anything that increases team member churn threatens the very viability of the project and the software it’s creating.

    January 11, 2023 08:49:57 AM GMT+01:00 * - permalink -
    QRCode
    - https://www.baldurbjarnason.com/2022/theory-building/
    churn management
  • Turning Google smart speakers into wiretaps for $100k
    January 4, 2023 12:48:25 PM GMT+01:00 * - permalink -
    QRCode
    - https://downrightnifty.me/blog/2022/12/26/hacking-google-home.html
    secu sécurité security google home domotique
  • thumbnail
    LE GRAND ÉCHIQUIER - Zbigniew Brzezinski - Élucid

    édifiant

    December 31, 2022 02:06:04 PM GMT+01:00 * - permalink -
    QRCode
    - https://elucid.media/politique/le-grand-echiquier-zbigniew-brzezinski/
    géopolitique
  • URL > Valid URL (RFC 3986) | Regex DB
    /
    # protocol user host-ip port path path path querystring fragment
    ^
    #protocol
    (?:(?<scheme>[a-zA-Z][a-zA-Z\d+-.]*):)?
    (?:
      (?:
        (?:
            \/\/
            (?:
                #userinfo
                (?:((?:[a-zA-Z\d\-._~\!$&'()*+,;=%]*)(?::(?:[a-zA-Z\d\-._~\!$&'()*+,;=:%]*))?)@)?
                #host-ip
                ((?:[a-zA-Z\d-.%]+)|(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:\[(?:[a-fA-F\d.:]+)\]))?
                #port
                (?::(\d*))?
            )
        )
        #slash-path
        (
            (?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*
        )
      )
     #slash-path
     |(\/(?:(?:[a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*))?)
     #path
     |([a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)
    )?
    #querystring
    (?:\?([a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    #fragment
    (?:\#([a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    $
    /x
    December 30, 2022 01:35:00 PM GMT+01:00 * - permalink -
    QRCode
    - https://rgxdb.com/r/2MQXJD5
    url rfc regex
  • URL > Valid URL (RFC 3986) (Advanced) | Regex DB
    /
    # allow multiple groups with the same name
    (?J)
    # protocol user host-ip port path path path querystring fragment
    ^
    #protocol
    (?:(?<scheme>[a-zA-Z][a-zA-Z\d+-.]*):)?
    (?|
      #slash-slash
      \/\/
      #userinfo
      (?:
         #user
         (?<user>[a-zA-Z\d\-._~\!$&'()*+,;=%]*)
         #password
         (?::(?<pass>[a-zA-Z\d\-._~\!$&'()*+,;=:%]*))?
      @)?
      #host-ip
      (?<host>(?:[a-zA-Z\d-.%]+)|(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:\[(?:[a-fA-F\d.:]+)\]))?
      #port
      (?::(?<port>\d*))?
      #slash-path
      (?<path>
          (?:\/    [a-zA-Z\d\-._~\!$&'()*+,;=:@%]*   )*
      )
    
      #slash-path
      |(?<user>)(?<pass>)(?<host>)(?<port>)
       (?<path>\/  [a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)?
    
      #path
      |(?<user>)(?<pass>)(?<host>)(?<port>)
       (?<path>    [a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)
    
    )?
    #querystring
    (?:\?(?<query>[a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    #fragment
    (?:\#(?<fragment>[a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    $
    /x
    December 30, 2022 01:34:20 PM GMT+01:00 * - permalink -
    QRCode
    - https://rgxdb.com/r/5JXUI5A2
    url rfc regex
  • List All Container Images Running in a Cluster | Kubernetes

    Je préfère: kubectl get pods --all-namespaces -o jsonpath="{.items[*].spec.containers[*].image}" |tr -s '[[:space:]]' '\n' |sort |uniq -c|sort -n

    pour avoir une vue triée, mais la proposition de base est déjà très bonne:

    kubectl get pods --all-namespaces -o jsonpath="{.items[*].spec.containers[*].image}" |\
    tr -s '[[:space:]]' '\n' |\
    sort |\
    uniq -c 
    
    December 29, 2022 03:40:25 PM GMT+01:00 * - permalink -
    QRCode
    - https://kubernetes.io/docs/tasks/access-application-cluster/list-all-running-container-images/
    docker kubernetes gke
  • Why Twitter Didn’t Go Down: From a Real Twitter SRE
    December 29, 2022 10:25:57 AM GMT+01:00 * - permalink -
    QRCode
    - https://matthewtejo.substack.com/p/why-twitter-didnt-go-down-from-a
    twitter sre blog
  • Wins from Effective Kafka Monitoring at Adobe: Stability, Performance, and Cost Savings | by Alex Falca | Adobe Tech Blog
    December 29, 2022 09:05:24 AM GMT+01:00 * - permalink -
    QRCode
    - https://blog.developer.adobe.com/wins-from-effective-kafka-monitoring-at-adobe-stability-performance-and-cost-savings-a3ecb701ee5b
    jmx kafka monitoring prometheus
  • Indicateur national climatologique - Infoclimat
    December 26, 2022 07:23:04 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.infoclimat.fr/climato/indicateur_national.php#2022;,1961-1990,1,-3.65,368.65,,y,desc,-1291582332000,1699213932000
    climat température indicateur
  • thumbnail
    Electricity Maps | Live 24/7 CO₂ emissions of electricity consumption
    December 21, 2022 01:22:33 PM GMT+01:00 * - permalink -
    QRCode
    - https://app.electricitymaps.com/zone/PT
    consommation électrique carte production
  • thumbnail
    How to Change Your Mind | Michael Pollan | Talks at Google - YouTube
    December 19, 2022 09:04:22 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.youtube.com/watch?v=KuhmZSFvhL0
    google conference psychedelics
  • Uli Westphal

    Diverses représentations d'éléphants, au fil des âges :D

    December 19, 2022 08:02:53 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.uliwestphal.de/elephas-anthropogenus/index.html
    elephants
  • thumbnail
    Adventures w/ Container manifests | by Daz Wilkin | Google Cloud - Community | Medium
    December 16, 2022 01:25:33 PM GMT+01:00 * - permalink -
    QRCode
    - https://medium.com/google-cloud/adventures-w-docker-manifests-78f255d662ff
    docker gcr google registry gar
  • go command - cmd/go - Go Packages

    Configuration for downloading non-public code ¶
    The go command defaults to downloading modules from the public Go module mirror at proxy.golang.org. It also defaults to validating downloaded modules, regardless of source, against the public Go checksum database at sum.golang.org. These defaults work well for publicly available source code.

    The GOPRIVATE environment variable controls which modules the go command considers to be private (not available publicly) and should therefore not use the proxy or checksum database. The variable is a comma-separated list of glob patterns (in the syntax of Go's path.Match) of module path prefixes. For example,

    GOPRIVATE=*.corp.example.com,rsc.io/private
    causes the go command to treat as private any module with a path prefix matching either pattern, including git.corp.example.com/xyzzy, rsc.io/private, and rsc.io/private/quux.

    For fine-grained control over module download and validation, the GONOPROXY and GONOSUMDB environment variables accept the same kind of glob list and override GOPRIVATE for the specific decision of whether to use the proxy and checksum database, respectively.

    For example, if a company ran a module proxy serving private modules, users would configure go using:

    GOPRIVATE=*.corp.example.com
    GOPROXY=proxy.example.com
    GONOPROXY=none

    December 15, 2022 04:23:44 PM GMT+01:00 * - permalink -
    QRCode
    - https://pkg.go.dev/cmd/go#hdr-Configuration_for_downloading_non_public_code
    go
Links per page: 20 50 100
◄Older
page 9 / 170
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation