August 23, 2016
Undo and edit your last commits with git
Sometimes one might get into the unfortunate need to change a git commit. In this post I will show some options to revert or change commits which are not yet pushed to an remote branch.
August 23, 2016
Sometimes one might get into the unfortunate need to change a git commit. In this post I will show some options to revert or change commits which are not yet pushed to an remote branch.
June 24, 2016
Have you ever heard of ‘Mobile Native JavaScript‘? – No? It’s about writing native Apps with a native look & feel, but purely in JavaScript and the web technologies you love. The past We as developers had to make the hard decision, about writing a new app either native for each platforms or a hybrid […]
READ MORE
May 25, 2016
Our Angular 2 basic training adopt the successful structure of the AngularJS 1 course: Develop a fully functional demo application, step by step. Learn all the concepts by learning one and directly apply it. During developing the demo application, we neglect styling the app to fully concentrate on the core concepts of Angular 2: components, […]
READ MORE
October 16, 2015
Google moves yet another step forward and indicates that single page application are getting more common. They just announced to drop the support of hashbang urls and crawl javascript sites without any pre-rendering (html snapshots) of the site – which is totally cool. But there are some limits regarding canonical tags as I discovered. In order […]
READ MORE
October 12, 2015
One of the simplest ways to organize your projects, seminar papers and daily tasks is by using Trello. With the w11k calendar for Trello it is even easier to keep the overview of your tasks. Trello is a productivity tool that helps you organize your projects by creating individual boards, lists and cards. It is […]
READ MORE
September 29, 2015
Tipps and Tricks In one of my last tasks I have had the necessity of adapting a section of a single page application (SPA), in order to get ui-router and ui-bootstrap (plus Bootstrap CSS) work together. In this article I will shortly share with you the result of my experience, by showing how to improve the coexistence […]
READ MORE
September 14, 2015
To work efficiently its indispensable to get detailed error messages. If you simply pipe the gulp-less task to your stream you will receive a error message – but your whole gulp task will crash.
|
1 |
s = s.pipe(less()); |
what we get:
|
1 2 3 4 |
/blog-theCodeCampus/blog/node_modules/gulp-less/node_modules/accord/node_modules/when/lib/decorators/unhandledRejection.js:80 throw e; ^ Error: Unrecognised input. Possibly missing opening '{' in file /blog-theCodeCampus/blog/less/_footer.less line no. 54 |
September 10, 2015
By default AngularJS projects use the hashbang syntax for urls to handle navigation without forcing the client to reload the whole application on every state change. Since the (HTML5) History API is available in all modern browsers the usage of the hashbang is not really required anymore. Furthermore urls look way cleaner without the hashbang. […]
READ MORE
August 14, 2015
Problem Earlier this year, we started to port a customer website from a old css-style to a more modern bootstrap-style. To be more flexible, we switched from plain css to less (as a css-precompiler) and automated the build with grunt. The build was very basic and just compiled the less files into css files, we […]
READ MORE
June 24, 2015
Due the missing feature of Trello to show cards beyond all boards in the same calendar we decided to help ourselves and started developing our own application that would fits in smoothly in our own workflow. Main goal was to achieve a simple calendar view and not to replace any features Trello already provides. In […]
READ MORE