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.
EPA - technical view
from falk-m.de
· 2025-02-11
PRESENTATION
Slides (html)
Slides (Pdf)
Links and stuff of the week
from falk-m.de
· 2025-02-09
Other
Links
datalist element
sylius php based Open Source Headless eCommerce-Plattform
phpseclib: pure-PHP implementations of AES, DES, ...
shlink: self-hosted URL shortener
Hi.Events: self-hosted even...
ChaosZone map presentation
from falk-m.de
· 2025-02-06
JSPRESENTATION
use Openfreemap over proxy
no need of a dataprotection layer
load locations from spaceapi
use coustom map style and marker
Slides (html)
Slides (Pdf)
my slides template
from falk-m.de
· 2025-02-02
JS
Inspired by the 38C3 congress, I changed the style my reval js slides template for presentations.
In the old version I used preact to seperate every slide in a single file, but when I created my la...
OWASP TOP 10 presentation
from falk-m.de
· 2025-01-30
PRESENTATION
Slides (Pdf)
Links and stuff of the week
from falk-m.de
· 2025-01-16
OtherGITJS
Links
lit.dev: js web components lib
subfinder: subdomain enumeration
gobuster: directory enumeration
pa11y: open source tools to help designers and developers make their web pages more accessible...
CSS presentation
from falk-m.de
· 2025-01-25
CSSPRESENTATION
Slides (html)
Slides (Pdf)
Links and stuff of the week
from falk-m.de
· 2025-01-05
Other
Links
react useDeferredValue: defer updating a part of the UI
usememo-and-usecallback
useeffect: e.g. initial calls by mounting
kinesisjs: create complex interactive animations
scroll-driven-anima...
infinity scrolling
from falk-m.de
· 2024-12-10
JS
One topic at work last week was to automatic load more items in a list, when the user scroll to the end of the list.
I want to decorate a classic serverside pagination with some javascript to solve...
Links and stuff of the week
from falk-m.de
· 2024-12-01
Other
Links
wowjs: scroll animations, use animate.style
react drawer component
rsuitejs - react components
html best practices for login forms
AI based image upscaling tool (local)
PHP chunk_split func...
CI/CD presentation
from falk-m.de
· 2024-11-18
OTHERPRESENTATION
Slides (html)
Slides (Pdf)
pointer: coarse
from falk-m.de
· 2024-11-18
CSS
In css exists media queries so tetect the input device of the user.
@media (pointer: fine) {} can use for styles, specially for users with a mouse pointer.
@media (pointer: coarse) {} detect touch...
RevealJs slide show with preact
from falk-m.de
· 2024-11-04
JS
reveal js
I want to cerate a presentation template for my own.
Reval js is a nice tool with many features (code highlighting, print view vor pfg export, process bar, ...).
For my template, I want t...
Links and stuff of the week
from falk-m.de
· 2024-11-03
Other
swagger api with php
swagger-php
swagger-ui
js advanced basics stuff
js proxy class
js partial application
js currying
Links
image vectorisazion
tiny and smart css reset
persisting react sta...
react hooks
from falk-m.de
· 2024-11-02
JS
useRef
Sometimes is see that someone use useRef in situations i would use 'useState'.
const blocking = React.useRef(false);
const onScroll = () => {
if (!blocking.current) {
block...