Blog | falk-m.de
This blog is not for you, not only.
Like other developers, I read articles, test new features, analyze code from others and so on.
Also, I have some interesting code snippets used in projects, if I need them, I always search in old projects.
This blog is my central place now, to collect interesting code snippets, features, etc.
Broadcast challen api
from falk-m.de
· 2024-02-26
JS
In a post from 2024-02-08, I describe a way to send messages between the scripts in different browser windows with a storage event.
Now I have found a smarter solution for this problem:
The [Broadc...
Messages between browser tabs
from falk-m.de
· 2024-02-08
JS
in some cases, it is necessary to sync browser tabs or send a message to another tab.
For example: In one tab is a voice recorder and in the other is a list of recordings. When the record is finish...
Server side events with php
from falk-m.de
· 2024-02-06
PHPJS
There are different ways for near real-time browser updates by a server message.
With a PHP website on the server side, you are very restricted, because in normal case you can't run a web socket pr...
store and play video files from the local file system
from falk-m.de
· 2024-01-24
js
For one of my next projects, I have to cache large files locally on the device to use them also in offline mode.
When I stored the files on the local file system, then they were not addicted to th...
The div button :-)
from falk-m.de
· 2024-01-24
js
The div button :-)
I know, never use divs as a button.
But:-) But sometimes you need a hole area as a clickable area.
The problem is, that we can`t use block elements like images insight a button e...