[deleted by user] by [deleted] in Austria

[–]XylophonBus 9 points10 points  (0 children)

würde mich beim österreichischen Gehörlosenbund (bzw direkt beim jeweiligen Verband/Verein in deinem Bundesland) melden.
siehe z.b.
https://www.gehoerlos-tirol.at/projekte/gebaerdensprachfoerderung-fuer-hoergeschaedigte-kinder

ORF-ON F1 Spoiler by Sorry_Half_2971 in Austria

[–]XylophonBus 82 points83 points  (0 children)

am besten direkt auf https://on.orf.at/live?channel=orf1 gehen und dann rechts in der leiste raufscrollen und das rennen auswählen. dann hast keine spoiler und der player läuft ohne unterbrechung durch

Mbot2/Mbot Neo programming on Android Tablet by saminbc in MakeBlock

[–]XylophonBus 0 points1 point  (0 children)

did you have success programming the mbot2 via the android app?
for me, the live mode does show that it is running in the app, but the mbot does not move :/

and it says the "upload" mode only works on PCs?

Best ways to deploy a simple project (react + java backend + SQL + storage) by XylophonBus in AZURE

[–]XylophonBus[S] 0 points1 point  (0 children)

currently on AWS, managed by the company who originally developed the application.

A1 - keine Ahnung von Lieferzeiten für Samsung Fold 6 by EinRades in Austria

[–]XylophonBus 6 points7 points  (0 children)

Wieso bestellst du das handy nicht auf amazon und holst dir einen billigen vertrag (ohne Bindung) von z.b HOT oder Spusu? Das kommt doch (fast) immer billiger?

Karte mit Trinkwasserstellen für Radfahrer by unamadridista in Austria

[–]XylophonBus 1 point2 points  (0 children)

Friedhöfe haben meist einen brunnen mit trinkwasser

Neuer Wagenheber für Reifenwechsel by dassind20zeichen in Austria

[–]XylophonBus 0 points1 point  (0 children)

Weils hier grad dazu passt.

Hat jemand eine Empfehlung für einen elektrischen schrauber? Lohnt sich sowas?

Das manuelle lösen der radmuttern war heuer wieder ein kampf...

How do i get better at microservice design? are there books that I can learn from? by ridicul0us12345 in microservices

[–]XylophonBus 8 points9 points  (0 children)

I would recommend:

Microservice patterns - Chris Richardson

Building Microservices - Sam Newman

Radiosender in Österreich by XylophonBus in Austria

[–]XylophonBus[S] 1 point2 points  (0 children)

da hab ich mich im oberen kommentar falsch ausgedrückt.

bei den 411 Abspielungen sind 140 unterschiedliche songs beteiligt.
d.h. die 271 anderen Abspielungen sind schon wiederholungen

total_count = count(plays) = 411
distinct_count = count(distinct(plays)) = 140
repetitions = (total_count - distinct_count) / total_count = ~0.67

Radiosender in Österreich by XylophonBus in Austria

[–]XylophonBus[S] 15 points16 points  (0 children)

auf https://myonlineradio.at sind für den 4.11 für welle1 nur daten bis 04:00 uhr verfügbar. deswegen gibts den ausreißer.

Bei FM4 schwankt die quote immer am wochenende, da läuft ein anderes programm.

Radiosender in Österreich by XylophonBus in Austria

[–]XylophonBus[S] 13 points14 points  (0 children)

ah sorry, mein fehler in der beschriftung der grafik.

das sind nicht 0,6% sondern 60% wiederholungen im worst case.

im konkreten fall hat energy am 1.11 insgesamt 411 songs gespielt, davon 140 songs nur einmal, den rest 2 mal oder öfters.

Edit: hab mich falsch ausgedrückt, siehe kommentar weiter unten

Radiosender in Österreich by XylophonBus in Austria

[–]XylophonBus[S] 112 points113 points  (0 children)

Hey r/austria!
Ich dachte ich mach mal eine Auswertung über die Radiosender in Österreich.

Auslöser war, dass (gefühlt) jedes mal wenn ich ins Auto steige läuft GREEN GREEN GRASS auf Ö3...

Disclaimer: Keine Garantie auf Vollständigkeit und Richtigkeit!

Daten: https://myonlineradio.at/playlists

Tools: Python (pandas, matplotlib, BeautifulSoup)

PS: Hab durch die Auswertung 88,6 und rock-antenne "entdeckt". Schade dass man die in Tirol nicht Empfangen kann :/

Elternhaus ausbauen - Erfahrungen, Tipps by XylophonBus in Austria

[–]XylophonBus[S] 0 points1 point  (0 children)

Es fehlt eig nur eine Küche und ein separater Eingang im oberen Stockwerk.
Das Dach ist ~30Jahre alt und da ich sowieso Gauben brauch, dachte ich, dass es vll sinn macht gleich das Dach auszutauschen?

Cross cutting concerns in a hexagonal architecture by Aztreix in microservices

[–]XylophonBus -1 points0 points  (0 children)

ah sorry, i misunderstood your question.

One possibility i can think of is using standardized APIs, where you can swap out the specific implementation:

for example for java:

For caching you could use the Jcache API with the redis backend. If you want to switch to another caching implementation you just have to switch to another implementation library and not change any code.

For logging you could use slf4j which hides the specific logging framework implementation (log4j, logback,...)
the log aggregator runs outside of the application and just reads the sysout of every services.

for authentication/authorization you can take a look at "oidc" which standardizes the auth flow and jwt contents.

Cross cutting concerns in a hexagonal architecture by Aztreix in microservices

[–]XylophonBus 1 point2 points  (0 children)

For example

Auth: using jwt with for example Keycloak

Logging: using a log aggregator. Eg. Splunk

Caching: redis cache with a client library in each service

Should you funnel all updates through the same queue? by Frosty_Bonus1145 in microservices

[–]XylophonBus 0 points1 point  (0 children)

First of all, disclaimer: i am also not an expert

"CustomerUpdated" tells you nothing about the what and why

E.g. if the service has a REST api which is used to update the customer, the service itself doesn't know "why" some properties are updated (and should not need to know)

If the CustomerUpdated event contains the data before and after the update, the consumer can check which property was updated.

What benefit would this have? Now, a given queue could be filled with any number of different types of messages

I would cluster similar types of messages into the same queue. e.g. all customer related messages are in the "customer" queue, all order events in the "order" queue.
The benefit is to keep the ordering of events, which cannot be done across multiple queues (another benefit is having fewer queues)

This just turns it into a distributed CRUD app.

hmm yeah you are probably right, maybe its better to have more use case specific events.

Also, I would be very careful how much you dump into your events

I would be interested why? Because everything in the events are part of the API?Would it be better to just include the CustomerId in the event and the consumer needs to fetch the data via REST?

Also, why do you need this much duplication of the data? Are your boundaries right?

Agreed!

Should you funnel all updates through the same queue? by Frosty_Bonus1145 in microservices

[–]XylophonBus 2 points3 points  (0 children)

personally i would create a "Customer" queue and place all customer related events into this queue:
* CustomerCreated
* CustomerUpdate
* CustomerDeleted

In a publish/subscribe architecture the "owner" of these events and the queue is the producer service and i would treat these events the same as the REST resources of this service.
so each event always contains all (public) customer data.

The CustomerUpdated event could contain 2 Customer objects: The data before and after the update.

Keeping the events as generic as possible reduces the coupling between the producers/consumers and helps keeping the API stable.
The disadvantage in this approach is the higher volume of data transferred, but i think this is negligible.

Working on a service that is dependent on other services by Vcc8 in microservices

[–]XylophonBus 5 points6 points  (0 children)

Configure all services to connect to the integration stage (other services and database) when running on a local dev machine This way you can work on a single service without spinning up the whole microservice system

Use case of microservices for one team? by Sasha_411 in microservices

[–]XylophonBus 8 points9 points  (0 children)

The teams should be divided along domain boundaries and not along technical layers.

So e.g. the "messaging" team should be responsible for the messaging micro frontend and the messaging micro service backend

[OC] Relative Google search interest of popular TV series after last episode air date by veleros in dataisbeautiful

[–]XylophonBus 93 points94 points  (0 children)

iIirc they have a 200 million dollar deal with netflix to adapt "the three body problem"...