17 February 2014

Accessing Jenkins env variables in a Maven project

As some of you may already know, Jenkins has some environment variables such as BUILD_NUMBER, BUILD_URL etc. which are being set on execution. These variables can be accessed with various ways such as shell script, maven pom.xml file and more. The description below is relevant to maven based projects.

1 December 2013

Brace.io project

Brace.io is a really cool way of hosting websites by storing everything in Dropbox folders. The contents of the shared Dropbox folder are uploaded to your selected domain and whenever you make changes to these, your website is updated automatically. When I uploaded one of my projects in mariosk.brace.io I was surprised to see how fast the modifications were applied.The scope of my project was about finding alternative ways of visualising twitter data based on keywords representing positive and negative feelings. Although some functionalities are not supported as an external db is required, you will be able to test the core part of it.

Hope you like it.

Cheers.

Update:
Unfortunately, brace.io has been shut down since January 26th 2015. 

13 September 2013

Exporting environment variables in Windows


  1. Press the start button (bottom left) corner of your screen and type "regedit.exe" and then press Enter. 
  2. Select "Yes" on the UAC.
  3. For Global Variables:
    1. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
    2. Right click and hit Export
  4. For User defined variables
    1. Navigate to HKEY_CURRENT_USER\Environment
    2. Right click and hit Export



13 August 2013

Country list with coordinates (LAT/LNG) in SQL format


All countries along with coordinates (LAT/LNG)in SQL format. I couldn't find the list in the correct format so I had to modify this version to get the right one.


8 May 2013

Cloth simulation

Really excited to finally develop my first ever physically based cloth simulation. I have used semi-implicit Euler method for this simulation. Check it out on the video below. Any comments would be really appreciated. Enjoy

19 March 2013

Add annotation on map with custom image


In order to recognize the long press gesture on map, you need to add the code below in your viewDidLoad method.