Category: Technology, Web & Cloud

  • Data-driven Product Management

    In the age of Big Data, product management can leverage plenty of feedback. Any product decision can be based on data, too. Product Coalition has an article. Setting up User Analytics.

  • Django 3.0 alpha1 released

    A major version bump, with the largest change being built in support for ASGI, the Asynchronous Server Gateway Interface, that previously could be included via channels. The biggest benefits ASGI offers over the traditional WSGI, is the possibility to build asynchronous operations in webapps, and leverage e.g. WebSockets to push information to the client. Here…

  • Specification of DNS over Dedicated QUIC Connections

    Specification of DNS over Dedicated QUIC Connections

  • #FashionID

    Heute hat der Europäische Gerichtshof in einem Fall von FashionID, des Onlineshop des Modehändlers Peek & Cloppenburg, ein Urteil gesprochen. Es geht darin darum, wie mit der Weitergabe von Benutzerdaten bei der Verwendung von 3rd Party Content umgegangen werden muss. Dass der Einsatz von beispielsweise Facebook Like Buttons Unter anderem versucht die Tagesschau aufzuklären. Weil…

  • Gefährdete Website

    WER HAT GESAGT KÜNSTLICHE INTELLIGENZ FUNKTIONIERT NICHT, HABE ICH GEFRAGT?

  • GitHub announces Package Registry

    GitHub announces Package Registry

    Your code. Your packages. One login. Meet GitHub Package Registry. https://github.co/2vSuFG2 From the announcement on LinkedIn The other day wrote this in their post on LinkedIn. Following the link takes one to the newly announced Github Package Registry, that allows developers to host releases for distribution. It’s currently in beta and supports npm, docker images,…

  • Predicting Stack Overflow Tags with Google’s Cloud AI

    Check out a cool project that leverages Stack Overflow Data and Google’s Cloud AI to predict what tags would work best on Stack Overflow questions. Source: Predicting Stack Overflow Tags with Google’s Cloud AI – Stack Overflow Blog

  • HTTP/3 

    HTTP over QUIC will be called HTTP/3, following a suggestion by Mark Nottingham. Source: HTTP/3 | daniel.haxx.se

  • A quick introduction to web security

    CORS, CSP, HSTS, and all the web security acronyms!link.medium.com/jMrLJYrzBR

  • Celery Worker wide configuration

    Celery is a distributed task execution environment for Python. While the emphasis is on distributed in this software, the concept of having workers allows for settings beyond the individual task. While the first rule of optimisation is “don’t”, sharing database connections is a low hanging fruit in most cases. And this can be configured per worker with Celery…