Zurück zum Blog

Tag: script

Go! Run! Go!

Karl-Ludwig Reinhard

08.07.2020
A small field report about replacing a bash script with a small golang program and develop it further to a 'true' script in the context of gitlab ci. Comparing small aspects of bash scripts and with the equivalent constructs in go Also mixed with some of my thoughts about scripting in general :)
Weiterlesen

Frameworkless Frontend und trotzdem glücklich?

Benjamin Seber

23.06.2020
Mit einigen Jahren JavaScript und Reactjs Erfahrung durfte ich Ende letzten Jahres (November 2019) Teil eines neuen Teams und eines neuen Projektes werden. Das Projekt ist ein Traumprojekt jeden Entwicklers. Ein grüne Wiese Projekt mit 'freier' Technologiewahl. 'Frei' in Form von man darf sich die Zeit für eine Risikoanalyse nehmen und moderne Tools und Frameworks evaluieren.
Weiterlesen

JavaScript Code Refactoring automatisieren

Benjamin Seber

25.08.2016
Vor kurzem hatte ich die Muße ein älteres JavaScript Projekt zu refactoren. Unter anderem sollte die Assertion Bibliothek Jasmine von 1.x auf 2.x aktualisiert werden. Zwei Dinge gab es bei…
Weiterlesen

springboot & reactjs #2 | progressive enhancement based on list sorting

Benjamin Seber

08.04.2016
This is the second article of a springboot & reactjs article series about server side rendering and progressive enhancement. In the first article we have learned how to render a…
Weiterlesen

springboot & reactjs #1 | server side rendering

Benjamin Seber

11.03.2016
This is the first article of a series about server side rendering and progressive enhancement. We will implement a product list that can be sorted by two parameters. Furthermore the…
Weiterlesen

Devoxx Poland 2015 Summary

Mateusz Szulc

02.07.2015
So that’s it. Three days, 2.000 Developers from 20 countries, over 140 speakers from around the world, and one outstanding beautiful city. It is for the first time, when Devoxx…
Weiterlesen

Javascript Linting Tool Evaluation

Sven Müller

Tobias Schneider

03.02.2015
In our internal JavaScript ‘User Group’ (called JS-Posse in honour of the legendary ‘The Java Posse‘ by Dick Wall, Chet Haase et al.), we recently decided to evaluate alternatives to…
Weiterlesen

The Qt framework: solid fun in many languages

Maya Posch

18.09.2014
Particularly to people using C++ and Python the Qt framework is probably quite well-known, as in these communities it’s one of the most-used frameworks for application development. For those who…
Weiterlesen

Code gluse

Michael Clausen

22.01.2014
Code gluse Today’s post targets an API, which has been released on Dec. 11, 2006; the javax.scripting package [1] and a lot of good articles that have been written around…
Weiterlesen

Asynchronous concurrency with vert.x – Part 2

Otto Allmendinger

24.04.2013
CoffeeScript Vert.x supports JavaScript through the Rhino JavaScript engine. Although JavaScript is a decent language once you get to know it, I prefer CoffeeScript, a language that compiles to JavaScript.…
Weiterlesen

Asynchronous concurrency with vert.x – Part 1

Otto Allmendinger

15.04.2013
Event-Driven Concurrency At synyx, we are looking at vert.x for an upcoming project where we are building a system that will need to scale under load. The tag-line of vert.x…
Weiterlesen

Continuous Deployment – Automatic Backup Script

Aljona Buchloh

10.04.2013
A few words about Continuous Deployment Continuous Deployment is the deployment or release of code to Production as soon as it is ready. (…) The automated process is key because…
Weiterlesen

Properly calculating time differences in JavaScript

Otto Allmendinger

05.11.2012
Let me tell you a tale about a fat-client application that has nice some time-related logic written in JavaScript. We want to calculate the difference between two dates, measured in…
Weiterlesen

Simple Shell-Script to use dict.leo.org in your shell

Markus Daniel

16.10.2010
Just create a new file like “vim leo”. Insert the following script code: #!/bin/sh t(){ while [ -n '$1' ]; do T=/tmp/$$.html lynx -source 'http://dict.leo.org/?search=$1'| grep results >$T w3m -dump…
Weiterlesen

On cross-device mobile development – Part 2

Florian Krupicka

07.09.2010
In the previous part of this series we took a look on how to develop mobile applications with plain HTML, CSS & JavaScript (furthermore refered to as the web stack). A…
Weiterlesen

On cross-device mobile development – Part 1

Florian Krupicka

13.08.2010
Once in a while a demand for fast development of a mobile application for several platforms at once comes up. Your team of developers might be small or knowledge about…
Weiterlesen