4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 10 / 217
Newer►
  • Activity List – NoSurf
    17 janvier 2022 à 14:26:29 UTC+1 - permalink - archive.org - https://nosurf.net/activity-list/
    nosurf offline reddit
  • PocketTube: YouTube Subscription Manager

    Je viens de découvrir pocketTube et j'ai hate de tester ça. Il y a une extension Firefox et meme un app Android.
    L'idée c'est de pouvoir grouper les channels Youtube par thématique mais aussi et surtout voir toutes les vidéos par date de parution et ne pas en louper car elles sont zappées par l'algo de Youtube (qui est utilisé dans la partie "Mes abonnements")

    14 janvier 2022 à 10:17:43 UTC+1 - permalink - archive.org - https://yousub.info/
    youtube
  • HeadphoneConnect
    11 janvier 2022 à 19:12:27 UTC+1 - permalink - archive.org - https://www.headphoneconnect.app/
    bose mac
  • thumbnail
    loops - How to for_each through a list(objects) in Terraform 0.12 - Stack Overflow

    foreach list of objects

    [{
       name = "xxx"
       description = "xxx"
       param = "xxx"
    },
    ...
    ]
    for_each = {
        for item in var.items:
        item.name => item
      }
    
    name = each.key OU each.value.name
    description = each.value.description
    11 janvier 2022 à 17:47:58 UTC+1 * - permalink - archive.org - https://stackoverflow.com/questions/58594506/how-to-for-each-through-a-listobjects-in-terraform-0-12
    foreach terraform
  • thumbnail
    KEDA | Kubernetes Event-driven Autoscaling
    6 janvier 2022 à 11:08:00 UTC+1 - permalink - archive.org - https://keda.sh/
    hpa k8s queue scale
  • https://web0.small-web.org/

    Ne pas oublier que le web a été pensé pour être décentralisé dès le départ : chacun peut posséder ses données, les héberger à la maison, publier son site depuis le raspberry du salon etc..

    Via sebsauvage

    6 janvier 2022 à 09:05:19 UTC+1 - permalink - archive.org - https://web0.small-web.org/
    web0 web3
  • thumbnail
    https://github.com/Greaby/telescope/
    6 janvier 2022 à 08:59:13 UTC+1 - permalink - archive.org - https://github.com/Greaby/telescope/
    app graph veille
  • thumbnail
    Amazon CloudFront Announces Cache and Origin Request Policies | Networking & Content Delivery
    4 janvier 2022 à 16:18:00 UTC+1 - permalink - archive.org - https://aws.amazon.com/blogs/networking-and-content-delivery/amazon-cloudfront-announces-cache-and-origin-request-policies/
    cloudfront policy
  • Restricting access to Amazon S3 content by using an origin access identity (OAI) - Amazon CloudFront

    Note à moi même : il faut faire attention aux headers qu'on forward à l'origine dans ce cas précis car ça peut poser des problemes d'authent' entre cloudfront et le bucket s3

    4 janvier 2022 à 15:15:11 UTC+1 - permalink - archive.org - https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html#private-content-origin-access-identity-signature-version-4
    aws cloudfront
  • thumbnail
    python - Django template can't loop defaultdict - Stack Overflow

    django template does not like defaultdict, 2 solutions:
    1) set default_factory to None
    or
    2) cast defaultdict to a simpledict

    "The template variable resolution algorithm in Django will attempt to resolve new_data.items as new_data['items'] first, which resolves to an empty list when using defaultdict(list)."

    29 décembre 2021 à 11:19:35 UTC+1 - permalink - archive.org - https://stackoverflow.com/questions/4764110/django-template-cant-loop-defaultdict
    defaultdict django python
  • thumbnail
    Busbud: Comparateur de bus | Billets au meilleur prix
    • https://www.clickbus.com.mx/en/?utm_source=mifuguemiraison&utm_medium=affiliate
    28 novembre 2021 à 16:18:03 UTC+1 - permalink - archive.org - https://www.busbud.com/fr?cjevent=0666b070505c11ec82d22ebf0a18050f
    bus mexique
  • thumbnail
    Gather | A better way to meet online.

    J'adore le concept, recréer des locaux virtuels où on peut aller tape sur l'épaule d'un collègue, se réunir dans une salle de réunion, devant un tableau blanc.. excellent !

    26 novembre 2021 à 22:00:38 UTC+1 - permalink - archive.org - https://www.gather.town/
    collaboration remote work
  • Restore, Clone or Backup your Homebrew Setup | Tom Lankhorst
    26 novembre 2021 à 15:42:30 UTC+1 - permalink - archive.org - https://tomlankhorst.nl/brew-bundle-restore-backup/
    homebrew
  • thumbnail
    GitHub - shuaibiyy/awesome-terraform: Curated list of resources on HashiCorp's Terraform
    26 novembre 2021 à 11:01:29 UTC+1 - permalink - archive.org - https://github.com/shuaibiyy/awesome-terraform
    allsum awesome terraform
  • Conventional Commits

    via Edwin

    24 novembre 2021 à 15:28:57 UTC+1 * - permalink - archive.org - https://www.conventionalcommits.org/en/v1.0.0/#summary
    comment commit
  • thumbnail
    Features - LocalStack
    22 novembre 2021 à 14:03:54 UTC+1 * - permalink - archive.org - https://localstack.cloud/features/
    aws cloud dev local
  • thumbnail
    Get the name of the current file | Vim Tips Wiki | Fandom

    :echo @% def/my.txt directory/name of file (relative to the current working directory of /abc)
    :echo expand('%:t') my.txt name of file ('tail')
    :echo expand('%:p') /abc/def/my.txt full path
    :echo expand('%:p:h') /abc/def directory containing file ('head')
    :echo expand('%:p:h:t') def First get the full path with :p (/abc/def/my.txt), then get the head of that with :h (/abc/def), then get the tail of that with :t (def)
    :echo expand('%:r') def/my name of file less one extension ('root')
    :echo expand('%:e') txt name of file's extension ('extension')

    25 octobre 2021 à 10:05:58 UTC+2 - permalink - archive.org - https://vim.fandom.com/wiki/Get_the_name_of_the_current_file
    echo file vim
  • Built-in class-based views API | Django documentation | Django

    all django generic views included

    17 octobre 2021 à 13:07:44 UTC+2 - permalink - archive.org - https://docs.djangoproject.com/en/3.2/ref/class-based-views/
    django generic view
  • thumbnail
    Class-Based Views in Django. Creating CRUD interfaces with DRY… | by Taranjeet Singh | All About Django | Medium

    Class-Based Views in Django to DRY

    17 octobre 2021 à 13:04:26 UTC+2 - permalink - archive.org - https://medium.com/all-about-django/class-based-views-in-django-89108c1f51fb
    class` django view
  • Datadog service check

    service check : pour envoyer un status (0,1,2) et un message à la mode Nagios
    https://docs.datadoghq.com/developers/service_checks/

    14 octobre 2021 à 10:38:39 UTC+2 * - permalink - archive.org - https://docs.datadoghq.com/fr/api/latest/service-checks/#submit-a-service-check
    check datadog
Links per page: 20 50 100
◄Older
page 10 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation