my blog. for you.

Reden wir über Digitales.

Ich bin selbständiger IT Berater und Unternehmer in der Internet und Software Branche. Ich beschäftige mich mit Design, Enterprise Applikationen, Web Apps und SaaS Produkten. Ich entwerfe und entwickle Business Lösungen und Anwendungen. Ich helfe Unternehmen in Sachen Software Qualität und Wissenstransfer, z.B. mit Angular und Spring Boot.

UX Time: Responsive Tables and Smoothly Scrolling Through Large Datasets

Leider ist der Eintrag nur auf English verfügbar.Today I'd like to introduce two nifty and very useful tools and techniques for better visualizing tabular data on the Web: Responsive Tables in Pure CSS: This technique (code available here) makes clever use of :before and :after pseudo elements in order to nicely display responsive HTML tables on mobile devices (or any device with a smaller screen size for that matter) without any changes to the HTML code or having to resort to JavaScript. Clusterize.js, ... Read more

JHipster: A Spring / AngularJS App Generator

Leider ist der Eintrag nur auf English verfügbar.You're a boring, hoary Java developer but secretly always wanted to belong to that hip JavaScript-Single-Page-Application crowd? Well, with JHipster now you can! On a more serious note, JHipster is a Yeoman generator that lets you bootstrap integrated Java (for the back-end server stuff) / AngularJS (for everything front-end and UI) web apps. JHipster makes use of proven technologies such as: Grunt Bower AngularJS Maven Spring Boot Spring Web MVC The project's goal is to provide the means for easily creating a ... Read more

Some Free Design Resources

Leider ist der Eintrag nur auf English verfügbar.Pexels (a free stock photo site) have published a small but useful list of free design resources on their blog. From typography, icons and colour palettes to free design tools such as GIMP or Inkscape, the list is far from comprehensive but contains helpful stuff nevertheless. Read more

SheetJS – Parse And Manipulate Excel Spreadsheets In The Browser

Leider ist der Eintrag nur auf English verfügbar.SheetJS (source code available on GitHub) is an extremely useful JavaScript library that enables you to have Microsoft Excel spreadsheets parsed directly in the browser without any backend interaction necessary. What makes SheetJS even more impressive is the ability to query spreadsheets in-place with an SQLite-compatible SQL language called WebSQL. Check out the example on the website to see how awesome this is. Together with a grid component such as Handsontable (source code) SheetJS allows for ... Read more

favico.js – Dynamic Content For Your Favicon

Leider ist der Eintrag nur auf English verfügbar.favico.js (source code on GitHub) is an interesting and possibly quite useful library that makes it possible to show dynamic, animated content in your web app's favicon. While it allows you to display all sorts of visual next to the browser's address bar - such as videos or even web cams live streams - the most useful use case favico.js lends itself to probably is displaying badges and notifications. favico.js provides animations, colour customization and custom ... Read more

I don’t want an app for that

Leider ist der Eintrag nur auf English verfügbar.Scott Adams of Dilbert fame recently posted an article on why your phone interface is a legacy train wreck. He argues that the way we interact with our smartphones goes all the way back to the beginning of desktop computing. In spite of what Apple probably would have us believe - in spite of swiping, tapping and multitouch - we're still largely using our computing devices as if they were a 1987 IBM PC ... Read more

Regular Languages Are … well … Regular

Leider ist der Eintrag nur auf English verfügbar.A few weeks ago I came across an article describing "A regular expression to check for prime numbers". I was intrigued because processes defined by formal regular languages have an inherently linear runtime while the process described is non-linear. This contradicts the definition of regular languages, specifically the Pumping Lemma. So, how is this even possible? Well, the regular expression discussed in this article and the regex framework it's used with makes clever use of ... Read more

GoodUI Datastories

Leider ist der Eintrag nur auf English verfügbar.GoodUI Datastories is a new service that promises to provide companies with tried and tested UI concepts. Not every company has the time, resources and sheer number of users required to do proper A/B testing. GoodUI Datastories tries to alleviate this problem by sharing ideas and UX patterns that have been proven to work for others, e.g.: Try Smaller Commitments instead of one big one. The service allows users to submit their ideas including screenshots and ... Read more

UX Check: Identify Usability Issues On Your Website

Leider ist der Eintrag nur auf English verfügbar.Recently, I came across UX Check, a Google Chrome extension that allows you to annotate usability issues according to Nielsen's ten heuristic usability evaluations. If you're dealing with website and web app usability in any way UX Check will be a useful tool and is worth checking out. Read more

FnordMetric and ChartSQL: Create Charts Directly From SQL

Leider ist der Eintrag nur auf English verfügbar.FnordMetric is an interesting new software package that allows you to create good-looking charts (in SVG format) directly from SQL using a query language called ChartSQL. The are quite a few examples available here. A typical ChartSQL query for a timeline series chart for instance looks like this: DRAW LINECHART WITH AXIS BOTTOM AXIS LEFT; SELECT 'data' AS series, FROM_TIMESTAMP(time) AS x, value2 * 1000 AS y FROM example_data  ... Read more
« Vorherige SeiteNächste Seite »