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
    2022年1月17日 GMT+1 下午2:26:29 - 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")

    2022年1月14日 GMT+1 上午10:17:43 - permalink - archive.org - https://yousub.info/
    youtube
  • HeadphoneConnect
    2022年1月11日 GMT+1 下午7:12:27 - 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
    2022年1月11日 GMT+1 下午5:47:58 * - 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
    2022年1月6日 GMT+1 上午11:08:00 - 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

    2022年1月6日 GMT+1 上午9:05:19 - permalink - archive.org - https://web0.small-web.org/
    web0 web3
  • thumbnail
    https://github.com/Greaby/telescope/
    2022年1月6日 GMT+1 上午8:59:13 - permalink - archive.org - https://github.com/Greaby/telescope/
    app graph veille
  • thumbnail
    Amazon CloudFront Announces Cache and Origin Request Policies | Networking & Content Delivery
    2022年1月4日 GMT+1 下午4:18:00 - 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

    2022年1月4日 GMT+1 下午3:15:11 - 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)."

    2021年12月29日 GMT+1 上午11:19:35 - 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
    2021年11月28日 GMT+1 下午4:18:03 - 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 !

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

    via Edwin

    2021年11月24日 GMT+1 下午3:28:57 * - permalink - archive.org - https://www.conventionalcommits.org/en/v1.0.0/#summary
    comment commit
  • thumbnail
    Features - LocalStack
    2021年11月22日 GMT+1 下午2:03:54 * - 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')

    2021年10月25日 GMT+2 上午10:05:58 - 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

    2021年10月17日 GMT+2 下午1:07:44 - 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

    2021年10月17日 GMT+2 下午1:04:26 - 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/

    2021年10月14日 GMT+2 上午10:38:39 * - 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