# javascript

See all tags

Post cover image

YouTube Hack: Playlist-Videos schneller löschen!

Ich nutze bei YouTube sehr gerne die "Später ansehen"-Playlist, um mir selbst ein Programm zusammenzustellen mit Videos, die ich nacheinander ansehen möchte. Ich pflege diese auch sehr fl...

Read full article


Post cover image

How I hacked Piskel and added a new feature for me

I recently started using Piskel more often, which is a cool web app to create cute pixel graphics and animations. It's pretty nice to use, but there was a t...

Read full article


Post cover image

How I created a card game with Svelte

It’s kinda a tradition for me to use my Christmas holidays for a fun little project. Since Svelte became more and more a thing, so I wanted to do try it in practice myself. I also heard that Svelte...

Read full article


Post cover image

Mach deinen Code prettier

Als Programmier:in entwickelt man mit der Zeit eine eigene Code-"Handschrift". Benutzt du für Strings einfache Anführungszeichen (') oder doppelte (")? Benu...

Read full article


Post cover image

The code behind the new SP-Studio

For some months I'm working on a cool project. It's a web app where users can design their own characters...

Read full article


Post cover image

Wenn ein Webdev ein Spiel entwickelt...

Seit längere Zeit schon habe ich Lust ein eigenes Spiel zu entwickeln. Dafür habe ich auch einige Ideen, allerdings hat mich bisher immer sehr schnell wieder die Motivation dazu verlassen. Trotzdem...

Read full article


Mit diesem Hack verbesserst du die User Experience von CodePen

CodePen ist für mich eine geniale Plattformen, um sich inspirieren zu lassen und herauszufinden, was durch Web-Technologien alles möglich ist. Was mich aber...

Read full article


If / else statement inside of React Component's Render method

Sometimes (well, actually pretty often) you have to use conditional statements inside of React Component's Render methods. You could do it like this: import React from "react&quo...

Read full article


Post cover image

Tipp: Elegant HTML in JavaScript einbinden

Manchmal kommt es vor, dass HTML-Markup innerhalb von JavaScript eingebunden werden soll. Etwa so: var htmlCode = "Hello World"; Ich nutze als dop...

Read full article


Node.js: Check if you are in debug or production mode

Sometimes you have to use other values in a variable when your application is in production as if when you are debugging it. For example you have to use another web service URL. Here is how...

Read full article