Lucene.Net_2_9_2

14. januar 2011 by Anders Jensen

I've Been working with lucene and azure, and had problems getting the last svn release of lucene.net, so finaly got it and what to share a zip of it.

https://svn.apache.org/repos/asf/lucene/lucene.net/tags/Lucene.Net_2_9_2/

Content:

DISCLAIMER.txt
LICENSE.txt
NOTICE.txt
README.txt
contrib/
src/

Download here.

Tvix m6500A - Cooling

10. juni 2010 by Anders Jensen

My Tvix m6500a startede to freeze, so desided to put in a new fan, so now it has 2 fans.

Image 1

Image 2

How to : mpcclub.com

Z-Wave - Home Control.

14. januar 2010 by Anders Jensen

Startede looking for home control a few years back, and I came across Z-Wave, ZigBee, x10.

If you want to read more:
http://en.wikipedia.org/wiki/Z-Wave

http://en.wikipedia.org/wiki/ZigBee

http://en.wikipedia.org/wiki/X10_(industry_standard)

In the last few days, I have been looking into z-wave, and startede coding with some help from digiwave.dk.
For code examples check out digiwave.dk and its forum.

A list of use full sites about z-wave:

ZWaves.dk
Digiwave.dk

Android - How to OptionMenu

10. december 2009 by Anders Jensen

Here is a small how to create the option menu.

public boolean onCreateOptionsMenu(Menu menu){
   super.onCreateOptionsMenu(menu);
   menu.add(Menu.NONE, 0, 0, "Quit");
   return true;
}


Here is how to catch the click.

public boolean onMenuItemSelected(int featureId, MenuItem item){ 
super.onMenuItemSelected(featureId, item);

if(item.getItemId() == 0) {
   // This will close your android app.
finish(); } }

Pretty simpel....

Android SDK - Eclipse : Setup

26. november 2009 by Anders Jensen

I used a few days, setting up android sdk and eclipse so I could make my own android widgets.

So here is a short toturial on how to do it nice and clean.

1. Get the android SDK installer.
http://developer.android.com/sdk/index.html

When you have downloaded it, unzip it to the place where you want to use it from, like c\:program files\"android sdk".

Now you run the "SDK Setup.exe".

android_sdk_avd.png

If you get a error when its trying to get Available Packages, go to settings and check the "Force https:// to be fetched using http://".

2. Get Eclipse Classic's from http://www.eclipse.org/downloads/

When you have downloaded it, unzip it to the place where you want to use it from, like c\:program files\"eclipse".

Run eclipse.exe, first thing set up your workspace, the place where it stores your projects.

When that is done, got to help and select "Install New Software..."
"Work with:" add : https://dl-ssl.google.com/android/eclipse/

Install the 2 options that it provides.
eclipse_help_install.png

Next go to "Window" and select "Preferences", and "Android".

eclipse_window_preferences.png

Set the SDK Location: to the path where you installed the android SDK.
like : C:\Program Files\android sdk\
Click Apply, and now it will start to set up the Android sdk's.

Now it sould all be ready.... enjoy

any questions, shoot. :o)