Skip to main content

34 posts tagged with "javascript"

View All Tags

Javascript Coding Standards

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· One min read
Stephan Hochdörfer
Head of IT Business Operations

About two years ago we agreed on dropping our own company-wide code standard (which in fact was none!) in favour of the common standards used in all the programming languages which we use. That's PSR-1 and PSR-2 for PHP projects, the Java Code conventions for our Java projects and the Puppet Language Style Guide for our Puppet cofigurations. For Javascript we were not able to find the one and only standard out there. So once again we had to jump in and create our "own" standard. However, this time we`d like to share it with the world ;)

Extending .jshintrc configurations

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· One min read
Stephan Hochdörfer
Head of IT Business Operations

Since version 2.5.1 of jshint it is possible to extend your own .jshintrc configuration from another .jshintrc config file. This allows you to extend a common configuration and add project specific options (e.g. custom global variable names) to a local configuration file. This way you do not end up with the pain of keeping multiple configurations in sync. It's fairly trivial to use. In your .jshintrc configuration file add an extends field which points to the configuration you are extending from:

ExtJS5@rheinmainjs

· One min read
Peter Hildenbrand

Am Donnerstag den 16.10.2014 trifft sich die RheinMainJS Usergroup ab 19 Uhr bei //SEIBERT/MEDIA in Wiesbaden. Ich bin als Sprecher dabei und werde in meinem Vortrag "ExtJS 5 MVVM - WTF? FTW!" auf die neuen Features von ExtJS5 eingehen und von unseren Projekterfahrungen berichten.

enterJS 2014

· One min read
Stephan Hochdörfer
Head of IT Business Operations

Vom 30.06.2014 bis zum 02.07.2014 findet in Köln die Veranstaltung enter.js statt. Die conference fokussiert sich auf den Enterprise-Einsatz von Javascript. Ich freue mich den Vortrag "Offline. Na und?" präsentieren zu dürfen um von unseren (Projekt-)Erfahrungen mit offlinefähigen HTML5/Javascript Applikationen zu berichten.

Herbstcampus 2013

· One min read
Stephan Hochdörfer
Head of IT Business Operations

Vom 02.09.2012 bis zum 05.09.2012 findet in Nürnberg der Herbstcampus 2013 statt. Bereits zum sechsten Mal wird der Herbstcampus durch Bookware, die Herausgeberin vom KaffeeKlatsch - dem Magazin rund um Software-Entwicklung - veranstaltet. Im letzten Jahr durfte ich über Software-Generatoren referieren, in diesem Jahr freue ich mich über unsere HTML5 Erfahrungen im Bezug auf Offline-Applikationen erzählen zu dürfen.

BED-Con 2013 Java-conference

· One min read
Stephan Hochdörfer
Head of IT Business Operations

Vom 04.04.2013 bis zum 05.04.2013 findet in Berlin die BED-Con 2013 statt. Die Konferenz deckt ein breites Themenspektrum von Java über NoSQL bis hin zu Javascript und mobilen Technologien ab. Ich freue mich den Vortrag "Offline Strategien für HTML5 Webapps" präsentieren zu dürfen und von unseren Erfahrungen in diesem Bereich berichten zu können. Wer nicht die Möglichkeit hat an der BED-Con 2013 teilzunehmen hat die Möglichkeit den Vortrag bei den folgenden Veranstaltungen zu sehen: ConFoo 2013, IPC Spring 2013, Mobile Tech Conference 2013.

Monkeypatching jQuery UI Datepicker

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· 2 min read
Stephan Hochdörfer
Head of IT Business Operations

Wie im letzten Monkeypatching Blogpost beschrieben gibt es im Projektalltag Anforderungen, die sich mit Standard Tools nicht lösen lassen. Im aktuellen Fall war es nötig zwei Instanzen von jQuery UI Datepicker zu "verbinden" um auf einer Hotelsuchmaschine das Anreise / Abreise Datum zu setzen.