summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYves Fischer <yves.fischer@cern.ch>2016-01-25 22:14:26 +0100
committerYves Fischer <yves.fischer@cern.ch>2016-01-25 22:14:26 +0100
commit08b882f4cf284bed3f8f80f6e47d37037753a22b (patch)
treed328f7f98b079e324690f8b3fbbb0d0ee2b1ba61
downloadglocals-classifieds-08b882f4cf284bed3f8f80f6e47d37037753a22b.tar.gz
glocals-classifieds-08b882f4cf284bed3f8f80f6e47d37037753a22b.zip
commit
-rw-r--r--.gitignore4
-rw-r--r--build.gradle28
-rw-r--r--gradle.properties2
-rw-r--r--gradle/wrapper/gradle-wrapper.jarbin0 -> 51018 bytes
-rw-r--r--gradle/wrapper/gradle-wrapper.properties6
-rwxr-xr-xgradlew164
-rw-r--r--settings.gradle2
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/ClassifiedParserMain.groovy87
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/Dumper.groovy25
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/Model.groovy102
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/util/Fail.groovy40
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/util/Failable.groovy14
-rw-r--r--src/main/groovy/org/xapek/yvesf/classifieds/util/Success.groovy36
-rw-r--r--test.json1
14 files changed, 511 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0b61af9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/.idea
+/*.iml
+/.gradle
+/build
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..c000567
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,28 @@
+group 'org.xapek.yvesf'
+version '1.0-SNAPSHOT'
+
+apply plugin: 'groovy'
+
+repositories {
+ mavenCentral()
+ maven {
+ url 'https://oss.sonatype.org/content/repositories/snapshots/'
+ }
+}
+
+dependencies {
+ compile 'org.codehaus.groovy:groovy-all:2.3.11'
+ compile 'org.codehaus.groovy:http-builder:0.4.1'
+ testCompile group: 'junit', name: 'junit', version: '4.11'
+}
+
+jar {
+ manifest {
+ attributes 'Main-Class': 'org.xapek.yvesf.classifieds.ClassifiedParserMain'
+ }
+}
+
+task run(type: JavaExec) {
+ main('org.xapek.yvesf.classifieds.ClassifiedParserMain')
+ classpath(jar.archiveName)
+} \ No newline at end of file
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..b5d1e2e
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,2 @@
+grailsVersion=3.0.10
+gradleWrapperVersion=2.3
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..c97a8bd
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.jar
Binary files differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..92e5272
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Dec 16 15:31:20 CET 2015
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-all.zip
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..91a7e26
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,164 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >&-
+APP_HOME="`pwd -P`"
+cd "$SAVED" >&-
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..8e17895
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,2 @@
+rootProject.name = 'classifieds'
+
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/ClassifiedParserMain.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/ClassifiedParserMain.groovy
new file mode 100644
index 0000000..499a37a
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/ClassifiedParserMain.groovy
@@ -0,0 +1,87 @@
+package org.xapek.yvesf.classifieds
+
+import groovy.json.JsonSlurper
+import groovyx.net.http.HTTPBuilder
+import org.apache.http.HttpResponse
+import org.xapek.yvesf.classifieds.util.Fail
+import org.xapek.yvesf.classifieds.util.Failable
+import org.xapek.yvesf.classifieds.util.Success
+
+class ClassifiedParserMain {
+ static final url = 'http://www.glocals.com/classifieds/housing-and-real-estate/&get_classified_flats'
+
+ static void main(String[] args) {
+ handleData(args.length == 1 ? readJsonFile(args.first()) : readNetwork()).with {
+ if (it instanceof Fail) {
+ println "Failed: ${it.error}"
+ System.exit(1)
+ } else {
+ Dumper.dump(it.value, new PrintWriter(System.out))
+ System.exit(0)
+ }
+ }
+ }
+
+ static Object readJsonFile(String f) {
+ final jsonParser = new JsonSlurper()
+ return jsonParser.parse(new File(f))
+ }
+
+ static Object readNetwork() {
+ final http = new HTTPBuilder(url)
+ final jsonParser = new JsonSlurper()
+ http.post(
+ body: ['start': '20', 'limit': '20', 'form[bl_city_network]': '-1'],
+ headers: ['User-Agent': 'Mozilla/5.0 Firefox/3.0.4',
+ 'Accept' : 'application/json']) { HttpResponse resp ->
+ assert resp.statusLine.statusCode < 300 && resp.statusLine.statusCode >= 200:
+ "HTTP Request failed with status code ${resp.statusLine.statusCode}"
+ return jsonParser.parse(resp.entity.content)
+ } as Object
+ }
+
+ private static Failable<Model.ClassifiedList> handleData(Object p) {
+ expectMap(p) << { Map m ->
+ getOrFail(m, 'totalCount', Number) << { Number totalCount ->
+ getOrFail(m, 'classifieds', List) << { List rawClassifieds ->
+ all(rawClassifieds.collect { handleClassified(it) }) << { List<Model.Classified> classifieds ->
+ final Model.ClassifiedList classifiedList = new Model.ClassifiedList(totalCount: totalCount)
+ classifiedList.addAll(classifieds)
+ return new Success(classifiedList)
+ }
+ }
+ }
+ }
+ }
+
+ private static Failable<Model.Classified> handleClassified(Object p) {
+ expectMap(p) << { Map map ->
+ return new Success(new Model.Classified(map)) // here I cheat a bit
+ }
+ }
+
+ static <T> Failable<List<T>> all(Collection<Failable<T>> values) {
+ if (values.every { it.success }) {
+ return new Success<List<T>>(values.collect { it.value })
+ } else {
+ return new Fail("Not all values are successful, first error: ${values.find { !it.success }.error}")
+ }
+ }
+
+ static Failable<Map> expectMap(Object data) {
+ if (data instanceof Map) return new Success(data)
+ else return new Fail('object is not instanceof Map')
+ }
+
+ static <T> Failable<T> getOrFail(Map map, String key, Class<T> clazz = Object) {
+ if (!map.containsKey(key)) return new Fail('key not in map')
+ else {
+ final x = map.get(key)
+ if (clazz.isAssignableFrom(x.getClass())) {
+ return new Success<T>(x as T)
+ } else {
+ return new Fail("Key ${key} found but not of type ${clazz}")
+ }
+ }
+ }
+}
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/Dumper.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/Dumper.groovy
new file mode 100644
index 0000000..884166d
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/Dumper.groovy
@@ -0,0 +1,25 @@
+package org.xapek.yvesf.classifieds
+
+import groovy.xml.MarkupBuilder
+import org.xapek.yvesf.classifieds.Model.ClassifiedList
+
+
+class Dumper {
+ static dump(ClassifiedList classifiedList, PrintWriter writer) {
+ new MarkupBuilder(writer).root {
+ rss(version: '2.0') {
+ channel {
+ title('Glocals')
+ }
+ classifiedList.each { Model.Classified classified ->
+ item {
+ title("${classified.type} - ${classified.title} - ${classified.composedLocation}")
+ guid(classified.id)
+ author(classified.memberName)
+ description(classified.description)
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/Model.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/Model.groovy
new file mode 100644
index 0000000..ee0b11d
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/Model.groovy
@@ -0,0 +1,102 @@
+package org.xapek.yvesf.classifieds
+
+class Model {
+ static class Classified {
+ //0 = available" -> "Flexible"
+ //1 = city" -> "France"
+ //2 = column_headings" -> "0"
+ //3 = contact" -> "0795354458"
+ //4 = currency" -> "CHF"
+ //5 = date" -> "Jan 25, 16"
+ //6 = description" -> "Fully furnished house of 270 sqm in total. <br />\r\n<br />\r\nVery nice and big house of 270sqm (included 90 sqm2 of basement) with 5 bedrooms, 2 showerooms,1 bathroom and a guest toilet. 70 sqm of closed garage. Wine cellar. Lots of storage.<br />\r\n<br />\r\nBig living/dining room with fireplace. Big kitchen all equipped.<br />\r\n<br />\r\nLaundry area and storage room.<br />\r\n<br />\r\n1000 sqm of land.<br />\r\n<br />\r\nLocated in Valleiry 20 minutes from Geneva.<br />\r\n<br />\r\n3'000 €<br />\r\n<br />\r\nCan be rent unfurnished TBD<br />\r\n<br />\r\nNo agencies, thanks!"
+ //7 = expired" -> "0"
+ //8 = id" -> "67199"
+ //9 = location" -> "Valleiry"
+ //10 ="mark" -> "<a href="javascript:mark(67199)" id="classified_mark_67199">Mark / Save Ad</a>"
+ //11 ="mem_first_name" -> "petitemanga"
+ //12 ="mem_id" -> "16088"
+ //13 ="mem_link" -> "javascript:open_login_popup();"
+ //14 ="mem_name" -> "petitemanga"
+ //15 ="mem_name_js" -> "petitemanga"
+ //16 ="mem_photo" -> "http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif"
+ //17 ="network" -> "Geneva"
+ //18 ="photo1" -> "/_media/board_flat1/67/67199_bl_photo_eedba.jpg"
+ //19 ="photo2" -> "/_media/board_flat1/67/67199_bl_photo2_58cc1.jpg"
+ //20 ="photo3" -> "/_media/board_flat1/67/67199_bl_photo3_a5502.jpg"
+ //21 ="photo4" -> "/_media/board_flat1/67/67199_bl_photo4_63653.jpg"
+ //22 ="photos" -> "1"
+ //23 ="price" -> "3000"
+ //24 ="rooms" -> "7"
+ //25 ="status" -> "null"
+ //26 ="title" -> "Fully furnished house of 270 sqm and huge terrace of 90 sqm"
+ //27 ="title_js" -> "Fully furnished house of 270 sqm and huge terrace of 90 sqm"
+ //28 ="type" -> "Apts / Housing for rent"
+ //29 ="views" -> "8"
+ private Map map
+
+ Classified(Map m) {
+ this.@map = m
+ }
+
+ Map getMap() {
+ return map
+ }
+
+ String getComposedLocation() {
+ return "${map.get('location')}, ${map.get('city')}"
+ }
+
+ String getType() {
+ return map.get('type') as String
+ }
+
+ String getAvailable() {
+ return map.get('available') as String
+ }
+
+ String getCity() {
+ return map.get('city')
+ }
+
+ String getPrice() {
+ return map.get('price') as String
+ }
+
+ String getCurrency() {
+ return map.get('currency') as String
+ }
+
+ String getViews() {
+ return map.get('views') as String
+ }
+
+ String getTitle() {
+ return map.get('title') as String
+ }
+
+ String getId() {
+ return map.get('id') as String
+ }
+
+ String getMemberName() {
+ return map.get('mem_name') as String
+ }
+
+ String getDescription() {
+ return map.get('description') as String
+ }
+ }
+
+ static class ClassifiedList extends ArrayList<Classified> {
+ private long totalCount
+
+ void setTotalCount(long totalCount) {
+ this.@totalCount = totalCount
+ }
+
+ @Override
+ String toString() {
+ return "Classified List: totalCount=${totalCount} actualCount=${size()}"
+ }
+ }
+}
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/util/Fail.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/util/Fail.groovy
new file mode 100644
index 0000000..c58d6ef
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/util/Fail.groovy
@@ -0,0 +1,40 @@
+package org.xapek.yvesf.classifieds.util
+
+import groovy.transform.CompileStatic
+import groovy.transform.ToString
+
+
+@CompileStatic
+@Newify
+@ToString(includeFields = true, includeNames = true)
+class Fail<T> implements Failable<T> {
+ private String error
+
+ Fail() {
+ this.@error = null
+ }
+
+ Fail(String error) {
+ this.@error = error;
+ }
+
+ @Override
+ boolean isSuccess() {
+ return false
+ }
+
+ @Override
+ Object getValue() {
+ return null
+ }
+
+ @Override
+ String getError() {
+ return error
+ }
+
+ @Override
+ def <T2> Failable<T2> leftShift(Closure<Failable<T2>> closure) {
+ return null
+ }
+}
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/util/Failable.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/util/Failable.groovy
new file mode 100644
index 0000000..4ad5e90
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/util/Failable.groovy
@@ -0,0 +1,14 @@
+package org.xapek.yvesf.classifieds.util
+
+import groovy.transform.CompileStatic
+
+@CompileStatic
+interface Failable<T> {
+ boolean isSuccess()
+
+ T getValue()
+
+ String getError()
+
+ public <T2> Failable<T2> leftShift(Closure<Failable<T2>> closure);
+} \ No newline at end of file
diff --git a/src/main/groovy/org/xapek/yvesf/classifieds/util/Success.groovy b/src/main/groovy/org/xapek/yvesf/classifieds/util/Success.groovy
new file mode 100644
index 0000000..224909d
--- /dev/null
+++ b/src/main/groovy/org/xapek/yvesf/classifieds/util/Success.groovy
@@ -0,0 +1,36 @@
+package org.xapek.yvesf.classifieds.util
+
+import groovy.transform.CompileStatic
+import groovy.transform.ToString
+
+
+@CompileStatic
+@Newify
+@ToString(includeFields = true, includeNames = true)
+class Success<T> implements Failable<T> {
+ private T value
+
+ public Success(T value) {
+ this.value = value
+ }
+
+ @Override
+ boolean isSuccess() {
+ return true
+ }
+
+ @Override
+ T getValue() {
+ return value
+ }
+
+ @Override
+ String getError() {
+ return null
+ }
+
+ @Override
+ def <T2> Failable<T2> leftShift(Closure<Failable<T2>> closure) {
+ return closure.call(value)
+ }
+} \ No newline at end of file
diff --git a/test.json b/test.json
new file mode 100644
index 0000000..4050335
--- /dev/null
+++ b/test.json
@@ -0,0 +1 @@
+{"classifieds":[{"available":"Mar 15, 16","city":"Geneva","column_headings":1,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"I am looking for candidates to taking over my apartment in Plainpalais.<br />\r\n- Three pieces, 55 sqm, balcony, cave. <br />\r\n- Very easy access of public transportation: Tram 14, Bus 2, 11 and 19. <br />\r\n- Five minutes walk to Vernets Sports Center, downstairs COOP, Migros and Dener, phamacies, fleurist etc. Very dynamic area with bars, resturants and museums. <br />\r\n- Price: 1500 CHF a month. <br />\r\nIt is a price impossible in Geneva. <br />\r\n<br />\r\nThe apartment is subject for taking over, NO temporary rent. <br />\r\n<br />\r\nConditions:<br />\r\n- For 1 or 2 people, no kids. <br />\r\n- Willing to discuss and buy my furnitures ( double sized bed, fridge, sofa bed, table etc. All in good quality and good status.) <br />\r\n- Forecast for mid-March 2016 taking over. <br />\r\n<br />\r\nIf you are interested, please reply and introduce your situation ( job, age, ok for furniture taking over etc). I will reply asap. <br />\r\n<br />\r\nA visit can be arranged. <br />\r\n<br />\r\nThanks.","expired":0,"id":"67198","location":"","mark":"<a href=\"javascript:mark(67198)\" id=\"classified_mark_67198\">Mark / Save Ad</a>","mem_first_name":"Yezi","mem_id":"69841","mem_link":"javascript:open_login_popup();","mem_name":"Yezi G","mem_name_js":"Yezi G","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"1500","rooms":"3","status":null,"title":"Plainpalais 3 pieces apt taking over with furniture ( 1500CHF charges included)","title_js":"Plainpalais 3 pieces apt taking over with furniture ( 1500CHF charges included)","type":"Apts / Housing for rent","views":"20"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"lulito35@hotmail.com","currency":"CHF","date":"Jan 25, 16","description":"Available immediately , fully furnished studio in the Rue Sautter - 1205 Geneva <br />\r\nExcellent location close to public, transport, lake, park and shops.<br />\r\nEquipped kitchen<br />\r\nElevator, laundry facilities in the building<br />\r\nCHF1.500 (including bills, electricity, telephone, Wi-Fi and TV- cleaning twice a month.)<br />\r\nPrefer someone working for an International Organization, no smokers, and no pets.<br />\r\nOne month deposit required. No smoking.","expired":0,"id":"63508","location":"Rue Sautter / 1205 Geneva","mark":"<a href=\"javascript:mark(63508)\" id=\"classified_mark_63508\">Mark / Save Ad</a>","mem_first_name":"Luz Elena","mem_id":"68899","mem_link":"javascript:open_login_popup();","mem_name":"Luz Elena R","mem_name_js":"Luz Elena R","mem_photo":"http://cdn.glocals.com/sites/glocals/_media/members/68/68899_mem_photo_e5ac2.jpg","network":"Geneva","photo1":"/_media/board_flat1/63/63508_bl_photo_8417d.jpg","photo2":"/_media/board_flat1/63/63508_bl_photo2_b08fe.jpg","photo3":"/_media/board_flat1/63/63508_bl_photo3_bca21.jpg","photo4":"/_media/board_flat1/63/63508_bl_photo4_73643.jpg","photos":1,"price":"1500","rooms":"1","status":null,"title":"Fully furnished Central STUDIO. Available immediately - Rue Sautter - front of the hospital of Geneva,","title_js":"Fully furnished Central STUDIO. Available immediately - Rue Sautter - front of the hospital of Geneva,","type":"Apts / Housing for rent","views":"15"},{"available":"Flexible","city":"France","column_headings":0,"contact":"0795354458","currency":"CHF","date":"Jan 25, 16","description":"Fully furnished house of 270 sqm in total. <br />\r\n<br />\r\nVery nice and big house of 270sqm (included 90 sqm2 of basement) with 5 bedrooms, 2 showerooms,1 bathroom and a guest toilet. 70 sqm of closed garage. Wine cellar. Lots of storage.<br />\r\n<br />\r\nBig living/dining room with fireplace. Big kitchen all equipped.<br />\r\n<br />\r\nLaundry area and storage room.<br />\r\n<br />\r\n1000 sqm of land.<br />\r\n<br />\r\nLocated in Valleiry 20 minutes from Geneva.<br />\r\n<br />\r\n3'000 \u20ac<br />\r\n<br />\r\nCan be rent unfurnished TBD<br />\r\n<br />\r\nNo agencies, thanks!","expired":0,"id":"67199","location":"Valleiry","mark":"<a href=\"javascript:mark(67199)\" id=\"classified_mark_67199\">Mark / Save Ad</a>","mem_first_name":"petitemanga","mem_id":"16088","mem_link":"javascript:open_login_popup();","mem_name":"petitemanga","mem_name_js":"petitemanga","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/67/67199_bl_photo_eedba.jpg","photo2":"/_media/board_flat1/67/67199_bl_photo2_58cc1.jpg","photo3":"/_media/board_flat1/67/67199_bl_photo3_a5502.jpg","photo4":"/_media/board_flat1/67/67199_bl_photo4_63653.jpg","photos":1,"price":"3000","rooms":"7","status":null,"title":"Fully furnished house of 270 sqm and huge terrace of 90 sqm","title_js":"Fully furnished house of 270 sqm and huge terrace of 90 sqm","type":"Apts / Housing for rent","views":"8"},{"available":"","city":"Geneva","column_headings":0,"contact":"lulito35@hotmail.com","currency":"CHF","date":"Jan 25, 16","description":"Fully furnished room available immediately. 3 Rue de Cornavin - 1201 Geneva.<br />\r\nIt is fully furnished with wifi, laundry machine,kitchen and others. <br />\r\nOne month deposit required","expired":0,"id":"62038","location":"Rue de Cornavin 3","mark":"<a href=\"javascript:mark(62038)\" id=\"classified_mark_62038\">Mark / Save Ad</a>","mem_first_name":"Luz Elena","mem_id":"68899","mem_link":"javascript:open_login_popup();","mem_name":"Luz Elena R","mem_name_js":"Luz Elena R","mem_photo":"http://cdn.glocals.com/sites/glocals/_media/members/68/68899_mem_photo_e5ac2.jpg","network":"Geneva","photo1":"/_media/board_flat1/62/62038_bl_photo_2d831.jpg","photo2":"/_media/board_flat1/62/62038_bl_photo2_06318.jpg","photo3":"/_media/board_flat1/62/62038_bl_photo3_9904b.jpg","photo4":"/_media/board_flat1/62/62038_bl_photo4_4a640.jpg","photos":1,"price":"950","rooms":"1","status":"<img src=\"http://cdn.glocals.com/sites/glocals/_static_media/public/modules/board/reply.png\" alt=\"Replied\" ext:qtip=\"You Replied to this Post\" />","title":"Fully furnished room available immediately - 3 Rue Cornavin - Geneva - Only Men","title_js":"Fully furnished room available immediately - 3 Rue Cornavin - Geneva - Only Men","type":"Apts / Housing for rent","views":"13"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"+41786230434","currency":"CHF","date":"Jan 25, 16","description":"A very nice room in a fully furnished 4 pieces apartment to share with female flat mate.<br />\r\n<br />\r\nLOCATION: The flat is situated in Veyrier close to bus N 8 stop which connects with downtown Geneva, Cornavin, United Nations etc. It is on the third (last) floor of the building.<br />\r\n<br />\r\nTHE APARTMENT: The flat is very bright and fully furnished with all utilities (WIFI, BlueWin TV).<br />\r\nThe flat consists of a living room, kitchen, 2 bedrooms, balcony, bathroom, WC.<br />\r\nIn the basement there is a storage room, parking spot is available too. The kitchen is fully equipped with el. cooker, oven, fridge/freezer, microwave and all kitchen utilities, tableware etc. The bathroom has a bath. Washing machine and dryer are available in the basement at time of your convenience. The apartment has hardwood floors in all rooms and the corridor. The kitchen and the bathroom have tiled floors.<br />\r\n<br />\r\nTHE ROOM: The room to be rented out has about 18 square meters. The room is furnished with double bed, wardrobe, desk, chair, shelves. <br />\r\n<br />\r\nTHE RENT: CHF 1100, 2 months deposit required, 1month notice period (if the term is not fixed)<br />\r\n<br />\r\nTHE TENNANT: I am looking for a responsible and discreet person, who is interested in renting the room for a short or longer period (at least six months, preferably longer). No pets and no smoking inside, please!","expired":0,"id":"62161","location":"Veyrier","mark":"<a href=\"javascript:mark(62161)\" id=\"classified_mark_62161\">Mark / Save Ad</a>","mem_first_name":null,"mem_id":"0","mem_link":"javascript:open_login_popup();","mem_name":"Anonymous","mem_name_js":"Anonymous","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/62/62161_bl_photo_12e84.jpg","photo2":"/_media/board_flat1/62/62161_bl_photo2_23128.jpg","photo3":"/_media/board_flat1/62/62161_bl_photo3_c90e2.jpg","photo4":"/_media/board_flat1/62/62161_bl_photo4_b9abd.jpg","photos":1,"price":"999","rooms":"0","status":null,"title":"GRET DEAL 4 pieces apartment of a price of a single room.","title_js":"GRET DEAL 4 pieces apartment of a price of a single room.","type":"Apt shares / Room mates","views":"5"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"078 818 9089","currency":"CHF","date":"Jan 25, 16","description":"Cozy, fully furnished room in a lovely Champel apartment, where I live with my two sweet tween-age children. <br />\r\nThis is a temporary solution, 2-3 months.<br />\r\nQuite often we are not here on weekends. <br />\r\nAvailable immediately. <br />\r\n800 CHF rent + 150 for the use of everything, from heat, water, electricity, high-speed internet, washer, kitchen etc.","expired":0,"id":"67127","location":"Champel","mark":"<a href=\"javascript:mark(67127)\" id=\"classified_mark_67127\">Mark / Save Ad</a>","mem_first_name":"Zane","mem_id":"87298","mem_link":"javascript:open_login_popup();","mem_name":"Zane E","mem_name_js":"Zane E","mem_photo":"http://cdn.glocals.com/sites/glocals/_media/members/87/87298_mem_photo_67155.jpg","network":"Geneva","photo1":"/_media/board_flat1/67/67127_bl_photo_02391.jpg","photo2":"/_media/board_flat1/67/67127_bl_photo2_a61fe.jpg","photo3":"/_media/board_flat1/67/67127_bl_photo3_d2eef.jpg","photo4":0,"photos":1,"price":"800","rooms":"0","status":null,"title":"Room in Champel in family apartment - woman only","title_js":"Room in Champel in family apartment - woman only","type":"Apt shares / Room mates","views":"13"},{"available":"Immediate","city":"Geneve","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Price covers all utilities, including washing-machine and WIFI. Bedding and towels provided. Fully furnished spacious bright room w/ large living-room, open kitchen, big balcony and terrace on different levels,. 15 minute walk to airport, Balexert (Shopping Center for food, clothing, movie theater....) and Balexpo (various sports grounds, exhibitions). Walk to MiGros, Denner and Coop, bus No. 3, 5, 28 and F, post office, pharmacy, nail salon, dental, gym, restaurants, parks.<br />\r\n<br />\r\nThere are 3 bedrooms. The rooms are spacious, bright and sunny (French windows). Quiet apt., building and area. 2 bath/shower/toilet rooms, roof terrace with panoramic view of the mountains and airport. <br />\r\n<br />\r\nThere is a double bed, wardrobe, desk/chair, and chest of drawers in the room.<br />\r\n<br />\r\nConvenient transport connections for all Geneva areas and France. <br />\r\n<br />\r\nClean and friendly people are welcome. Flexible terms and rates.","expired":0,"id":"60241","location":"Grand-Saconnex","mark":"<a href=\"javascript:mark(60241)\" id=\"classified_mark_60241\">Mark / Save Ad</a>","mem_first_name":"Jen","mem_id":"35189","mem_link":"javascript:open_login_popup();","mem_name":"Jen C","mem_name_js":"Jen C","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/60/60241_bl_photo_79450.jpg","photo2":"/_media/board_flat1/60/60241_bl_photo2_d386a.jpg","photo3":"/_media/board_flat1/60/60241_bl_photo3_28aea.jpg","photo4":"/_media/board_flat1/60/60241_bl_photo4_65f93.jpg","photos":1,"price":"1350","rooms":"1","status":null,"title":"Furnished-room in Duplex -- Walk to Int'l orgs., airport, Palexpo, Palexert","title_js":"Furnished-room in Duplex -- Walk to Int\\'l orgs., airport, Palexpo, Palexert","type":"Apt shares / Room mates","views":"10"},{"available":"Mar 3, 16","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Rue Cramer - near Cornavin and UN. Underground in modern appt block. Direct from owner.<br />\r\nNo timewasters please.","expired":0,"id":"67061","location":"","mark":"<a href=\"javascript:mark(67061)\" id=\"classified_mark_67061\">Mark / Save Ad</a>","mem_first_name":"Dominic","mem_id":"116558","mem_link":"javascript:open_login_popup();","mem_name":"Dominic L","mem_name_js":"Dominic L","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"225","rooms":"0","status":null,"title":"SECURE - UNDERGROUND PARKING","title_js":"SECURE - UNDERGROUND PARKING","type":"Parking / Storage","views":"3"},{"available":"Feb 1, 16","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Secure, locked, clean, high-tech automated indoor parking at Rue de Lausanne, close to the Mole and Butini tram stops. 200 CHF per month plus refundable 200 CHF security deposit. Available February 1 for short or long-term lease.","expired":0,"id":"66889","location":"Paquis","mark":"<a href=\"javascript:mark(66889)\" id=\"classified_mark_66889\">Mark / Save Ad</a>","mem_first_name":"Meg","mem_id":"121266","mem_link":"javascript:open_login_popup();","mem_name":"Meg D","mem_name_js":"Meg D","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"200","rooms":"0","status":null,"title":"Secure indoor parking near Cornavin 200 CHF/month","title_js":"Secure indoor parking near Cornavin 200 CHF/month","type":"Parking / Storage","views":"0"},{"available":"Feb 15, 16","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Furnished room (bed+desk) for rent in a spacious shared apartment in Geneva. Available starting February 15th for at least two months, until April 15th, possibly longer. The rent is 1200 CHF/month which includes utilities and high speed internet.<br />\r\n<br />\r\nIt's a great apartment with a large living room and a balcony overlooking a quiet green space. The apartment itself is fully furnished, and the kitchen is also fully equipped, including a laundry machine.<br />\r\n<br />\r\nThe location is 60 Rue Rothschild, within easy walking distance of both Gare Cornavin and the lake. There are several options for grocery shopping within 5 minutes walk on Rue de Lausanne.<br />\r\n<br />\r\nThere are 2 roommates (Josh Kunkle and Mia Liu), both doing postdoctoral fellowships on CMS.<br />\r\n<br />\r\nIf you're interested in visiting the apartment and meeting Josh and Mia, please contact me (joseph.taenzer@cern.ch).","expired":0,"id":"67195","location":"","mark":"<a href=\"javascript:mark(67195)\" id=\"classified_mark_67195\">Mark / Save Ad</a>","mem_first_name":"Joe","mem_id":"121052","mem_link":"javascript:open_login_popup();","mem_name":"Joe Taenzer","mem_name_js":"Joe Taenzer","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"1200","rooms":"1","status":null,"title":"Furnished room for rent from Feb 15th (Geneva, 1200 CHF/month)","title_js":"Furnished room for rent from Feb 15th (Geneva, 1200 CHF/month)","type":"Sublets / Temporary","views":"15"},{"available":"Feb 1, 16","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Great location, short walkt to tram 12 /18 to Cern, Wipo, Who. Bus 1 etc.<br />\r\nEasy walk to Unimail, or HUG. <br />\r\nAll towels, sheets, kitchenware are here to use while I am away. <br />\r\nMain room has a single bed, love seat, TV, (cable &internet wifi)<br />\r\nThe bathroom has toilet, sink, bathtub (with hand held shower) there are towels. <br />\r\n<br />\r\nThe love seat can be used in a pinch for a visitor. Not for regular sleeping. There is,a small vacume cleaner, and other furnatures in the flat. One small clothset for use, and a couple of drawers. 30m2 with the kitchen seperate, tiny balcony. Self service laundy accross the street, near coop & migros, Denner on ground floor. <br />\r\n<br />\r\nSafe building. This is an older apartment. 01 february . Max till mid march. 60- night. (1450-/mois )<br />\r\nEverything you need is here, while I am gone. A security deposit will be required, and a discreeat communicative person. Non smoker preferred. No parking. Please give me an whatsapp/tel so we can talk.<br />\r\n<br />\r\nThe flat is well heated incase tou like it warm.","expired":0,"id":"66841","location":"Augustins/Plainpalais","mark":"<a href=\"javascript:mark(66841)\" id=\"classified_mark_66841\">Mark / Save Ad</a>","mem_first_name":"okSunshine","mem_id":"13475","mem_link":"javascript:open_login_popup();","mem_name":"okSunshine","mem_name_js":"okSunshine","mem_photo":"http://cdn.glocals.com/sites/glocals/_media/members/13/13475_mem_photo_5a6b4.jpg","network":"Geneva","photo1":"/_media/board_flat1/66/66841_bl_photo_74e42.jpg","photo2":"/_media/board_flat1/66/66841_bl_photo2_a8455.jpg","photo3":"/_media/board_flat1/66/66841_bl_photo3_be4d7.jpg","photo4":0,"photos":1,"price":"0","rooms":"2","status":null,"title":"Place Augustins 2p, great access.. Tram18/12 CERN, WHO, WIPO february. Or part","title_js":"Place Augustins 2p, great access.. Tram18/12 CERN, WHO, WIPO february. Or part","type":"Sublets / Temporary","views":"18"},{"available":"Flexible","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Bedroom,separate kitchen, living room and renovated bathroom with all bills included (internet, electricity, water, heating) available in quiet neighbourhood in Eaux Vives as from beginning of February for 2,600 monthly. Close to the WEF and walking distance to Parc de la Grange, restaurants and supermarkets in Eaux-Vives. Flat has all household appliances and a washing machine. High ceilings, luminous and spacious. <br />\r\n2 minutes to buses 9,1,33,A (bus stop: Cuisine and tram stop Grange Canal).","expired":0,"id":"66696","location":"Eaux-Vives","mark":"<a href=\"javascript:mark(66696)\" id=\"classified_mark_66696\">Mark / Save Ad</a>","mem_first_name":"Jade","mem_id":"50037","mem_link":"javascript:open_login_popup();","mem_name":"Jade C","mem_name_js":"Jade C","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/66/66696_bl_photo_39a55.jpg","photo2":"/_media/board_flat1/66/66696_bl_photo2_e8213.jpg","photo3":"/_media/board_flat1/66/66696_bl_photo3_1d4d3.jpg","photo4":"/_media/board_flat1/66/66696_bl_photo4_6ad2a.jpg","photos":1,"price":"2600","rooms":"3","status":"<img src=\"http://cdn.glocals.com/sites/glocals/_static_media/public/modules/board/reply.png\" alt=\"Replied\" ext:qtip=\"You Replied to this Post\" />","title":"Stunningly furnished quiet flat in Eaux-Vives as from Feb","title_js":"Stunningly furnished quiet flat in Eaux-Vives as from Feb","type":"Sublets / Temporary","views":"18"},{"available":"Flexible","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Very cozy and bright studio located in the heart of the old Carouge within a nice and quiet building. <br />\r\n<br />\r\nLively neighborhood with shops and cafes nearby. Close to all amenities and 200mt from public transport (Tram 12, 18, bus 11, 21 - Stop March\u00e9), Migros, restaurants. <br />\r\n<br />\r\nThis nice 35sqm studio offers a living room/bedroom fully furnished with equipped kitchen, large bathroom with bath tub and wooden floor. Wi-Fi and all comforts included.<br />\r\n<br />\r\nTypically looking for a professional, quiet, clean and highly respectful person with references. No parties at home.<br />\r\nIdeal for people looking for a calm, sunny and nice studio during weekdays.<br />\r\n<br />\r\nMonthly Rent CHF 1.480.<br />\r\n High Value for Money.<br />\r\nPrice includes:<br />\r\n- Water, electric, heating, WiFi and maintenance charges<br />\r\n- Linen and towels are provided<br />\r\nPreference: weekdays <br />\r\n<br />\r\nIMPORTANT<br />\r\nFor contact, further details and pictures or if you would like to arrange for a viewing, please include some information about yourself and your move in date in your reply.","expired":0,"id":"66885","location":"Carouge","mark":"<a href=\"javascript:mark(66885)\" id=\"classified_mark_66885\">Mark / Save Ad</a>","mem_first_name":"Caterina","mem_id":"115798","mem_link":"javascript:open_login_popup();","mem_name":"Caterina T","mem_name_js":"Caterina T","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/66/66885_bl_photo_334bf.jpg","photo2":"/_media/board_flat1/66/66885_bl_photo2_2e94c.jpg","photo3":"/_media/board_flat1/66/66885_bl_photo3_fc65b.jpg","photo4":"/_media/board_flat1/66/66885_bl_photo4_f4f25.jpg","photos":1,"price":"1480","rooms":"1","status":null,"title":"BRIGHT AND FURNISHED STUDIO - Carouge- available 01.05.16","title_js":"BRIGHT AND FURNISHED STUDIO - Carouge- available 01.05.16","type":"Sublets / Temporary","views":"17"},{"available":"Mar 1, 16","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"A beautiful fully furnished 4 bedroom apartment in the heart of Geneva, right across tram 15 and overlooking Plainpalais. It is completely central near all the bars and restaurants but at the same time with double glazed windows you do not hear any noise.<br />\r\nThe apartment is modern and brand new and the tenants are first to occupy it. It is well lit and very spacious, around 150m2. It has 1 bathroom, 1 shower and toilet and 1 powder room (just toilet), 4 bedrooms, a big size kitchen and a very open lounge and a dining area.<br />\r\nThere are 3 flat mates (4 in total including you), who are all working professionals in their late 20's/early 30's and are looking for a profile of someone similar, social and international. We are looking for someone to replace one of the current tenants in the lease, the setup is for 3 tenants to hold the lease and one person subletting.<br />\r\nThe lease agreement will offer you the fully furnished apartment, fully equipped with all appliances, etc with all charges included at a monthly rent around 1200 CHF (cleaning and bills) + some yearly fees on top for things like yearly rental deposit, and maintenance.","expired":0,"id":"67118","location":"Plainpalais","mark":"<a href=\"javascript:mark(67118)\" id=\"classified_mark_67118\">Mark / Save Ad</a>","mem_first_name":"Ali","mem_id":"63592","mem_link":"javascript:open_login_popup();","mem_name":"Ali Malik","mem_name_js":"Ali Malik","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/67/67118_bl_photo_c53bb.jpg","photo2":"/_media/board_flat1/67/67118_bl_photo2_a97ca.jpg","photo3":"/_media/board_flat1/67/67118_bl_photo3_bdb2a.jpg","photo4":"/_media/board_flat1/67/67118_bl_photo4_7477d.jpg","photos":1,"price":"1200","rooms":"4","status":"<img src=\"http://cdn.glocals.com/sites/glocals/_static_media/public/modules/board/reply.png\" alt=\"Replied\" ext:qtip=\"You Replied to this Post\" />","title":"Looking for a Lease Share!","title_js":"Looking for a Lease Share!","type":"Apt shares / Room mates","views":"16"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"NGO in UN area is looking for another NGO to co-share a splendid office space in the heart of UN area. <br />\r\n<br />\r\n- Public transportation and parking available <br />\r\n- Price: 280 chf / square meter / year <br />\r\n- Available space: to be discussed. Up to 150 m2 is available depending on number of needed rooms <br />\r\n- Conference room, showers, kitchen <br />\r\n- Nearby restaurants, post office & conference center<br />\r\n<br />\r\nExceptional space in central Geneva location !","expired":0,"id":"67194","location":"","mark":"<a href=\"javascript:mark(67194)\" id=\"classified_mark_67194\">Mark / Save Ad</a>","mem_first_name":"Valerie","mem_id":"33969","mem_link":"javascript:open_login_popup();","mem_name":"Valerie C","mem_name_js":"Valerie C","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"0","rooms":"0","status":null,"title":"Office space available in UN area","title_js":"Office space available in UN area","type":"Office / Commercial","views":"2"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"022 566 50 58","currency":"CHF","date":"Jan 25, 16","description":"Unique commercial 44sqm arcade to rent in Terrassiere ! <br />\r\nTwo levels of 20sqm in the city center. <br />\r\nImmediate availability ! <br />\r\nSee pictures attached !","expired":0,"id":"65050","location":"Terrassiere","mark":"<a href=\"javascript:mark(65050)\" id=\"classified_mark_65050\">Mark / Save Ad</a>","mem_first_name":"Thibaut ","mem_id":"59682","mem_link":"javascript:open_login_popup();","mem_name":"Thibaut Mirieu de Labarre ","mem_name_js":"Thibaut Mirieu de Labarre ","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/65/65050_bl_photo_e877f.jpg","photo2":"/_media/board_flat1/65/65050_bl_photo2_ab7f9.jpg","photo3":"/_media/board_flat1/65/65050_bl_photo3_32d1d.jpg","photo4":"/_media/board_flat1/65/65050_bl_photo4_4f978.jpg","photos":1,"price":"1805","rooms":"2","status":null,"title":"Arcade to rent in Terrassiere !","title_js":"Arcade to rent in Terrassiere !","type":"Office / Commercial","views":"11"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"+41 22 566 50 58","currency":"CHF","date":"Jan 25, 16","description":"Are you an Entrepreneur ? <br />\r\nAre you concealing personal and private life ? <br />\r\nDo you want to have entreprenership expertise in social or fundraising in house ? <br />\r\nJoin Soft - Space, th social coworking space in Eaux-Vives !!!<br />\r\n<br />\r\nhttp://www.yoursoftweb.org/softspace/<br />\r\naccueil@yoursoftweb.org<br />\r\n2 rue des Cordiers<br />\r\n1207 Gen\u00e8ve","expired":0,"id":"66583","location":"Eaux-Vives","mark":"<a href=\"javascript:mark(66583)\" id=\"classified_mark_66583\">Mark / Save Ad</a>","mem_first_name":"Thibaut ","mem_id":"59682","mem_link":"javascript:open_login_popup();","mem_name":"Thibaut Mirieu de Labarre ","mem_name_js":"Thibaut Mirieu de Labarre ","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"40","rooms":"10","status":null,"title":"Coworking Space in Eaux-Vives","title_js":"Coworking Space in Eaux-Vives","type":"Office / Commercial","views":"4"},{"available":"Immediate","city":"Geneva","column_headings":0,"contact":"","currency":"CHF","date":"Jan 25, 16","description":"Room in nicely furnished apt. Conveniently located 15mn walk from the UN, 7mn from Train Station, across the road from Tram Station, Migros, COOP and UBS Servette. CHF 1400 per month (incl internet, electricity, heating...). Available immediately for 3 to 6 months. Preferably professionals. Main tenant very often on mission out of Geneva. Current housemates are male and female. Visits possible evenings.","expired":0,"id":"56733","location":"Servette","mark":"<a href=\"javascript:mark(56733)\" id=\"classified_mark_56733\">Unmark Ad</a>","mem_first_name":"Romanticus","mem_id":"23627","mem_link":"javascript:open_login_popup();","mem_name":"Romanticus","mem_name_js":"Romanticus","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":"/_media/board_flat1/56/56733_bl_photo_e8e69.jpg","photo2":"/_media/board_flat1/56/56733_bl_photo2_691c8.jpg","photo3":"/_media/board_flat1/56/56733_bl_photo3_59137.jpg","photo4":"/_media/board_flat1/56/56733_bl_photo4_77510.jpg","photos":1,"price":"1400","rooms":"1","status":"<img src=\"http://cdn.glocals.com/sites/glocals/_static_media/public/modules/board/pin.png\" alt=\"Marked\" ext:qtip=\"You Marked this Post\" />","title":"Room in nicely furnished apartment walking distance to UN","title_js":"Room in nicely furnished apartment walking distance to UN","type":"Apt shares / Room mates","views":"9"},{"available":"Flexible","city":"Annemassee","column_headings":0,"contact":"0775036634","currency":"CHF","date":"Jan 25, 16","description":"Apartment for sale at the heart of at of Annemasse Chabais <br />\r\nParc area.near Annemasse Gare. Transport bus 61 direct to Geneva Cornavin<br />\r\nDescription:<br />\r\n<br />\r\nYear of Construction : 2009<br />\r\n70 Sqm<br />\r\nGround floor with terrace and garden<br />\r\n2 bedrooms<br />\r\nEquipped Kitchen<br />\r\n1 Bathroom.<br />\r\n1 WC<br />\r\nI underground closed garage,<br />\r\nLarge fitted cupboards in both rooms and hallway.<br />\r\n<br />\r\nAvailable for sale directly from owner.<br />\r\nReal Estate Agents please do not contact.","expired":0,"id":"59649","location":"Annemasse Park Chablais Area","mark":"<a href=\"javascript:mark(59649)\" id=\"classified_mark_59649\">Mark / Save Ad</a>","mem_first_name":"Deena","mem_id":"66337","mem_link":"javascript:open_login_popup();","mem_name":"Deena D","mem_name_js":"Deena D","mem_photo":"http://cdn.glocals.com/sites/glocals/_static_media/public/members/empty54.gif","network":"Geneva","photo1":0,"photo2":0,"photo3":0,"photo4":0,"photos":0,"price":"0","rooms":"2","status":null,"title":"Annemasse 2 bedroom apartment for sale directly from owner. 260,000 Euros","title_js":"Annemasse 2 bedroom apartment for sale directly from owner. 260,000 Euros","type":"Real estate for sale","views":"2"},{"available":"Immediate","city":"Florence, Italy","column_headings":0,"contact":"0766794965.","currency":"CHF","date":"Jan 25, 16","description":"Very nice and large apartment in a perfect location, close to the magnificent Florence's Cathedral. <br />\r\nIt is ideal for a group of friends or a big family and it is the perfect starting point to visit Florence. <br />\r\n<br />\r\nSituated in one of the most beautiful ancient Florentine streets, this apartment has been newly renovated and tastefully furnished. <br />\r\n<br />\r\nEverything is close: few meters and you get to the Bargello Museum, the Duomo, Santa Croce Church, the Uffizi Gallery and Ponte Vecchio.<br />\r\n <br />\r\nAll kind of shops are within walking distance from the apartment, including the open air market of Sant' Ambrogio, good restaurants, bars and wine bars.<br />\r\n<br />\r\nAccommodation ( second floor with lift)<br />\r\nentrance, living room with sofa and dining area, 1 double bedroom, one single bedroom, one double bedroom with french bed (dim: 140x190cm), one double bedroom, two bathrooms with shower, fully equipped kitchen.<br />\r\n<br />\r\nFacilities: <br />\r\nWIFI, washer, dishwasher, TV, toaster, american coffee machine, iron and ironing board, electric oven, fridge, stove, air conditioning in the living and in one double bedroom ( the pink one), lift.<br />\r\n<br />\r\nFor more pictures (as cannot attach here more than 4 pictures) check out the agent website http://www.residenzalafonte.com/daklea_apartment_en.html?<br />\r\n<br />\r\nPrice for half the apartment can sleep 4 ppl (living room, bed room, kitchen bathroom) - 100 euros a night<br />\r\nPrice for the whole apartment can sleep 8 ppl - 200 euros","expired":0,"id":"58847","location":"Florence","mark":"<a href=\"javascript:mark(58847)\" id=\"classified_mark_58847\">Mark / Save Ad</a>","mem_first_name":"adas","mem_id":"37980","mem_link":"javascript:open_login_popup();","mem_name":"adas","mem_name_js":"adas","mem_photo":"http://cdn.glocals.com/sites/glocals/_media/members/37/37980_mem_photo_4c607.jpg","network":"Geneva","photo1":"/_media/board_flat1/58/58847_bl_photo_8c1af.jpg","photo2":"/_media/board_flat1/58/58847_bl_photo2_7a113.jpg","photo3":"/_media/board_flat1/58/58847_bl_photo3_2cfa7.jpg","photo4":"/_media/board_flat1/58/58847_bl_photo4_90bf6.jpg","photos":1,"price":"0","rooms":"4","status":null,"title":"Luxury apartment with 4 bedrooms in the center of Florence for rent for holiday","title_js":"Luxury apartment with 4 bedrooms in the center of Florence for rent for holiday","type":"Apts / Housing for rent","views":"7"}],"totalCount":520} \ No newline at end of file