Monday, April 24, 2017

you need some digital skills

If you what kind of skills are necessary for the next generations, they need the online life, consuming information and networking: 



  • collaboration and co-working also in remote distances, sometimes also unknown and/or different culture person 
  • get quickly an overview. you can not analyze big data row by row anymore. you have to find the trends, the reasons, to estimate the possible consequences 
  • find the information, the right place, the right person, don not be lost in the always changing, challenging world 
  • continuously be prepared for learning by doing. If you meet new or strange situation, you have to able to handle it, even accept or ignore it. 
  • produce new information in many different level: sharing emotions and experiences, easy consumable stories, guidelines, overviews, studies. the information sharing via popular tools like Twitter, Wikipedia, Scribd are getting more and more important in the personal and profeesional instant life
Wheeler’s engagement pyramid of digital learning (Source: adapted from Wheeler, 2013)


Tuesday, April 4, 2017

Search with Compass

Hey, we use an xml based compass in a project, working very well. Sometimes we run a reindexation, not more then two times a year.

The search is very easy:
CompassSearchHelper compassSearchHelper = new CompassSearchHelper(...);
CompassQuery query = compassSearchHelper.buildQuery(criteria);
CompassSearchCommand command = new CompassSearchCommand(query, pageNumber);
CompassSearchResults searchResults = compassSearchHelper.searchLocal(command);

You can also highlight the keywords in the search result.

run the indexation:
SingleCompassGps compassGps;
compassGps.index();

and the optimization:
compassGps.getIndexCompass().getSearchEngineOptimizer().optimize(numberOfSegments);