Wij, de medewerkers van Kabisa, mochten een maand lang rondrijden in de gekste elektrische voertuigen zoals de Twike, de e-scooter, de Floow, de e-bike, de PG Bike en een e-car. Na het invullen van de enquete over elektrisch rijden en energieverbruik was het dan zover; Frank Nienhaus van Stichting Limburg Elektrisch deelde de voertuigen uit [...]
Een mooie elektrische ervaring!
May 15th, 2012Kabisa aan de stekker
April 19th, 2012Kabisa ICT zet als eerste organisatie in de regio elektrische voertuigen in voor het personeel. Dit doet Kabisa in samenwerking met Stichting Limburg Elektrisch. Vier weken lang mogen medewerkers per elektrische auto, e-scooter of e-bike naar hun werk komen en hier ervaring mee opdoen. De elektrische voertuigen zijn een stuk minder afhankelijk van fossiele brandstoffen [...]
Kabisa at #arrrrcamp 2011
October 7th, 2011Hi guys, We’re posting this one right at ya from Arrrrcamp 2011 in Ghent. Arrrrcamp is one of the best known RoR events in Belgium. An event Kabisa is a proud sponsor of. Our crew is sitting in the sessions and we’ll report in this post after each event. John W Long – Design workflow for Rails [...]
Custom Array#uniq for ActiveRecord results
June 3rd, 2011You may be aware of the uniq method in Ruby: [1,2,3,4,4,6,2].uniq => [1,2,3,4,6] This does not work for arrays of ActiveRecord objects, especially if you want uniqueness on a arbitrary property. Here’s a snippet that allows you to uniquify an Array using an arbitrary property: Hash[*arrayname.map {|obj| [obj.name, obj]}.flatten].values Basically you create a new Hash, [...]
“No architectures to compile” in Xcode 4
June 3rd, 2011XCode 4 has a new, improved project structure. But sometimes, when you open an older project format (like XCode 3) you’ll face a little challenge before you can get to coding again.
Xcode4: Attaching to MyApp
May 24th, 2011Today I imported an iOS project, originally written in Xcode3 into Xcode4. I ran into an issue that prevented me from debugging the app both in the iOS Simulator and on my own iPhone 4. When hitting ‘Run’, all Xcode would do is show the message “Attaching to MyApp”. The simulator and my iPhone both [...]
Long running migrations? Use the right tool for the job!
May 19th, 2011Rails migrations are awesome, even for updating data after a migration to keep everything consistent. Arguably, you should not update data in migrations, but it is useful in some scenarios. If done incorrectly, however, data migrations can take a long time, causing unnecessary downtime of your application.
Share sessions between Rails 2 and Rails 3 applications
October 27th, 2010This week we started building a Rails 3 application for one of our customers which had to share data with their existing Rails applications, which were built with version 2.1.2 and 2.3.8. Although session configuration differs from version 2 to 3, getting this done wasn’t such a hard job, mainly thanks to this blogpost written [...]
Handle CMYK colorspace uploads with Paperclip
June 17th, 2010When saving images in general, and JPEG in particular, a colorspace is used. The two most commonly used colorspaces are RGB and CMYK. RGB is used for screens (e.g. television, monitors, phones). Screens work by combining different light colors (red, green or blue) into one color we can actually see. CMYK is used in print [...]

