-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'SQL_ASCII'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: auth_group; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_group ( id integer NOT NULL, name character varying(80) NOT NULL ); ALTER TABLE auth_group OWNER TO app; -- -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_group_id_seq OWNER TO app; -- -- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_group_id_seq OWNED BY auth_group.id; -- -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_group_permissions ( id integer NOT NULL, group_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE auth_group_permissions OWNER TO app; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_group_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_group_permissions_id_seq OWNER TO app; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_group_permissions_id_seq OWNED BY auth_group_permissions.id; -- -- Name: auth_permission; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_permission ( id integer NOT NULL, name character varying(50) NOT NULL, content_type_id integer NOT NULL, codename character varying(100) NOT NULL ); ALTER TABLE auth_permission OWNER TO app; -- -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_permission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_permission_id_seq OWNER TO app; -- -- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_permission_id_seq OWNED BY auth_permission.id; -- -- Name: auth_user; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_user ( id integer NOT NULL, password character varying(128) NOT NULL, last_login timestamp with time zone NOT NULL, is_superuser boolean NOT NULL, username character varying(30) NOT NULL, first_name character varying(30) NOT NULL, last_name character varying(30) NOT NULL, email character varying(75) NOT NULL, is_staff boolean NOT NULL, is_active boolean NOT NULL, date_joined timestamp with time zone NOT NULL ); ALTER TABLE auth_user OWNER TO app; -- -- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_user_groups ( id integer NOT NULL, user_id integer NOT NULL, group_id integer NOT NULL ); ALTER TABLE auth_user_groups OWNER TO app; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_user_groups_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_user_groups_id_seq OWNER TO app; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_user_groups_id_seq OWNED BY auth_user_groups.id; -- -- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_user_id_seq OWNER TO app; -- -- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_user_id_seq OWNED BY auth_user.id; -- -- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE auth_user_user_permissions ( id integer NOT NULL, user_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE auth_user_user_permissions OWNER TO app; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE auth_user_user_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE auth_user_user_permissions_id_seq OWNER TO app; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE auth_user_user_permissions_id_seq OWNED BY auth_user_user_permissions.id; -- -- Name: cms_aliaspluginmodel; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_aliaspluginmodel ( cmsplugin_ptr_id integer NOT NULL, plugin_id integer, alias_placeholder_id integer ); ALTER TABLE cms_aliaspluginmodel OWNER TO app; -- -- Name: cms_cmsplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_cmsplugin ( id integer NOT NULL, "position" smallint, language character varying(15) NOT NULL, plugin_type character varying(50) NOT NULL, creation_date timestamp with time zone NOT NULL, changed_date timestamp with time zone NOT NULL, parent_id integer, placeholder_id integer, depth integer NOT NULL, numchild integer NOT NULL, path character varying(255) NOT NULL, CONSTRAINT cms_cmsplugin_depth_check CHECK ((depth >= 0)), CONSTRAINT cms_cmsplugin_numchild_check CHECK ((numchild >= 0)), CONSTRAINT cms_cmsplugin_position_check CHECK (("position" >= 0)) ); ALTER TABLE cms_cmsplugin OWNER TO app; -- -- Name: cms_cmsplugin_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_cmsplugin_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_cmsplugin_id_seq OWNER TO app; -- -- Name: cms_cmsplugin_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_cmsplugin_id_seq OWNED BY cms_cmsplugin.id; -- -- Name: cms_globalpagepermission; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_globalpagepermission ( id integer NOT NULL, can_change boolean NOT NULL, can_add boolean NOT NULL, can_delete boolean NOT NULL, can_change_advanced_settings boolean NOT NULL, can_publish boolean NOT NULL, can_change_permissions boolean NOT NULL, can_move_page boolean NOT NULL, can_view boolean NOT NULL, can_recover_page boolean NOT NULL, group_id integer, user_id integer ); ALTER TABLE cms_globalpagepermission OWNER TO app; -- -- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_globalpagepermission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_globalpagepermission_id_seq OWNER TO app; -- -- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_globalpagepermission_id_seq OWNED BY cms_globalpagepermission.id; -- -- Name: cms_globalpagepermission_sites; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_globalpagepermission_sites ( id integer NOT NULL, globalpagepermission_id integer NOT NULL, site_id integer NOT NULL ); ALTER TABLE cms_globalpagepermission_sites OWNER TO app; -- -- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_globalpagepermission_sites_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_globalpagepermission_sites_id_seq OWNER TO app; -- -- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_globalpagepermission_sites_id_seq OWNED BY cms_globalpagepermission_sites.id; -- -- Name: cms_page; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_page ( id integer NOT NULL, created_by character varying(255) NOT NULL, changed_by character varying(255) NOT NULL, creation_date timestamp with time zone NOT NULL, changed_date timestamp with time zone NOT NULL, publication_date timestamp with time zone, publication_end_date timestamp with time zone, in_navigation boolean NOT NULL, soft_root boolean NOT NULL, reverse_id character varying(40), navigation_extenders character varying(80), template character varying(100) NOT NULL, login_required boolean NOT NULL, limit_visibility_in_menu smallint, is_home boolean NOT NULL, application_urls character varying(200), application_namespace character varying(200), publisher_is_draft boolean NOT NULL, languages character varying(255), revision_id integer NOT NULL, xframe_options integer NOT NULL, parent_id integer, publisher_public_id integer, site_id integer NOT NULL, depth integer NOT NULL, numchild integer NOT NULL, path character varying(255) NOT NULL, CONSTRAINT cms_page_depth_check CHECK ((depth >= 0)), CONSTRAINT cms_page_numchild_check CHECK ((numchild >= 0)), CONSTRAINT cms_page_revision_id_check CHECK ((revision_id >= 0)) ); ALTER TABLE cms_page OWNER TO app; -- -- Name: cms_page_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_page_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_page_id_seq OWNER TO app; -- -- Name: cms_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_page_id_seq OWNED BY cms_page.id; -- -- Name: cms_page_placeholders; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_page_placeholders ( id integer NOT NULL, page_id integer NOT NULL, placeholder_id integer NOT NULL ); ALTER TABLE cms_page_placeholders OWNER TO app; -- -- Name: cms_page_placeholders_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_page_placeholders_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_page_placeholders_id_seq OWNER TO app; -- -- Name: cms_page_placeholders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_page_placeholders_id_seq OWNED BY cms_page_placeholders.id; -- -- Name: cms_pagepermission; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_pagepermission ( id integer NOT NULL, can_change boolean NOT NULL, can_add boolean NOT NULL, can_delete boolean NOT NULL, can_change_advanced_settings boolean NOT NULL, can_publish boolean NOT NULL, can_change_permissions boolean NOT NULL, can_move_page boolean NOT NULL, can_view boolean NOT NULL, grant_on integer NOT NULL, group_id integer, page_id integer, user_id integer ); ALTER TABLE cms_pagepermission OWNER TO app; -- -- Name: cms_pagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_pagepermission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_pagepermission_id_seq OWNER TO app; -- -- Name: cms_pagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_pagepermission_id_seq OWNED BY cms_pagepermission.id; -- -- Name: cms_pageuser; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_pageuser ( user_ptr_id integer NOT NULL, created_by_id integer NOT NULL ); ALTER TABLE cms_pageuser OWNER TO app; -- -- Name: cms_pageusergroup; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_pageusergroup ( group_ptr_id integer NOT NULL, created_by_id integer NOT NULL ); ALTER TABLE cms_pageusergroup OWNER TO app; -- -- Name: cms_placeholder; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_placeholder ( id integer NOT NULL, slot character varying(255) NOT NULL, default_width smallint, CONSTRAINT cms_placeholder_default_width_check CHECK ((default_width >= 0)) ); ALTER TABLE cms_placeholder OWNER TO app; -- -- Name: cms_placeholder_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_placeholder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_placeholder_id_seq OWNER TO app; -- -- Name: cms_placeholder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_placeholder_id_seq OWNED BY cms_placeholder.id; -- -- Name: cms_placeholderreference; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_placeholderreference ( cmsplugin_ptr_id integer NOT NULL, name character varying(255) NOT NULL, placeholder_ref_id integer ); ALTER TABLE cms_placeholderreference OWNER TO app; -- -- Name: cms_staticplaceholder; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_staticplaceholder ( id integer NOT NULL, name character varying(255) NOT NULL, code character varying(255) NOT NULL, dirty boolean NOT NULL, creation_method character varying(20) NOT NULL, draft_id integer, public_id integer, site_id integer ); ALTER TABLE cms_staticplaceholder OWNER TO app; -- -- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_staticplaceholder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_staticplaceholder_id_seq OWNER TO app; -- -- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_staticplaceholder_id_seq OWNED BY cms_staticplaceholder.id; -- -- Name: cms_title; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_title ( id integer NOT NULL, language character varying(15) NOT NULL, title character varying(255) NOT NULL, page_title character varying(255), menu_title character varying(255), meta_description text, slug character varying(255) NOT NULL, path character varying(255) NOT NULL, has_url_overwrite boolean NOT NULL, redirect character varying(2048), creation_date timestamp with time zone NOT NULL, published boolean NOT NULL, publisher_is_draft boolean NOT NULL, publisher_state smallint NOT NULL, page_id integer NOT NULL, publisher_public_id integer ); ALTER TABLE cms_title OWNER TO app; -- -- Name: cms_title_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_title_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_title_id_seq OWNER TO app; -- -- Name: cms_title_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_title_id_seq OWNED BY cms_title.id; -- -- Name: cms_usersettings; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cms_usersettings ( id integer NOT NULL, language character varying(10) NOT NULL, clipboard_id integer, user_id integer NOT NULL ); ALTER TABLE cms_usersettings OWNER TO app; -- -- Name: cms_usersettings_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cms_usersettings_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cms_usersettings_id_seq OWNER TO app; -- -- Name: cms_usersettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cms_usersettings_id_seq OWNED BY cms_usersettings.id; -- -- Name: cmsplugin_filer_file_filerfile; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_file_filerfile ( cmsplugin_ptr_id integer NOT NULL, title character varying(255), target_blank boolean NOT NULL, style character varying(255) NOT NULL, file_id integer NOT NULL ); ALTER TABLE cmsplugin_filer_file_filerfile OWNER TO app; -- -- Name: cmsplugin_filer_folder_filerfolder; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_folder_filerfolder ( cmsplugin_ptr_id integer NOT NULL, title character varying(255), style character varying(50) NOT NULL, folder_id integer NOT NULL ); ALTER TABLE cmsplugin_filer_folder_filerfolder OWNER TO app; -- -- Name: cmsplugin_filer_image_filerimage; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_image_filerimage ( cmsplugin_ptr_id integer NOT NULL, style character varying(50) NOT NULL, caption_text character varying(255), image_url character varying(200), alt_text character varying(255), use_original_image boolean NOT NULL, use_autoscale boolean NOT NULL, width integer, height integer, crop boolean NOT NULL, upscale boolean NOT NULL, alignment character varying(10), free_link character varying(255), original_link boolean NOT NULL, description text, target_blank boolean NOT NULL, file_link_id integer, image_id integer, page_link_id integer, thumbnail_option_id integer, CONSTRAINT cmsplugin_filer_image_filerimage_height_check CHECK ((height >= 0)), CONSTRAINT cmsplugin_filer_image_filerimage_width_check CHECK ((width >= 0)) ); ALTER TABLE cmsplugin_filer_image_filerimage OWNER TO app; -- -- Name: cmsplugin_filer_image_thumbnailoption; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_image_thumbnailoption ( id integer NOT NULL, name character varying(100) NOT NULL, width integer NOT NULL, height integer NOT NULL, crop boolean NOT NULL, upscale boolean NOT NULL ); ALTER TABLE cmsplugin_filer_image_thumbnailoption OWNER TO app; -- -- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE cmsplugin_filer_image_thumbnailoption_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE cmsplugin_filer_image_thumbnailoption_id_seq OWNER TO app; -- -- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE cmsplugin_filer_image_thumbnailoption_id_seq OWNED BY cmsplugin_filer_image_thumbnailoption.id; -- -- Name: cmsplugin_filer_link_filerlinkplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_link_filerlinkplugin ( cmsplugin_ptr_id integer NOT NULL, name character varying(255) NOT NULL, url character varying(255), mailto character varying(75), link_style character varying(255) NOT NULL, new_window boolean NOT NULL, file_id integer, page_link_id integer ); ALTER TABLE cmsplugin_filer_link_filerlinkplugin OWNER TO app; -- -- Name: cmsplugin_filer_teaser_filerteaser; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_teaser_filerteaser ( cmsplugin_ptr_id integer NOT NULL, title character varying(255) NOT NULL, image_url character varying(200), style character varying(255) NOT NULL, use_autoscale boolean NOT NULL, width integer, height integer, free_link character varying(255), description text, target_blank boolean NOT NULL, image_id integer, page_link_id integer, CONSTRAINT cmsplugin_filer_teaser_filerteaser_height_check CHECK ((height >= 0)), CONSTRAINT cmsplugin_filer_teaser_filerteaser_width_check CHECK ((width >= 0)) ); ALTER TABLE cmsplugin_filer_teaser_filerteaser OWNER TO app; -- -- Name: cmsplugin_filer_video_filervideo; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE cmsplugin_filer_video_filervideo ( cmsplugin_ptr_id integer NOT NULL, movie_url character varying(255), width smallint NOT NULL, height smallint NOT NULL, auto_play boolean NOT NULL, auto_hide boolean NOT NULL, fullscreen boolean NOT NULL, loop boolean NOT NULL, bgcolor character varying(6) NOT NULL, textcolor character varying(6) NOT NULL, seekbarcolor character varying(6) NOT NULL, seekbarbgcolor character varying(6) NOT NULL, loadingbarcolor character varying(6) NOT NULL, buttonoutcolor character varying(6) NOT NULL, buttonovercolor character varying(6) NOT NULL, buttonhighlightcolor character varying(6) NOT NULL, image_id integer, movie_id integer, CONSTRAINT cmsplugin_filer_video_filervideo_height_check CHECK ((height >= 0)), CONSTRAINT cmsplugin_filer_video_filervideo_width_check CHECK ((width >= 0)) ); ALTER TABLE cmsplugin_filer_video_filervideo OWNER TO app; -- -- Name: digitalglarus_message; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE digitalglarus_message ( id integer NOT NULL, name character varying(200) NOT NULL, email character varying(75) NOT NULL, phone_number character varying(200) NOT NULL, message text NOT NULL, received_date timestamp with time zone NOT NULL ); ALTER TABLE digitalglarus_message OWNER TO app; -- -- Name: digitalglarus_message_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE digitalglarus_message_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE digitalglarus_message_id_seq OWNER TO app; -- -- Name: digitalglarus_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE digitalglarus_message_id_seq OWNED BY digitalglarus_message.id; -- -- Name: django_admin_log; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_admin_log ( id integer NOT NULL, action_time timestamp with time zone NOT NULL, object_id text, object_repr character varying(200) NOT NULL, action_flag smallint NOT NULL, change_message text NOT NULL, content_type_id integer, user_id integer NOT NULL, CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) ); ALTER TABLE django_admin_log OWNER TO app; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE django_admin_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE django_admin_log_id_seq OWNER TO app; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE django_admin_log_id_seq OWNED BY django_admin_log.id; -- -- Name: django_content_type; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_content_type ( id integer NOT NULL, name character varying(100) NOT NULL, app_label character varying(100) NOT NULL, model character varying(100) NOT NULL ); ALTER TABLE django_content_type OWNER TO app; -- -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE django_content_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE django_content_type_id_seq OWNER TO app; -- -- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE django_content_type_id_seq OWNED BY django_content_type.id; -- -- Name: django_migrations; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_migrations ( id integer NOT NULL, app character varying(255) NOT NULL, name character varying(255) NOT NULL, applied timestamp with time zone NOT NULL ); ALTER TABLE django_migrations OWNER TO app; -- -- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE django_migrations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE django_migrations_id_seq OWNER TO app; -- -- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE django_migrations_id_seq OWNED BY django_migrations.id; -- -- Name: django_select2_keymap; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_select2_keymap ( id integer NOT NULL, key character varying(40) NOT NULL, value character varying(100) NOT NULL, accessed_on timestamp with time zone NOT NULL ); ALTER TABLE django_select2_keymap OWNER TO app; -- -- Name: django_select2_keymap_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE django_select2_keymap_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE django_select2_keymap_id_seq OWNER TO app; -- -- Name: django_select2_keymap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE django_select2_keymap_id_seq OWNED BY django_select2_keymap.id; -- -- Name: django_session; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_session ( session_key character varying(40) NOT NULL, session_data text NOT NULL, expire_date timestamp with time zone NOT NULL ); ALTER TABLE django_session OWNER TO app; -- -- Name: django_site; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE django_site ( id integer NOT NULL, domain character varying(100) NOT NULL, name character varying(50) NOT NULL ); ALTER TABLE django_site OWNER TO app; -- -- Name: django_site_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE django_site_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE django_site_id_seq OWNER TO app; -- -- Name: django_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE django_site_id_seq OWNED BY django_site.id; -- -- Name: djangocms_blog_authorentriesplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_authorentriesplugin ( cmsplugin_ptr_id integer NOT NULL, latest_posts integer NOT NULL ); ALTER TABLE djangocms_blog_authorentriesplugin OWNER TO app; -- -- Name: djangocms_blog_authorentriesplugin_authors; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_authorentriesplugin_authors ( id integer NOT NULL, authorentriesplugin_id integer NOT NULL, user_id integer NOT NULL ); ALTER TABLE djangocms_blog_authorentriesplugin_authors OWNER TO app; -- -- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_authorentriesplugin_authors_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_authorentriesplugin_authors_id_seq OWNER TO app; -- -- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_authorentriesplugin_authors_id_seq OWNED BY djangocms_blog_authorentriesplugin_authors.id; -- -- Name: djangocms_blog_blogcategory; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_blogcategory ( id integer NOT NULL, date_created timestamp with time zone NOT NULL, date_modified timestamp with time zone NOT NULL, parent_id integer ); ALTER TABLE djangocms_blog_blogcategory OWNER TO app; -- -- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_blogcategory_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_blogcategory_id_seq OWNER TO app; -- -- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_blogcategory_id_seq OWNED BY djangocms_blog_blogcategory.id; -- -- Name: djangocms_blog_blogcategory_translation; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_blogcategory_translation ( id integer NOT NULL, language_code character varying(15) NOT NULL, name character varying(255) NOT NULL, slug character varying(50) NOT NULL, master_id integer ); ALTER TABLE djangocms_blog_blogcategory_translation OWNER TO app; -- -- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_blogcategory_translation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_blogcategory_translation_id_seq OWNER TO app; -- -- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_blogcategory_translation_id_seq OWNED BY djangocms_blog_blogcategory_translation.id; -- -- Name: djangocms_blog_latestpostsplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_latestpostsplugin ( cmsplugin_ptr_id integer NOT NULL, latest_posts integer NOT NULL ); ALTER TABLE djangocms_blog_latestpostsplugin OWNER TO app; -- -- Name: djangocms_blog_latestpostsplugin_categories; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_latestpostsplugin_categories ( id integer NOT NULL, latestpostsplugin_id integer NOT NULL, blogcategory_id integer NOT NULL ); ALTER TABLE djangocms_blog_latestpostsplugin_categories OWNER TO app; -- -- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_latestpostsplugin_categories_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_latestpostsplugin_categories_id_seq OWNER TO app; -- -- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_latestpostsplugin_categories_id_seq OWNED BY djangocms_blog_latestpostsplugin_categories.id; -- -- Name: djangocms_blog_latestpostsplugin_tags; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_latestpostsplugin_tags ( id integer NOT NULL, latestpostsplugin_id integer NOT NULL, tag_id integer NOT NULL ); ALTER TABLE djangocms_blog_latestpostsplugin_tags OWNER TO app; -- -- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_latestpostsplugin_tags_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_latestpostsplugin_tags_id_seq OWNER TO app; -- -- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_latestpostsplugin_tags_id_seq OWNED BY djangocms_blog_latestpostsplugin_tags.id; -- -- Name: djangocms_blog_post; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_post ( id integer NOT NULL, date_created timestamp with time zone NOT NULL, date_modified timestamp with time zone NOT NULL, date_published timestamp with time zone NOT NULL, date_published_end timestamp with time zone, publish boolean NOT NULL, enable_comments boolean NOT NULL, author_id integer, content_id integer, main_image_id integer, main_image_full_id integer, main_image_thumbnail_id integer ); ALTER TABLE djangocms_blog_post OWNER TO app; -- -- Name: djangocms_blog_post_categories; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_post_categories ( id integer NOT NULL, post_id integer NOT NULL, blogcategory_id integer NOT NULL ); ALTER TABLE djangocms_blog_post_categories OWNER TO app; -- -- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_post_categories_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_post_categories_id_seq OWNER TO app; -- -- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_post_categories_id_seq OWNED BY djangocms_blog_post_categories.id; -- -- Name: djangocms_blog_post_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_post_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_post_id_seq OWNER TO app; -- -- Name: djangocms_blog_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_post_id_seq OWNED BY djangocms_blog_post.id; -- -- Name: djangocms_blog_post_sites; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_post_sites ( id integer NOT NULL, post_id integer NOT NULL, site_id integer NOT NULL ); ALTER TABLE djangocms_blog_post_sites OWNER TO app; -- -- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_post_sites_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_post_sites_id_seq OWNER TO app; -- -- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_post_sites_id_seq OWNED BY djangocms_blog_post_sites.id; -- -- Name: djangocms_blog_post_translation; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_blog_post_translation ( id integer NOT NULL, language_code character varying(15) NOT NULL, title character varying(255) NOT NULL, slug character varying(50) NOT NULL, abstract text NOT NULL, meta_description text NOT NULL, meta_keywords text NOT NULL, meta_title character varying(255) NOT NULL, post_text text NOT NULL, master_id integer ); ALTER TABLE djangocms_blog_post_translation OWNER TO app; -- -- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_blog_post_translation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_blog_post_translation_id_seq OWNER TO app; -- -- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_blog_post_translation_id_seq OWNED BY djangocms_blog_post_translation.id; -- -- Name: djangocms_flash_flash; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_flash_flash ( cmsplugin_ptr_id integer NOT NULL, file character varying(100) NOT NULL, width character varying(6) NOT NULL, height character varying(6) NOT NULL ); ALTER TABLE djangocms_flash_flash OWNER TO app; -- -- Name: djangocms_googlemap_googlemap; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_googlemap_googlemap ( cmsplugin_ptr_id integer NOT NULL, title character varying(100), address character varying(150) NOT NULL, zipcode character varying(30) NOT NULL, city character varying(100) NOT NULL, content character varying(255) NOT NULL, zoom smallint NOT NULL, lat numeric(10,6), lng numeric(10,6), route_planer_title character varying(150), route_planer boolean NOT NULL, width character varying(6) NOT NULL, height character varying(6) NOT NULL, info_window boolean NOT NULL, scrollwheel boolean NOT NULL, double_click_zoom boolean NOT NULL, draggable boolean NOT NULL, keyboard_shortcuts boolean NOT NULL, pan_control boolean NOT NULL, zoom_control boolean NOT NULL, street_view_control boolean NOT NULL, CONSTRAINT djangocms_googlemap_googlemap_zoom_check CHECK ((zoom >= 0)) ); ALTER TABLE djangocms_googlemap_googlemap OWNER TO app; -- -- Name: djangocms_inherit_inheritpageplaceholder; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_inherit_inheritpageplaceholder ( cmsplugin_ptr_id integer NOT NULL, from_language character varying(5), from_page_id integer ); ALTER TABLE djangocms_inherit_inheritpageplaceholder OWNER TO app; -- -- Name: djangocms_link_link; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_link_link ( cmsplugin_ptr_id integer NOT NULL, name character varying(256) NOT NULL, url character varying(200), anchor character varying(128) NOT NULL, mailto character varying(75), phone character varying(40), target character varying(100) NOT NULL, page_link_id integer ); ALTER TABLE djangocms_link_link OWNER TO app; -- -- Name: djangocms_page_meta_pagemeta; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_page_meta_pagemeta ( id integer NOT NULL, og_type character varying(255) NOT NULL, og_author_url character varying(255) NOT NULL, og_author_fbid character varying(16) NOT NULL, og_publisher character varying(255) NOT NULL, og_app_id character varying(255) NOT NULL, twitter_author character varying(255) NOT NULL, twitter_site character varying(255) NOT NULL, twitter_type character varying(255) NOT NULL, gplus_author character varying(255) NOT NULL, gplus_type character varying(255) NOT NULL, extended_object_id integer NOT NULL, image_id integer, og_author_id integer, public_extension_id integer ); ALTER TABLE djangocms_page_meta_pagemeta OWNER TO app; -- -- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_page_meta_pagemeta_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_page_meta_pagemeta_id_seq OWNER TO app; -- -- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_page_meta_pagemeta_id_seq OWNED BY djangocms_page_meta_pagemeta.id; -- -- Name: djangocms_page_meta_titlemeta; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_page_meta_titlemeta ( id integer NOT NULL, keywords character varying(400) NOT NULL, description character varying(400) NOT NULL, og_description character varying(400) NOT NULL, twitter_description character varying(140) NOT NULL, gplus_description character varying(400) NOT NULL, extended_object_id integer NOT NULL, image_id integer, public_extension_id integer ); ALTER TABLE djangocms_page_meta_titlemeta OWNER TO app; -- -- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_page_meta_titlemeta_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_page_meta_titlemeta_id_seq OWNER TO app; -- -- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_page_meta_titlemeta_id_seq OWNED BY djangocms_page_meta_titlemeta.id; -- -- Name: djangocms_snippet_snippet; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_snippet_snippet ( id integer NOT NULL, name character varying(255) NOT NULL, html text NOT NULL, template character varying(50) NOT NULL ); ALTER TABLE djangocms_snippet_snippet OWNER TO app; -- -- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE djangocms_snippet_snippet_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE djangocms_snippet_snippet_id_seq OWNER TO app; -- -- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE djangocms_snippet_snippet_id_seq OWNED BY djangocms_snippet_snippet.id; -- -- Name: djangocms_snippet_snippetptr; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_snippet_snippetptr ( cmsplugin_ptr_id integer NOT NULL, snippet_id integer NOT NULL ); ALTER TABLE djangocms_snippet_snippetptr OWNER TO app; -- -- Name: djangocms_teaser_teaser; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_teaser_teaser ( cmsplugin_ptr_id integer NOT NULL, title character varying(255) NOT NULL, image character varying(100), url character varying(255), description text, page_link_id integer ); ALTER TABLE djangocms_teaser_teaser OWNER TO app; -- -- Name: djangocms_text_ckeditor_text; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE djangocms_text_ckeditor_text ( cmsplugin_ptr_id integer NOT NULL, body text NOT NULL ); ALTER TABLE djangocms_text_ckeditor_text OWNER TO app; -- -- Name: easy_thumbnails_source; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE easy_thumbnails_source ( id integer NOT NULL, storage_hash character varying(40) NOT NULL, name character varying(255) NOT NULL, modified timestamp with time zone NOT NULL ); ALTER TABLE easy_thumbnails_source OWNER TO app; -- -- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE easy_thumbnails_source_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE easy_thumbnails_source_id_seq OWNER TO app; -- -- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE easy_thumbnails_source_id_seq OWNED BY easy_thumbnails_source.id; -- -- Name: easy_thumbnails_thumbnail; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE easy_thumbnails_thumbnail ( id integer NOT NULL, storage_hash character varying(40) NOT NULL, name character varying(255) NOT NULL, modified timestamp with time zone NOT NULL, source_id integer NOT NULL ); ALTER TABLE easy_thumbnails_thumbnail OWNER TO app; -- -- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE easy_thumbnails_thumbnail_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE easy_thumbnails_thumbnail_id_seq OWNER TO app; -- -- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE easy_thumbnails_thumbnail_id_seq OWNED BY easy_thumbnails_thumbnail.id; -- -- Name: easy_thumbnails_thumbnaildimensions; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE easy_thumbnails_thumbnaildimensions ( id integer NOT NULL, thumbnail_id integer NOT NULL, width integer, height integer, CONSTRAINT easy_thumbnails_thumbnaildimensions_height_check CHECK ((height >= 0)), CONSTRAINT easy_thumbnails_thumbnaildimensions_width_check CHECK ((width >= 0)) ); ALTER TABLE easy_thumbnails_thumbnaildimensions OWNER TO app; -- -- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE easy_thumbnails_thumbnaildimensions_id_seq OWNER TO app; -- -- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq OWNED BY easy_thumbnails_thumbnaildimensions.id; -- -- Name: filer_clipboard; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_clipboard ( id integer NOT NULL, user_id integer NOT NULL ); ALTER TABLE filer_clipboard OWNER TO app; -- -- Name: filer_clipboard_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE filer_clipboard_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE filer_clipboard_id_seq OWNER TO app; -- -- Name: filer_clipboard_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE filer_clipboard_id_seq OWNED BY filer_clipboard.id; -- -- Name: filer_clipboarditem; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_clipboarditem ( id integer NOT NULL, clipboard_id integer NOT NULL, file_id integer NOT NULL ); ALTER TABLE filer_clipboarditem OWNER TO app; -- -- Name: filer_clipboarditem_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE filer_clipboarditem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE filer_clipboarditem_id_seq OWNER TO app; -- -- Name: filer_clipboarditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE filer_clipboarditem_id_seq OWNED BY filer_clipboarditem.id; -- -- Name: filer_file; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_file ( id integer NOT NULL, file character varying(255), _file_size integer, sha1 character varying(40) NOT NULL, has_all_mandatory_data boolean NOT NULL, original_filename character varying(255), name character varying(255) NOT NULL, description text, uploaded_at timestamp with time zone NOT NULL, modified_at timestamp with time zone NOT NULL, is_public boolean NOT NULL, folder_id integer, owner_id integer, polymorphic_ctype_id integer ); ALTER TABLE filer_file OWNER TO app; -- -- Name: filer_file_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE filer_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE filer_file_id_seq OWNER TO app; -- -- Name: filer_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE filer_file_id_seq OWNED BY filer_file.id; -- -- Name: filer_folder; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_folder ( id integer NOT NULL, name character varying(255) NOT NULL, uploaded_at timestamp with time zone NOT NULL, created_at timestamp with time zone NOT NULL, modified_at timestamp with time zone NOT NULL, lft integer NOT NULL, rght integer NOT NULL, tree_id integer NOT NULL, level integer NOT NULL, owner_id integer, parent_id integer, CONSTRAINT filer_folder_level_check CHECK ((level >= 0)), CONSTRAINT filer_folder_lft_check CHECK ((lft >= 0)), CONSTRAINT filer_folder_rght_check CHECK ((rght >= 0)), CONSTRAINT filer_folder_tree_id_check CHECK ((tree_id >= 0)) ); ALTER TABLE filer_folder OWNER TO app; -- -- Name: filer_folder_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE filer_folder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE filer_folder_id_seq OWNER TO app; -- -- Name: filer_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE filer_folder_id_seq OWNED BY filer_folder.id; -- -- Name: filer_folderpermission; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_folderpermission ( id integer NOT NULL, type smallint NOT NULL, everybody boolean NOT NULL, can_edit smallint, can_read smallint, can_add_children smallint, folder_id integer, group_id integer, user_id integer ); ALTER TABLE filer_folderpermission OWNER TO app; -- -- Name: filer_folderpermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE filer_folderpermission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE filer_folderpermission_id_seq OWNER TO app; -- -- Name: filer_folderpermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE filer_folderpermission_id_seq OWNED BY filer_folderpermission.id; -- -- Name: filer_image; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE filer_image ( file_ptr_id integer NOT NULL, _height integer, _width integer, date_taken timestamp with time zone, default_alt_text character varying(255), default_caption character varying(255), author character varying(255), must_always_publish_author_credit boolean NOT NULL, must_always_publish_copyright boolean NOT NULL, subject_location character varying(64) ); ALTER TABLE filer_image OWNER TO app; -- -- Name: hosting_railsbetauser; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE hosting_railsbetauser ( id integer NOT NULL, email character varying(75) NOT NULL, received_date timestamp with time zone NOT NULL ); ALTER TABLE hosting_railsbetauser OWNER TO app; -- -- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE hosting_railsbetauser_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE hosting_railsbetauser_id_seq OWNER TO app; -- -- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE hosting_railsbetauser_id_seq OWNED BY hosting_railsbetauser.id; -- -- Name: menus_cachekey; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE menus_cachekey ( id integer NOT NULL, language character varying(255) NOT NULL, site integer NOT NULL, key character varying(255) NOT NULL, CONSTRAINT menus_cachekey_site_check CHECK ((site >= 0)) ); ALTER TABLE menus_cachekey OWNER TO app; -- -- Name: menus_cachekey_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE menus_cachekey_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE menus_cachekey_id_seq OWNER TO app; -- -- Name: menus_cachekey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE menus_cachekey_id_seq OWNED BY menus_cachekey.id; -- -- Name: railshosting_railsbetauser; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE railshosting_railsbetauser ( id integer NOT NULL, email character varying(75) NOT NULL, received_date timestamp with time zone NOT NULL ); ALTER TABLE railshosting_railsbetauser OWNER TO app; -- -- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE railshosting_railsbetauser_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE railshosting_railsbetauser_id_seq OWNER TO app; -- -- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE railshosting_railsbetauser_id_seq OWNED BY railshosting_railsbetauser.id; -- -- Name: reversion_revision; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE reversion_revision ( id integer NOT NULL, manager_slug character varying(191) NOT NULL, date_created timestamp with time zone NOT NULL, comment text NOT NULL, user_id integer ); ALTER TABLE reversion_revision OWNER TO app; -- -- Name: reversion_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE reversion_revision_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE reversion_revision_id_seq OWNER TO app; -- -- Name: reversion_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE reversion_revision_id_seq OWNED BY reversion_revision.id; -- -- Name: reversion_version; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE reversion_version ( id integer NOT NULL, object_id text NOT NULL, object_id_int integer, format character varying(255) NOT NULL, serialized_data text NOT NULL, object_repr text NOT NULL, content_type_id integer NOT NULL, revision_id integer NOT NULL ); ALTER TABLE reversion_version OWNER TO app; -- -- Name: reversion_version_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE reversion_version_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE reversion_version_id_seq OWNER TO app; -- -- Name: reversion_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE reversion_version_id_seq OWNED BY reversion_version.id; -- -- Name: taggit_tag; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE taggit_tag ( id integer NOT NULL, name character varying(100) NOT NULL, slug character varying(100) NOT NULL ); ALTER TABLE taggit_tag OWNER TO app; -- -- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE taggit_tag_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE taggit_tag_id_seq OWNER TO app; -- -- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE taggit_tag_id_seq OWNED BY taggit_tag.id; -- -- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE taggit_taggeditem ( id integer NOT NULL, object_id integer NOT NULL, content_type_id integer NOT NULL, tag_id integer NOT NULL ); ALTER TABLE taggit_taggeditem OWNER TO app; -- -- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE taggit_taggeditem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE taggit_taggeditem_id_seq OWNER TO app; -- -- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE taggit_taggeditem_id_seq OWNED BY taggit_taggeditem.id; -- -- Name: ungleich_ungleichpage; Type: TABLE; Schema: public; Owner: app; Tablespace: -- CREATE TABLE ungleich_ungleichpage ( id integer NOT NULL, extended_object_id integer NOT NULL, public_extension_id integer, image_id integer ); ALTER TABLE ungleich_ungleichpage OWNER TO app; -- -- Name: ungleich_ungleichpage_id_seq; Type: SEQUENCE; Schema: public; Owner: app -- CREATE SEQUENCE ungleich_ungleichpage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE ungleich_ungleichpage_id_seq OWNER TO app; -- -- Name: ungleich_ungleichpage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app -- ALTER SEQUENCE ungleich_ungleichpage_id_seq OWNED BY ungleich_ungleichpage.id; -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_group ALTER COLUMN id SET DEFAULT nextval('auth_group_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('auth_group_permissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_permission ALTER COLUMN id SET DEFAULT nextval('auth_permission_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_user ALTER COLUMN id SET DEFAULT nextval('auth_user_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_user_groups ALTER COLUMN id SET DEFAULT nextval('auth_user_groups_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('auth_user_user_permissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_cmsplugin ALTER COLUMN id SET DEFAULT nextval('cms_cmsplugin_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_globalpagepermission ALTER COLUMN id SET DEFAULT nextval('cms_globalpagepermission_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_globalpagepermission_sites ALTER COLUMN id SET DEFAULT nextval('cms_globalpagepermission_sites_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_page ALTER COLUMN id SET DEFAULT nextval('cms_page_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_page_placeholders ALTER COLUMN id SET DEFAULT nextval('cms_page_placeholders_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_pagepermission ALTER COLUMN id SET DEFAULT nextval('cms_pagepermission_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_placeholder ALTER COLUMN id SET DEFAULT nextval('cms_placeholder_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_staticplaceholder ALTER COLUMN id SET DEFAULT nextval('cms_staticplaceholder_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_title ALTER COLUMN id SET DEFAULT nextval('cms_title_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cms_usersettings ALTER COLUMN id SET DEFAULT nextval('cms_usersettings_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY cmsplugin_filer_image_thumbnailoption ALTER COLUMN id SET DEFAULT nextval('cmsplugin_filer_image_thumbnailoption_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY digitalglarus_message ALTER COLUMN id SET DEFAULT nextval('digitalglarus_message_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY django_admin_log ALTER COLUMN id SET DEFAULT nextval('django_admin_log_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY django_content_type ALTER COLUMN id SET DEFAULT nextval('django_content_type_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY django_migrations ALTER COLUMN id SET DEFAULT nextval('django_migrations_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY django_select2_keymap ALTER COLUMN id SET DEFAULT nextval('django_select2_keymap_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY django_site ALTER COLUMN id SET DEFAULT nextval('django_site_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_authorentriesplugin_authors_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_blogcategory ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_blogcategory_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_blogcategory_translation ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_blogcategory_translation_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_latestpostsplugin_categories_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_latestpostsplugin_tags_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_post ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_post_categories ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_categories_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_post_sites ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_sites_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_blog_post_translation ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_translation_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_page_meta_pagemeta ALTER COLUMN id SET DEFAULT nextval('djangocms_page_meta_pagemeta_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_page_meta_titlemeta ALTER COLUMN id SET DEFAULT nextval('djangocms_page_meta_titlemeta_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY djangocms_snippet_snippet ALTER COLUMN id SET DEFAULT nextval('djangocms_snippet_snippet_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY easy_thumbnails_source ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_source_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY easy_thumbnails_thumbnail ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_thumbnail_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_thumbnaildimensions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY filer_clipboard ALTER COLUMN id SET DEFAULT nextval('filer_clipboard_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY filer_clipboarditem ALTER COLUMN id SET DEFAULT nextval('filer_clipboarditem_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY filer_file ALTER COLUMN id SET DEFAULT nextval('filer_file_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY filer_folder ALTER COLUMN id SET DEFAULT nextval('filer_folder_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY filer_folderpermission ALTER COLUMN id SET DEFAULT nextval('filer_folderpermission_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY hosting_railsbetauser ALTER COLUMN id SET DEFAULT nextval('hosting_railsbetauser_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY menus_cachekey ALTER COLUMN id SET DEFAULT nextval('menus_cachekey_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY railshosting_railsbetauser ALTER COLUMN id SET DEFAULT nextval('railshosting_railsbetauser_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY reversion_revision ALTER COLUMN id SET DEFAULT nextval('reversion_revision_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY reversion_version ALTER COLUMN id SET DEFAULT nextval('reversion_version_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY taggit_tag ALTER COLUMN id SET DEFAULT nextval('taggit_tag_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY taggit_taggeditem ALTER COLUMN id SET DEFAULT nextval('taggit_taggeditem_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: app -- ALTER TABLE ONLY ungleich_ungleichpage ALTER COLUMN id SET DEFAULT nextval('ungleich_ungleichpage_id_seq'::regclass); -- -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_group (id, name) FROM stdin; \. -- -- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_group_id_seq', 1, false); -- -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_group_permissions (id, group_id, permission_id) FROM stdin; \. -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_group_permissions_id_seq', 1, false); -- -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_permission (id, name, content_type_id, codename) FROM stdin; 1 Can add log entry 1 add_logentry 2 Can change log entry 1 change_logentry 3 Can delete log entry 1 delete_logentry 4 Can add permission 2 add_permission 5 Can change permission 2 change_permission 6 Can delete permission 2 delete_permission 7 Can add group 3 add_group 8 Can change group 3 change_group 9 Can delete group 3 delete_group 10 Can add user 4 add_user 11 Can change user 4 change_user 12 Can delete user 4 delete_user 13 Can add content type 5 add_contenttype 14 Can change content type 5 change_contenttype 15 Can delete content type 5 delete_contenttype 16 Can add session 6 add_session 17 Can change session 6 change_session 18 Can delete session 6 delete_session 19 Can add site 7 add_site 20 Can change site 7 change_site 21 Can delete site 7 delete_site 22 Can add user setting 8 add_usersettings 23 Can change user setting 8 change_usersettings 24 Can delete user setting 8 delete_usersettings 25 Can add placeholder 9 add_placeholder 26 Can change placeholder 9 change_placeholder 27 Can delete placeholder 9 delete_placeholder 28 Can use Structure mode 9 use_structure 29 Can add cms plugin 10 add_cmsplugin 30 Can change cms plugin 10 change_cmsplugin 31 Can delete cms plugin 10 delete_cmsplugin 32 Can add page 11 add_page 33 Can change page 11 change_page 34 Can delete page 11 delete_page 35 Can view page 11 view_page 36 Can publish page 11 publish_page 37 Can edit static placeholders 11 edit_static_placeholder 38 Can add Page global permission 12 add_globalpagepermission 39 Can change Page global permission 12 change_globalpagepermission 40 Can delete Page global permission 12 delete_globalpagepermission 41 Can add Page permission 13 add_pagepermission 42 Can change Page permission 13 change_pagepermission 43 Can delete Page permission 13 delete_pagepermission 44 Can add User (page) 14 add_pageuser 45 Can change User (page) 14 change_pageuser 46 Can delete User (page) 14 delete_pageuser 47 Can add User group (page) 15 add_pageusergroup 48 Can change User group (page) 15 change_pageusergroup 49 Can delete User group (page) 15 delete_pageusergroup 50 Can add title 16 add_title 51 Can change title 16 change_title 52 Can delete title 16 delete_title 53 Can add placeholder reference 17 add_placeholderreference 54 Can change placeholder reference 17 change_placeholderreference 55 Can delete placeholder reference 17 delete_placeholderreference 56 Can add static placeholder 18 add_staticplaceholder 57 Can change static placeholder 18 change_staticplaceholder 58 Can delete static placeholder 18 delete_staticplaceholder 59 Can add alias plugin model 19 add_aliaspluginmodel 60 Can change alias plugin model 19 change_aliaspluginmodel 61 Can delete alias plugin model 19 delete_aliaspluginmodel 62 Can add cache key 20 add_cachekey 63 Can change cache key 20 change_cachekey 64 Can delete cache key 20 delete_cachekey 65 Can add flash 21 add_flash 66 Can change flash 21 change_flash 67 Can delete flash 21 delete_flash 68 Can add google map 22 add_googlemap 69 Can change google map 22 change_googlemap 70 Can delete google map 22 delete_googlemap 71 Can add inherit page placeholder 23 add_inheritpageplaceholder 72 Can change inherit page placeholder 23 change_inheritpageplaceholder 73 Can delete inherit page placeholder 23 delete_inheritpageplaceholder 74 Can add link 24 add_link 75 Can change link 24 change_link 76 Can delete link 24 delete_link 77 Can add Snippet 25 add_snippet 78 Can change Snippet 25 change_snippet 79 Can delete Snippet 25 delete_snippet 80 Can add Snippet 26 add_snippetptr 81 Can change Snippet 26 change_snippetptr 82 Can delete Snippet 26 delete_snippetptr 83 Can add teaser 27 add_teaser 84 Can change teaser 27 change_teaser 85 Can delete teaser 27 delete_teaser 86 Can add filer file 28 add_filerfile 87 Can change filer file 28 change_filerfile 88 Can delete filer file 28 delete_filerfile 89 Can add filer folder 29 add_filerfolder 90 Can change filer folder 29 change_filerfolder 91 Can delete filer folder 29 delete_filerfolder 92 Can add filer link plugin 30 add_filerlinkplugin 93 Can change filer link plugin 30 change_filerlinkplugin 94 Can delete filer link plugin 30 delete_filerlinkplugin 95 Can add filer teaser 31 add_filerteaser 96 Can change filer teaser 31 change_filerteaser 97 Can delete filer teaser 31 delete_filerteaser 98 Can add filer video 32 add_filervideo 99 Can change filer video 32 change_filervideo 100 Can delete filer video 32 delete_filervideo 101 Can add revision 33 add_revision 102 Can change revision 33 change_revision 103 Can delete revision 33 delete_revision 104 Can add version 34 add_version 105 Can change version 34 change_version 106 Can delete version 34 delete_version 107 Can add text 35 add_text 108 Can change text 35 change_text 109 Can delete text 35 delete_text 110 Can add Folder 36 add_folder 111 Can change Folder 36 change_folder 112 Can delete Folder 36 delete_folder 113 Can use directory listing 36 can_use_directory_listing 114 Can add folder permission 37 add_folderpermission 115 Can change folder permission 37 change_folderpermission 116 Can delete folder permission 37 delete_folderpermission 117 Can add file 38 add_file 118 Can change file 38 change_file 119 Can delete file 38 delete_file 120 Can add clipboard 39 add_clipboard 121 Can change clipboard 39 change_clipboard 122 Can delete clipboard 39 delete_clipboard 123 Can add clipboard item 40 add_clipboarditem 124 Can change clipboard item 40 change_clipboarditem 125 Can delete clipboard item 40 delete_clipboarditem 126 Can add image 41 add_image 127 Can change image 41 change_image 128 Can delete image 41 delete_image 129 Can add source 42 add_source 130 Can change source 42 change_source 131 Can delete source 42 delete_source 132 Can add thumbnail 43 add_thumbnail 133 Can change thumbnail 43 change_thumbnail 134 Can delete thumbnail 43 delete_thumbnail 135 Can add thumbnail dimensions 44 add_thumbnaildimensions 136 Can change thumbnail dimensions 44 change_thumbnaildimensions 137 Can delete thumbnail dimensions 44 delete_thumbnaildimensions 138 Can add filer image 45 add_filerimage 139 Can change filer image 45 change_filerimage 140 Can delete filer image 45 delete_filerimage 141 Can add thumbnail option 46 add_thumbnailoption 142 Can change thumbnail option 46 change_thumbnailoption 143 Can delete thumbnail option 46 delete_thumbnailoption 144 Can add Tag 47 add_tag 145 Can change Tag 47 change_tag 146 Can delete Tag 47 delete_tag 147 Can add Tagged Item 48 add_taggeditem 148 Can change Tagged Item 48 change_taggeditem 149 Can delete Tagged Item 48 delete_taggeditem 150 Can add key map 49 add_keymap 151 Can change key map 49 change_keymap 152 Can delete key map 49 delete_keymap 153 Can add blog category 51 add_blogcategory 154 Can change blog category 51 change_blogcategory 155 Can delete blog category 51 delete_blogcategory 156 Can add blog article 53 add_post 157 Can change blog article 53 change_post 158 Can delete blog article 53 delete_post 159 Can add latest posts plugin 54 add_latestpostsplugin 160 Can change latest posts plugin 54 change_latestpostsplugin 161 Can delete latest posts plugin 54 delete_latestpostsplugin 162 Can add author entries plugin 55 add_authorentriesplugin 163 Can change author entries plugin 55 change_authorentriesplugin 164 Can delete author entries plugin 55 delete_authorentriesplugin 165 Can add ungleich page 56 add_ungleichpage 166 Can change ungleich page 56 change_ungleichpage 167 Can delete ungleich page 56 delete_ungleichpage 168 Can add rails beta user 57 add_railsbetauser 169 Can change rails beta user 57 change_railsbetauser 170 Can delete rails beta user 57 delete_railsbetauser 171 Can add message 58 add_message 172 Can change message 58 change_message 173 Can delete message 58 delete_message 174 Can add Page meta info (all languages) 59 add_pagemeta 175 Can change Page meta info (all languages) 59 change_pagemeta 176 Can delete Page meta info (all languages) 59 delete_pagemeta 177 Can add Page meta info (language-dependent) 60 add_titlemeta 178 Can change Page meta info (language-dependent) 60 change_titlemeta 179 Can delete Page meta info (language-dependent) 60 delete_titlemeta 180 Can add rails beta user 61 add_railsbetauser 181 Can change rails beta user 61 change_railsbetauser 182 Can delete rails beta user 61 delete_railsbetauser \. -- -- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_permission_id_seq', 182, true); -- -- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; 2 pbkdf2_sha256$15000$E4aOwgpuNSUy$ieeVxRVFCmC8zZKM3HqQJS7aug6aR7cvLKjue5mDiWs= 2015-06-13 13:22:13+00 t sanghee Sanghee Kim sanghee.kim@ungleich.ch t t 2015-06-13 13:22:13+00 3 pbkdf2_sha256$15000$LAd0VLScS9wH$Eo11OsKUhRwU0FITHREHDY3CaqhDmdtec+1pqYi/NTM= 2015-07-18 11:31:35.526078+00 t nico Nico Schottelius nico.schottelius@ungleich.ch t t 2015-06-13 13:22:45+00 4 pbkdf2_sha256$15000$Y98E4iEKgL0S$bgf0Zo1vl3yshqYtACeP5paZpVbmgNc17w3YA/Zi5nc= 2016-03-20 22:07:50.015532+00 t samantha Samantha Meyer samantha.meyer@ungleich.ch t t 2016-03-17 08:37:30+00 1 pbkdf2_sha256$15000$EEGheVZj8bac$EmhJJGLebseAsKhay6p5/yJpKSsKU8u/gcFxUNujuBw= 2016-03-21 14:35:42.967192+00 t ungleich team@ungleich.ch t t 2015-06-12 16:49:33.596112+00 5 pbkdf2_sha256$15000$IvHSvTOcnAvX$iMgecL0ssjKeps+FNAkQ2kwP8GfEAUS8NHzF7mXBtQM= 2016-03-24 21:14:12.406233+00 t tom tmslav@gmail.com t t 2016-03-22 15:44:51.772702+00 \. -- -- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_user_groups (id, user_id, group_id) FROM stdin; \. -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_user_groups_id_seq', 1, false); -- -- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_user_id_seq', 5, true); -- -- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: app -- COPY auth_user_user_permissions (id, user_id, permission_id) FROM stdin; \. -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('auth_user_user_permissions_id_seq', 9, true); -- -- Data for Name: cms_aliaspluginmodel; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_aliaspluginmodel (cmsplugin_ptr_id, plugin_id, alias_placeholder_id) FROM stdin; \. -- -- Data for Name: cms_cmsplugin; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_cmsplugin (id, "position", language, plugin_type, creation_date, changed_date, parent_id, placeholder_id, depth, numchild, path) FROM stdin; 26 2 en-us FilerLinkPlugin 2015-06-15 13:46:46.817737+00 2015-06-15 13:46:49.750618+00 21 12 2 0 00090003 27 3 en-us FilerLinkPlugin 2015-06-15 13:47:13.777197+00 2015-06-15 13:47:16.894176+00 21 12 2 0 00090004 14 0 en-us FilerLinkPlugin 2015-06-13 17:51:58.005466+00 2015-06-13 17:52:11.876651+00 13 11 2 0 00060001 44 2 en-us FilerLinkPlugin 2015-06-16 20:27:50.389155+00 2015-06-16 20:28:03.458509+00 41 14 2 0 000C0003 29 5 en-us FilerLinkPlugin 2015-06-15 13:50:48.437019+00 2015-06-15 13:50:51.257944+00 21 12 2 0 00090006 98 6 en-us FilerImagePlugin 2015-08-14 23:28:41.015433+00 2015-08-14 23:28:57.967379+00 85 21 2 0 000I000C 64 2 en-us FilerLinkPlugin 2015-07-20 19:30:44.212912+00 2015-07-20 19:30:48.353798+00 61 18 2 0 000F0003 30 6 en-us FilerLinkPlugin 2015-06-15 13:51:33.387763+00 2015-06-15 13:51:36.855665+00 21 12 2 0 00090007 45 3 en-us FilerLinkPlugin 2015-06-16 20:28:36.269318+00 2015-06-16 20:28:58.767315+00 41 14 2 0 000C0004 31 7 en-us FilerLinkPlugin 2015-06-15 13:51:57.676414+00 2015-06-15 13:52:00.825409+00 21 12 2 0 00090008 8 0 en-us FilerLinkPlugin 2015-06-12 20:33:35.572452+00 2015-06-12 20:34:25.8933+00 6 7 2 0 00040001 32 8 en-us FilerLinkPlugin 2015-06-15 13:52:15.269583+00 2015-06-15 13:52:18.496+00 21 12 2 0 00090009 49 6 en-us FilerImagePlugin 2015-06-16 21:15:54.671685+00 2015-06-16 21:19:53.133018+00 41 14 2 0 000C0008 6 0 en-us TextPlugin 2015-06-12 19:58:50.169957+00 2015-06-12 21:04:36.831752+00 \N 7 1 1 0004 33 9 en-us FilerLinkPlugin 2015-06-15 13:52:39.176543+00 2015-06-15 13:52:44.554555+00 21 12 2 0 0009000A 13 0 en-us TextPlugin 2015-06-13 17:47:15.784346+00 2015-06-14 04:46:11.774696+00 \N 11 1 4 0006 9 0 en-us FilerImagePlugin 2015-06-12 21:10:09.310396+00 2015-06-12 21:10:09.319275+00 4 9 2 0 00030001 4 0 en-us TextPlugin 2015-06-12 17:54:49.162118+00 2015-06-12 21:06:53.345931+00 \N 9 1 1 0003 17 1 en-us FilerImagePlugin 2015-06-14 04:43:51.755039+00 2015-06-14 04:46:11.833131+00 13 11 2 0 00060003 18 2 en-us FilerImagePlugin 2015-06-14 04:44:09.869605+00 2015-06-14 04:46:11.842905+00 13 11 2 0 00060004 19 3 en-us FilerImagePlugin 2015-06-14 04:44:22.081435+00 2015-06-14 04:46:11.852445+00 13 11 2 0 00060005 20 0 en-us TextPlugin 2015-06-14 05:11:57.14237+00 2015-06-14 05:11:57.314821+00 \N 10 1 0 0008 46 4 en-us FilerLinkPlugin 2015-06-16 20:33:58.086631+00 2015-06-16 20:34:01.279322+00 41 14 2 0 000C0005 34 10 en-us FilerLinkPlugin 2015-06-15 13:52:59.217126+00 2015-06-15 13:53:01.666042+00 21 12 2 0 0009000B 50 7 en-us FilerImagePlugin 2015-06-16 21:17:01.340229+00 2015-06-16 21:19:53.142557+00 41 14 2 0 000C0009 51 8 en-us FilerImagePlugin 2015-06-16 21:17:51.462657+00 2015-06-16 21:19:53.152077+00 41 14 2 0 000C000A 67 1 en-us FilerLinkPlugin 2015-07-26 22:47:45.188355+00 2015-07-26 22:48:20.01272+00 65 19 2 0 000G0002 52 9 en-us FilerImagePlugin 2015-06-16 21:18:41.569576+00 2015-06-16 21:20:16.720179+00 41 14 2 0 000C000B 24 0 en-us FilerLinkPlugin 2015-06-14 21:37:56.549604+00 2015-06-14 21:38:27.668868+00 21 12 2 0 00090001 38 0 en-us FilerImagePlugin 2015-06-15 20:12:38.592686+00 2015-06-15 20:24:16.70615+00 22 13 2 0 000A0003 393 0 en-us FilerImagePlugin 2015-10-27 12:57:35.207504+00 2015-10-27 13:16:23.306234+00 392 165 2 0 006Y0001 25 1 en-us FilerLinkPlugin 2015-06-14 22:02:41.481822+00 2015-06-14 22:02:51.619338+00 21 12 2 0 00090002 39 1 en-us FilerImagePlugin 2015-06-15 20:12:59.845088+00 2015-06-15 20:24:16.716705+00 22 13 2 0 000A0004 40 2 en-us FilerImagePlugin 2015-06-15 20:23:41.774831+00 2015-06-15 20:24:16.727631+00 22 13 2 0 000A0005 47 5 en-us FilerLinkPlugin 2015-06-16 20:47:38.009169+00 2015-06-16 20:47:46.891696+00 41 14 2 0 000C0006 28 4 en-us FilerLinkPlugin 2015-06-15 13:47:55.647303+00 2015-06-15 14:06:02.531631+00 21 12 2 0 00090005 41 0 en-us TextPlugin 2015-06-16 20:14:04.282513+00 2015-06-16 21:20:21.669854+00 \N 14 1 10 000C 53 0 en-us TextPlugin 2015-06-21 08:31:55.480776+00 2015-06-22 21:56:08.369576+00 \N 15 1 4 000D 101 0 en-us FilerLinkPlugin 2015-08-24 22:13:39.950723+00 2015-08-24 22:14:00.535082+00 100 23 2 0 000J0001 21 0 en-us TextPlugin 2015-06-14 21:22:06.930688+00 2015-06-15 15:30:02.895475+00 \N 12 1 11 0009 71 0 en-us TextPlugin 2015-08-09 17:56:26.254999+00 2015-08-09 20:45:58.97029+00 \N 20 1 11 000H 68 2 en-us FilerLinkPlugin 2015-07-26 23:15:03.311183+00 2015-07-26 23:15:27.731662+00 65 19 2 0 000G0003 22 0 en-us TextPlugin 2015-06-14 21:24:27.724016+00 2015-06-15 20:38:14.86652+00 \N 13 1 3 000A 59 0 en-us TextPlugin 2015-06-26 09:45:50.300563+00 2015-06-26 09:45:50.460937+00 \N 16 1 1 000E 55 0 en-us FilerImagePlugin 2015-06-22 13:39:11.56687+00 2015-06-22 21:29:11.992851+00 53 15 2 0 000D0001 42 0 en-us FilerLinkPlugin 2015-06-16 20:17:27.55228+00 2015-06-16 20:17:37.61838+00 41 14 2 0 000C0001 56 1 en-us FilerImagePlugin 2015-06-22 21:20:35.790788+00 2015-06-22 21:29:19.787657+00 53 15 2 0 000D0002 43 1 en-us FilerLinkPlugin 2015-06-16 20:22:32.166113+00 2015-06-16 20:22:36.349296+00 41 14 2 0 000C0002 57 2 en-us FilerImagePlugin 2015-06-22 21:28:15.995528+00 2015-06-22 21:29:27.840494+00 53 15 2 0 000D0003 60 0 en-us FilerLinkPlugin 2015-06-26 09:47:07.129332+00 2015-06-26 09:47:11.833642+00 59 16 2 0 000E0001 61 0 en-us TextPlugin 2015-07-20 19:15:27.714523+00 2015-07-20 19:31:59.07523+00 \N 18 1 3 000F 58 3 en-us FilerLinkPlugin 2015-06-22 21:37:33.698877+00 2015-06-22 21:37:45.17474+00 53 15 2 0 000D0004 62 0 en-us FilerLinkPlugin 2015-07-20 19:17:28.199265+00 2015-07-20 19:17:35.893519+00 61 18 2 0 000F0001 69 3 en-us FilerLinkPlugin 2015-07-26 23:37:32.062729+00 2015-07-26 23:37:36.078352+00 65 19 2 0 000G0004 63 1 en-us FilerLinkPlugin 2015-07-20 19:20:11.650034+00 2015-07-20 19:20:15.208989+00 61 18 2 0 000F0002 70 4 en-us FilerLinkPlugin 2015-07-26 23:37:46.86029+00 2015-07-26 23:37:49.867409+00 65 19 2 0 000G0005 66 0 en-us FilerLinkPlugin 2015-07-26 22:47:27.322604+00 2015-07-26 22:47:32.134591+00 65 19 2 0 000G0001 105 1 en-us FilerLinkPlugin 2015-08-28 15:35:38.97489+00 2015-08-28 15:36:21.037711+00 103 24 2 0 000K0002 107 3 en-us FilerImagePlugin 2015-08-28 16:57:12.001482+00 2015-08-28 22:28:47.340897+00 103 24 2 0 000K0004 109 4 en-us FilerImagePlugin 2015-08-28 22:26:14.370709+00 2015-08-28 22:26:47.661753+00 103 24 2 0 000K0005 103 0 en-us TextPlugin 2015-08-28 14:30:15.002616+00 2015-08-29 13:39:42.704001+00 \N 24 1 6 000K 191 0 en-us TextPlugin 2015-10-04 18:07:07.395899+00 2016-01-29 19:50:40.842455+00 \N 84 1 0 001T 1 0 en-us TextPlugin 2015-06-12 16:53:05.418334+00 2016-01-27 16:54:42.66932+00 \N 2 1 0 0001 119 2 en-us FilerLinkPlugin 2015-09-02 12:55:14.640227+00 2015-09-02 12:55:20.35184+00 115 26 2 0 000N0004 73 0 en-us FilerLinkPlugin 2015-08-09 18:17:11.081383+00 2015-08-09 19:15:49.316316+00 71 20 2 0 000H0002 74 1 en-us FilerLinkPlugin 2015-08-09 18:21:17.777022+00 2015-08-09 19:15:49.32558+00 71 20 2 0 000H0003 125 0 en-us TextPlugin 2015-09-17 19:06:32.769182+00 2015-09-18 11:45:31.500097+00 \N 27 1 1 000O 65 0 en-us TextPlugin 2015-07-26 22:38:45.141585+00 2015-09-26 22:12:22.084417+00 \N 19 1 5 000G 75 2 en-us FilerLinkPlugin 2015-08-09 18:33:00.48878+00 2015-08-09 19:15:49.334923+00 71 20 2 0 000H0004 76 3 en-us FilerLinkPlugin 2015-08-09 18:36:44.517946+00 2015-08-09 19:15:49.345702+00 71 20 2 0 000H0005 77 4 en-us FilerLinkPlugin 2015-08-09 18:41:23.645018+00 2015-08-09 19:15:49.355821+00 71 20 2 0 000H0006 78 5 en-us FilerLinkPlugin 2015-08-09 19:10:56.286813+00 2015-08-09 19:15:49.365892+00 71 20 2 0 000H0007 79 6 en-us FilerLinkPlugin 2015-08-09 19:15:17.332263+00 2015-08-09 19:15:49.375057+00 71 20 2 0 000H0008 80 7 en-us FilerLinkPlugin 2015-08-09 19:23:11.927367+00 2015-08-09 19:23:16.033656+00 71 20 2 0 000H0009 115 1 en-us TextPlugin 2015-09-02 12:33:39.810411+00 2015-09-02 13:59:08.70863+00 \N 26 1 4 000N 82 8 en-us FilerImagePlugin 2015-08-09 20:37:39.857693+00 2015-08-09 20:39:20.160014+00 71 20 2 0 000H000B 117 0 en-us FilerLinkPlugin 2015-09-02 12:41:37.209036+00 2015-09-02 12:48:37.577613+00 115 26 2 0 000N0002 118 1 en-us FilerLinkPlugin 2015-09-02 12:46:48.435556+00 2015-09-02 12:48:37.624457+00 115 26 2 0 000N0003 84 10 en-us FilerImagePlugin 2015-08-09 20:42:44.15351+00 2015-08-09 20:45:28.001537+00 71 20 2 0 000H000D 83 9 en-us FilerImagePlugin 2015-08-09 20:39:00.945532+00 2015-08-09 20:45:56.114356+00 71 20 2 0 000H000C 93 4 en-us FilerImagePlugin 2015-08-14 23:09:22.928199+00 2015-08-14 23:10:04.426994+00 85 21 2 0 000I0008 114 0 en-us TextPlugin 2015-09-02 12:30:10.871342+00 2015-09-02 12:48:37.68106+00 \N 26 1 0 000M 126 0 en-us FilerImagePlugin 2015-09-17 19:17:36.98171+00 2015-09-17 19:18:13.39417+00 125 27 2 0 000O0001 128 0 en-us FilerLinkPlugin 2015-09-24 14:03:28.729672+00 2015-09-24 14:03:33.551647+00 127 28 2 0 000P0001 394 1 en-us FilerImagePlugin 2015-10-27 13:19:59.430762+00 2015-10-27 13:20:20.99752+00 392 165 2 0 006Y0002 129 1 en-us FilerImagePlugin 2015-09-24 14:07:33.599253+00 2015-09-24 14:11:18.973003+00 127 28 2 0 000P0002 147 7 en-us FilerImagePlugin 2015-09-25 14:50:39.190766+00 2015-09-25 14:52:00.830289+00 138 29 2 0 000Q0009 641 0 en-us FilerLinkPlugin 2015-12-07 13:36:17.936241+00 2015-12-07 13:36:24.602425+00 640 195 2 0 00A40001 87 0 en-us FilerLinkPlugin 2015-08-14 22:15:12.17447+00 2015-08-14 22:48:47.154844+00 85 21 2 0 000I0002 88 1 en-us FilerLinkPlugin 2015-08-14 22:20:39.569008+00 2015-08-14 22:48:47.164533+00 85 21 2 0 000I0003 149 0 en-us TextPlugin 2015-09-29 19:40:16.887721+00 2015-09-30 05:51:38.460106+00 \N 30 1 1 000R 90 3 en-us FilerLinkPlugin 2015-08-14 22:51:08.475823+00 2015-08-14 22:51:15.169878+00 85 21 2 0 000I0005 111 0 en-us TextPlugin 2015-09-02 09:52:33.499198+00 2015-09-02 13:42:54.613627+00 \N 25 1 1 000L 143 3 en-us FilerImagePlugin 2015-09-25 14:06:06.709808+00 2015-09-25 14:18:27.515336+00 138 29 2 0 000Q0005 89 2 en-us FilerLinkPlugin 2015-08-14 22:26:14.397748+00 2015-08-14 22:52:37.583213+00 85 21 2 0 000I0004 102 1 en-us FilerLinkPlugin 2015-08-24 22:17:34.244685+00 2015-08-24 22:17:43.72771+00 100 23 2 0 000J0002 152 0 en-us FilerLinkPlugin 2015-09-30 05:51:25.163136+00 2015-09-30 05:51:38.500111+00 149 30 2 0 000R0003 100 0 en-us TextPlugin 2015-08-24 21:19:03.121329+00 2015-08-24 22:17:45.163284+00 \N 23 1 2 000J 104 0 en-us FilerLinkPlugin 2015-08-28 14:32:35.2814+00 2015-08-28 14:32:40.443024+00 103 24 2 0 000K0001 97 5 en-us FilerImagePlugin 2015-08-14 23:24:51.073565+00 2015-08-14 23:28:17.206701+00 85 21 2 0 000I000B 162 0 de TextPlugin 2015-10-04 17:20:34.38365+00 2015-11-29 18:45:41.198784+00 \N 39 1 0 0011 196 0 de TextPlugin 2015-10-04 18:06:26.767411+00 2015-11-29 18:47:44.78896+00 \N 81 1 0 001V 110 5 en-us FilerLinkPlugin 2015-08-28 22:31:06.618079+00 2015-08-28 22:31:10.237881+00 103 24 2 0 000K0006 106 2 en-us FilerImagePlugin 2015-08-28 16:09:31.463593+00 2015-08-29 13:39:38.289144+00 103 24 2 0 000K0003 99 7 en-us FilerImagePlugin 2015-08-14 23:31:39.401775+00 2015-08-14 23:31:55.649052+00 85 21 2 0 000I000D 112 0 en-us FilerImagePlugin 2015-09-02 10:10:30.003766+00 2015-09-02 10:21:54.397909+00 111 25 2 0 000L0001 85 0 en-us TextPlugin 2015-08-14 22:12:59.170085+00 2015-08-14 23:31:59.083117+00 \N 21 1 9 000I 133 3 en-us FilerLinkPlugin 2015-09-24 14:22:11.04353+00 2015-09-24 14:22:25.653986+00 127 28 2 0 000P0006 127 0 en-us TextPlugin 2015-09-24 14:01:24.312122+00 2015-09-25 19:02:10.322514+00 \N 28 1 6 000P 144 4 en-us FilerLinkPlugin 2015-09-25 14:31:57.54264+00 2015-09-25 14:37:37.812047+00 138 29 2 0 000Q0006 139 0 en-us FilerImagePlugin 2015-09-25 13:11:00.83098+00 2015-09-25 13:11:45.975109+00 138 29 2 0 000Q0001 145 5 en-us FilerLinkPlugin 2015-09-25 14:38:00.801365+00 2015-09-25 14:38:04.453905+00 138 29 2 0 000Q0007 124 3 en-us FilerImagePlugin 2015-09-02 13:57:16.334441+00 2015-09-02 13:57:49.158941+00 115 26 2 0 000N0009 130 2 en-us FilerImagePlugin 2015-09-24 14:14:48.407836+00 2015-09-24 14:57:45.463839+00 127 28 2 0 000P0003 140 1 en-us FilerImagePlugin 2015-09-25 13:25:20.314467+00 2015-09-25 14:43:06.875901+00 138 29 2 0 000Q0002 142 2 en-us FilerImagePlugin 2015-09-25 13:29:45.432689+00 2015-09-25 14:43:33.363524+00 138 29 2 0 000Q0004 135 4 en-us FilerImagePlugin 2015-09-24 15:09:09.056052+00 2015-09-24 15:10:22.509681+00 127 28 2 0 000P0007 148 8 en-us FilerImagePlugin 2015-09-25 14:56:10.100897+00 2015-09-25 14:57:19.058015+00 138 29 2 0 000Q000A 136 5 en-us FilerImagePlugin 2015-09-24 15:11:02.489789+00 2015-09-24 15:11:10.485466+00 127 28 2 0 000P0008 155 0 en-us TextPlugin 2015-10-04 16:59:46.792796+00 2015-10-04 16:59:52.991713+00 \N 34 1 0 000U 138 0 en-us TextPlugin 2015-09-25 13:05:51.158396+00 2015-09-25 17:56:37.625409+00 \N 29 1 9 000Q 146 6 en-us FilerLinkPlugin 2015-09-25 14:44:23.935696+00 2015-09-25 14:44:27.034527+00 138 29 2 0 000Q0008 156 0 en-us TextPlugin 2015-10-04 17:00:03.379218+00 2015-10-04 17:00:11.37735+00 \N 33 1 0 000V 159 0 en-us TextPlugin 2015-10-04 17:01:30.763349+00 2015-10-04 17:01:35.916952+00 \N 37 1 0 000Y 157 0 en-us TextPlugin 2015-10-04 17:00:37.507873+00 2015-10-04 17:00:43.059233+00 \N 35 1 0 000W 154 0 en-us TextPlugin 2015-10-04 16:56:41.534844+00 2015-10-04 16:56:47.550179+00 \N 31 1 0 000T 158 0 en-us TextPlugin 2015-10-04 17:01:04.021107+00 2015-10-04 17:01:09.865712+00 \N 36 1 0 000X 160 0 en-us TextPlugin 2015-10-04 17:01:51.549308+00 2015-10-04 17:01:59.197806+00 \N 38 1 0 000Z 164 0 de TextPlugin 2015-10-04 17:22:41.094306+00 2015-10-04 17:22:47.375806+00 \N 32 1 0 0013 166 0 de TextPlugin 2015-10-04 17:23:23.851326+00 2015-10-04 17:23:28.835032+00 \N 34 1 0 0015 168 0 de TextPlugin 2015-10-04 17:26:47.617404+00 2015-10-04 17:26:47.955105+00 \N 2 1 0 0016 163 0 de TextPlugin 2015-10-04 17:22:11.318342+00 2015-10-04 17:40:11.985625+00 \N 31 1 0 0012 169 0 en-us TextPlugin 2015-06-12 16:53:05.418334+00 2015-10-04 17:27:41.620441+00 \N 3 1 0 0017 171 0 de TextPlugin 2015-10-04 17:31:39.702947+00 2015-10-04 17:31:46.273531+00 \N 36 1 0 0019 165 0 de TextPlugin 2015-10-04 17:23:05.607806+00 2015-10-04 17:39:51.912669+00 \N 33 1 0 0014 172 0 de TextPlugin 2015-10-04 17:32:07.260014+00 2015-10-04 17:39:29.358558+00 \N 37 1 0 001A 173 0 de TextPlugin 2015-10-04 17:36:07.616707+00 2015-10-04 17:36:16.255071+00 \N 38 1 0 001B 170 0 de TextPlugin 2015-10-04 17:31:20.090022+00 2015-10-04 17:39:08.100765+00 \N 35 1 0 0018 175 0 en-us TextPlugin 2015-10-04 17:46:20.372898+00 2015-10-04 17:46:27.188238+00 \N 67 1 0 001D 195 0 en-us TextPlugin 2015-10-04 18:10:28.015404+00 2015-10-04 18:11:17.160015+00 \N 83 1 0 001U 176 0 en-us TextPlugin 2015-10-04 17:46:40.251564+00 2015-10-04 17:46:52.84976+00 \N 68 1 0 001E 205 0 de TextPlugin 2015-10-04 19:35:23.668818+00 2015-11-29 18:45:25.172142+00 \N 93 1 0 0024 177 0 en-us TextPlugin 2015-10-04 17:47:04.566022+00 2015-10-04 17:47:14.264967+00 \N 69 1 0 001F 190 0 en-us TextPlugin 2015-10-04 18:06:49.275704+00 2015-10-04 18:12:53.711186+00 \N 82 1 0 001S 178 0 en-us TextPlugin 2015-10-04 17:47:33.925637+00 2015-10-04 17:47:41.78941+00 \N 70 1 0 001G 179 0 en-us TextPlugin 2015-10-04 17:47:50.728833+00 2015-10-04 17:47:57.022408+00 \N 71 1 0 001H 209 0 de TextPlugin 2015-10-04 19:56:30.645057+00 2015-10-04 19:58:13.941633+00 \N 97 1 0 0028 180 0 en-us TextPlugin 2015-10-04 17:48:04.82884+00 2015-10-04 17:48:12.22353+00 \N 72 1 0 001I 199 0 de TextPlugin 2015-10-04 18:16:22.743467+00 2015-10-05 01:48:02.21355+00 \N 84 1 0 001Y 197 0 de TextPlugin 2015-10-04 18:14:38.170897+00 2015-10-04 18:15:40.462391+00 \N 82 1 0 001W 183 0 de TextPlugin 2015-10-04 17:52:54.182045+00 2015-10-04 17:53:03.407087+00 \N 68 1 0 001L 181 0 de TextPlugin 2015-10-04 17:45:58.715573+00 2015-11-29 18:47:28.621844+00 \N 66 1 0 001J 577 0 de TextPlugin 2015-10-04 18:06:26.767411+00 2015-11-29 18:47:55.083905+00 \N 143 1 0 0094 198 0 de TextPlugin 2015-10-04 18:16:04.529371+00 2015-10-04 18:17:33.72536+00 \N 83 1 0 001X 200 0 en-us TextPlugin 2015-10-04 19:30:01.255176+00 2015-10-04 19:30:26.592931+00 \N 94 1 0 001Z 201 0 en-us TextPlugin 2015-10-04 19:30:45.478049+00 2015-10-04 19:31:37.378305+00 \N 95 1 0 0020 189 0 en-us TextPlugin 2015-10-04 18:06:26.767411+00 2015-11-29 14:56:35.337796+00 \N 81 1 0 001R 182 0 de TextPlugin 2015-10-04 17:52:38.665903+00 2015-10-04 17:57:08.08932+00 \N 67 1 0 001K 395 2 en-us FilerImagePlugin 2015-10-27 13:24:22.886306+00 2015-10-27 13:24:59.6234+00 392 165 2 0 006Y0003 594 0 de TextPlugin 2015-10-04 19:35:23.668818+00 2015-11-29 18:48:45.076256+00 \N 156 1 0 009L 202 0 en-us TextPlugin 2015-10-04 19:31:45.82309+00 2015-10-04 19:37:11.853514+00 \N 96 1 0 0021 203 0 en-us TextPlugin 2015-10-04 19:32:35.14572+00 2015-10-04 19:37:34.513871+00 \N 97 1 0 0022 185 0 de TextPlugin 2015-10-04 17:55:24.521891+00 2015-10-04 17:58:54.653826+00 \N 70 1 0 001N 415 10 en-us FilerImagePlugin 2015-10-27 15:20:31.78518+00 2015-10-27 15:20:40.87686+00 392 165 2 0 006Y000N 188 0 de TextPlugin 2015-10-04 17:56:28.318812+00 2015-10-04 17:59:12.135133+00 \N 71 1 0 001Q 187 0 de TextPlugin 2015-10-04 17:56:10.917672+00 2015-10-04 17:59:41.183006+00 \N 72 1 0 001P 642 1 en-us FilerImagePlugin 2015-12-07 14:00:25.156157+00 2015-12-07 16:07:55.86911+00 640 195 2 0 00A40002 184 0 de TextPlugin 2015-10-04 17:55:08.645778+00 2015-10-04 18:00:01.920142+00 \N 69 1 0 001M 578 0 de TextPlugin 2015-10-04 18:14:38.170897+00 2015-11-29 18:47:55.110959+00 \N 140 1 0 0095 206 0 de TextPlugin 2015-10-04 19:54:37.668765+00 2015-10-04 19:55:12.396075+00 \N 94 1 0 0025 418 13 en-us FilerLinkPlugin 2015-10-27 15:35:19.864916+00 2015-10-27 15:35:26.64234+00 392 165 2 0 006Y000Q 595 0 de TextPlugin 2015-10-04 19:54:37.668765+00 2015-11-29 18:48:45.094403+00 \N 152 1 0 009M 445 5 en-us FilerImagePlugin 2015-11-08 22:29:14.309946+00 2015-11-08 22:30:23.611342+00 435 169 2 0 0072000A 647 4 en-us FilerImagePlugin 2015-12-07 14:14:15.452136+00 2015-12-07 15:42:33.575503+00 640 195 2 0 00A40007 579 0 de TextPlugin 2015-10-04 18:16:04.529371+00 2015-11-29 18:47:55.133655+00 \N 141 1 0 0096 421 15 en-us FilerLinkPlugin 2015-10-27 15:43:21.173886+00 2015-10-27 16:26:09.546053+00 392 165 2 0 006Y000T 207 0 de TextPlugin 2015-10-04 19:30:45.478049+00 2015-10-04 19:57:32.21944+00 \N 95 1 0 0026 208 0 de TextPlugin 2015-10-04 19:56:14.042232+00 2015-10-04 19:57:52.947159+00 \N 96 1 0 0027 399 5 en-us FilerImagePlugin 2015-10-27 13:37:35.705887+00 2015-10-27 16:34:17.005904+00 392 165 2 0 006Y0007 429 0 en-us FilerLinkPlugin 2015-11-02 07:34:59.648353+00 2015-11-02 07:35:04.234361+00 428 167 2 0 00700001 428 0 en-us TextPlugin 2015-11-02 07:14:07.950561+00 2015-11-02 07:37:49.547343+00 \N 167 1 1 0070 596 0 de TextPlugin 2015-10-04 19:30:45.478049+00 2015-11-29 18:48:45.113954+00 \N 153 1 0 009N 673 0 de FilerLinkPlugin 2015-11-25 20:15:33.454257+00 2015-12-15 15:18:47.487297+00 672 185 2 0 00A60001 460 0 en-us TextPlugin 2015-11-15 00:01:22.760865+00 2015-11-21 16:36:27.27302+00 \N 171 1 0 0074 448 6 en-us FilerImagePlugin 2015-11-09 18:57:13.875494+00 2015-11-09 18:57:32.650515+00 435 169 2 0 0072000D 677 0 en-us TextPlugin 2016-01-13 21:20:51.274182+00 2016-01-14 22:17:04.449001+00 \N 196 1 8 00A7 580 0 de TextPlugin 2015-10-04 18:16:22.743467+00 2015-11-29 18:47:55.163839+00 \N 142 1 0 0097 672 0 de TextPlugin 2015-11-25 07:06:27.105989+00 2015-12-15 15:18:47.513278+00 \N 185 1 1 00A6 439 1 en-us FilerLinkPlugin 2015-11-08 21:35:57.543549+00 2015-11-08 21:50:17.18246+00 435 169 2 0 00720004 442 4 en-us FilerImagePlugin 2015-11-08 21:46:28.69263+00 2015-11-08 21:50:17.211032+00 435 169 2 0 00720007 597 0 de TextPlugin 2015-10-04 19:56:14.042232+00 2015-11-29 18:48:45.131478+00 \N 154 1 0 009O 454 2 en-us FilerLinkPlugin 2015-11-13 05:54:53.273223+00 2015-11-13 05:58:28.008606+00 449 170 2 0 00730005 457 5 en-us FilerLinkPlugin 2015-11-13 05:56:18.51104+00 2015-11-13 05:58:28.036466+00 449 170 2 0 00730008 204 0 en-us TextPlugin 2015-10-04 19:35:23.668818+00 2015-11-29 14:55:24.411086+00 \N 93 1 0 0023 598 0 de TextPlugin 2015-10-04 19:56:30.645057+00 2015-11-29 18:48:45.150153+00 \N 155 1 0 009P 174 0 en-us TextPlugin 2015-10-04 17:45:58.715573+00 2015-11-29 14:56:18.192852+00 \N 66 1 0 001C 416 11 en-us FilerImagePlugin 2015-10-27 15:25:57.512554+00 2015-10-27 15:26:08.892321+00 392 165 2 0 006Y000O 437 0 en-us FilerImagePlugin 2015-11-08 21:08:44.921041+00 2015-11-08 21:50:17.041856+00 435 169 2 0 00720002 690 7 en-us FilerImagePlugin 2016-01-14 16:38:17.050882+00 2016-01-14 16:38:39.862103+00 677 196 2 0 00A70008 396 3 en-us FilerImagePlugin 2015-10-27 13:25:05.300627+00 2015-10-27 13:25:36.842345+00 392 165 2 0 006Y0004 581 0 de TextPlugin 2015-10-04 17:22:11.318342+00 2015-11-29 18:48:17.680337+00 \N 98 1 0 0098 510 1 en-us FilerLinkPlugin 2015-11-19 21:13:14.446613+00 2015-11-19 21:13:57.891054+00 508 174 2 0 00870002 440 2 en-us FilerImagePlugin 2015-11-08 21:44:25.41338+00 2015-11-08 21:50:17.191886+00 435 169 2 0 00720005 533 0 en-us FilerLinkPlugin 2015-11-25 06:50:51.131351+00 2015-11-25 06:51:01.597235+00 532 184 2 0 008E0001 663 9 en-us FilerLinkPlugin 2015-12-07 15:55:21.502045+00 2015-12-07 16:21:32.520594+00 640 195 2 0 00A4000N 419 14 en-us FilerImagePlugin 2015-10-27 15:36:50.127747+00 2015-10-27 15:36:57.153015+00 392 165 2 0 006Y000R 664 10 en-us FilerLinkPlugin 2015-12-07 15:56:40.718989+00 2015-12-07 16:21:32.53109+00 640 195 2 0 00A4000O 400 6 en-us FilerImagePlugin 2015-10-27 13:39:51.574231+00 2015-10-27 13:43:51.699624+00 392 165 2 0 006Y0008 506 1 en-us FilerImagePlugin 2015-11-15 14:48:25.981834+00 2015-11-15 14:48:25.991879+00 504 173 2 0 00860002 674 4 en-us FilerImagePlugin 2016-01-06 13:49:24.109384+00 2016-01-06 13:49:24.120147+00 508 174 2 0 00870006 504 0 en-us TextPlugin 2015-11-15 10:13:07.595484+00 2015-11-15 10:13:07.944678+00 \N 173 1 3 0086 582 0 de TextPlugin 2015-10-04 17:22:41.094306+00 2015-11-29 18:48:17.701625+00 \N 99 1 0 0099 648 5 en-us FilerImagePlugin 2015-12-07 14:21:28.565765+00 2015-12-07 15:42:33.586309+00 640 195 2 0 00A40008 512 2 en-us FilerLinkPlugin 2015-11-19 21:14:58.349542+00 2015-11-19 21:20:29.299837+00 508 174 2 0 00870004 461 0 de TextPlugin 2015-11-15 00:25:49.040969+00 2015-11-15 01:23:07.287388+00 \N 171 1 0 0075 426 18 en-us FilerLinkPlugin 2015-10-27 21:29:13.403446+00 2015-10-27 21:35:54.086143+00 392 165 2 0 006Y000Y 693 0 en-us FilerImagePlugin 2016-01-15 15:34:34.693403+00 2016-01-15 15:35:26.075566+00 691 197 2 0 00A80001 413 8 en-us FilerImagePlugin 2015-10-27 15:18:35.975633+00 2015-10-27 15:18:47.312407+00 392 165 2 0 006Y000L 449 0 en-us TextPlugin 2015-11-13 05:30:23.192477+00 2015-11-13 05:58:27.948248+00 \N 170 1 8 0073 508 0 en-us TextPlugin 2015-11-19 20:46:24.485909+00 2015-11-19 21:39:11.943284+00 \N 174 1 7 0087 583 0 de TextPlugin 2015-10-04 17:23:05.607806+00 2015-11-29 18:48:17.71919+00 \N 100 1 0 009A 422 16 en-us FilerImagePlugin 2015-10-27 16:25:12.198994+00 2015-10-27 16:26:09.55557+00 392 165 2 0 006Y000U 452 0 en-us FilerLinkPlugin 2015-11-13 05:54:16.892882+00 2015-11-13 05:58:27.990192+00 449 170 2 0 00730003 455 3 en-us FilerLinkPlugin 2015-11-13 05:55:18.694671+00 2015-11-13 05:58:28.017848+00 449 170 2 0 00730006 652 7 en-us FilerImagePlugin 2015-12-07 14:32:26.589425+00 2015-12-07 15:42:33.909919+00 640 195 2 0 00A4000C 458 6 en-us FilerLinkPlugin 2015-11-13 05:57:46.583694+00 2015-11-13 05:58:28.045609+00 449 170 2 0 00730009 392 0 en-us TextPlugin 2015-10-27 12:42:08.560007+00 2015-10-28 16:36:41.488833+00 \N 165 1 20 006Y 435 0 en-us TextPlugin 2015-11-08 20:40:01.583862+00 2015-11-09 18:57:32.613802+00 \N 169 1 7 0072 584 0 de TextPlugin 2015-10-04 17:23:23.851326+00 2015-11-29 18:48:17.740934+00 \N 101 1 0 009B 696 3 en-us FilerImagePlugin 2016-01-15 15:37:01.397408+00 2016-01-15 15:37:16.843658+00 691 197 2 0 00A80004 430 0 en-us TextPlugin 2015-11-03 07:14:15.348536+00 2015-11-03 18:19:23.173653+00 \N 168 1 1 0071 699 6 en-us FilerImagePlugin 2016-01-15 15:38:16.271761+00 2016-01-15 15:38:28.923154+00 691 197 2 0 00A80007 684 1 en-us FilerImagePlugin 2016-01-14 15:02:38.790989+00 2016-01-14 15:02:52.697913+00 677 196 2 0 00A70002 702 8 en-us FilerLinkPlugin 2016-01-15 15:40:40.055742+00 2016-01-15 15:41:07.6947+00 691 197 2 0 00A8000A 585 0 de TextPlugin 2015-10-04 17:31:20.090022+00 2015-11-29 18:48:17.813458+00 \N 102 1 0 009C 687 4 en-us FilerImagePlugin 2016-01-14 16:05:46.612886+00 2016-01-14 16:05:52.462317+00 677 196 2 0 00A70005 586 0 de TextPlugin 2015-10-04 17:31:39.702947+00 2015-11-29 18:48:17.833297+00 \N 103 1 0 009D 587 0 de TextPlugin 2015-10-04 17:32:07.260014+00 2015-11-29 18:48:17.852328+00 \N 104 1 0 009E 542 1 en-us FilerLinkPlugin 2015-11-25 19:42:12.795471+00 2015-11-25 19:42:49.547087+00 532 184 2 0 008E0002 544 2 en-us FilerLinkPlugin 2015-11-25 19:46:37.04755+00 2015-11-25 19:49:19.954083+00 532 184 2 0 008E0004 557 0 en-us TextPlugin 2015-10-04 19:30:45.478049+00 2015-11-29 14:55:34.53846+00 \N 153 1 0 008K 555 0 en-us TextPlugin 2015-10-04 19:35:23.668818+00 2015-11-29 14:55:34.499207+00 \N 156 1 0 008I 556 0 en-us TextPlugin 2015-10-04 19:30:01.255176+00 2015-11-29 14:55:34.518584+00 \N 152 1 0 008J 558 0 en-us TextPlugin 2015-10-04 19:31:45.82309+00 2015-11-29 14:55:34.558962+00 \N 154 1 0 008L 559 0 en-us TextPlugin 2015-10-04 19:32:35.14572+00 2015-11-29 14:55:34.580708+00 \N 155 1 0 008M 397 4 en-us FilerImagePlugin 2015-10-27 13:34:24.3696+00 2015-10-27 13:35:30.659912+00 392 165 2 0 006Y0005 606 0 de TextPlugin 2015-10-04 17:52:38.665903+00 2015-11-29 18:49:10.898562+00 \N 125 1 0 009T 640 0 en-us TextPlugin 2015-12-06 21:27:30.050753+00 2015-12-07 16:27:18.208096+00 \N 195 1 14 00A4 675 5 en-us FilerImagePlugin 2016-01-06 14:01:25.483038+00 2016-01-06 14:01:25.504255+00 508 174 2 0 00870007 427 0 en-us TextPlugin 2015-10-29 13:58:02.940891+00 2015-10-29 13:58:03.268334+00 \N 166 1 0 006Z 694 1 en-us FilerImagePlugin 2016-01-15 15:35:50.05548+00 2016-01-15 15:36:02.258644+00 691 197 2 0 00A80002 434 19 en-us FilerLinkPlugin 2015-11-03 18:04:49.321683+00 2015-11-03 18:04:49.33096+00 392 165 2 0 006Y000Z 697 4 en-us FilerImagePlugin 2016-01-15 15:37:20.366654+00 2016-01-15 15:37:27.260221+00 691 197 2 0 00A80005 509 0 en-us FilerImagePlugin 2015-11-19 21:10:20.919132+00 2015-11-19 21:10:29.587154+00 508 174 2 0 00870001 607 0 de TextPlugin 2015-10-04 17:52:54.182045+00 2015-11-29 18:49:10.918129+00 \N 126 1 0 009U 685 2 en-us FilerImagePlugin 2016-01-14 15:02:57.488251+00 2016-01-14 15:03:09.34173+00 677 196 2 0 00A70003 588 0 de TextPlugin 2015-10-04 17:36:07.616707+00 2015-11-29 18:48:17.875106+00 \N 105 1 0 009F 532 0 en-us TextPlugin 2015-11-25 06:36:07.172082+00 2015-12-02 04:09:10.660997+00 \N 184 1 3 008E 441 3 en-us FilerImagePlugin 2015-11-08 21:45:24.133482+00 2015-11-08 21:50:17.201463+00 435 169 2 0 00720006 688 5 en-us FilerLinkPlugin 2016-01-14 16:22:34.497705+00 2016-01-14 16:22:37.688682+00 677 196 2 0 00A70006 608 0 de TextPlugin 2015-10-04 17:55:08.645778+00 2015-11-29 18:49:10.939132+00 \N 127 1 0 009V 589 0 de TextPlugin 2015-10-04 17:20:34.38365+00 2015-11-29 18:48:17.893088+00 \N 106 1 0 009G 644 2 en-us FilerImagePlugin 2015-12-07 14:02:56.868729+00 2015-12-07 15:42:33.35919+00 640 195 2 0 00A40004 599 0 de TextPlugin 2015-11-15 00:25:49.040969+00 2015-11-29 18:48:45.183307+00 \N 172 1 0 009Q 513 3 en-us FilerImagePlugin 2015-11-19 21:26:50.975129+00 2015-11-19 21:27:13.803388+00 508 174 2 0 00870005 665 11 en-us FilerLinkPlugin 2015-12-07 15:57:31.453656+00 2015-12-07 16:21:32.541495+00 640 195 2 0 00A4000P 667 13 en-us FilerLinkPlugin 2015-12-07 16:11:19.775054+00 2015-12-07 16:21:32.563036+00 640 195 2 0 00A4000R 153 0 en-us TextPlugin 2015-10-04 16:56:13.254472+00 2015-10-13 14:02:19.803785+00 \N 32 1 0 000S 411 7 en-us FilerImagePlugin 2015-10-27 15:12:14.163751+00 2015-10-27 15:13:28.857303+00 392 165 2 0 006Y000J 414 9 en-us FilerImagePlugin 2015-10-27 15:19:02.659674+00 2015-10-27 15:19:45.378386+00 392 165 2 0 006Y000M 417 12 en-us FilerLinkPlugin 2015-10-27 15:35:00.684411+00 2015-10-27 15:35:09.546125+00 392 165 2 0 006Y000P 609 0 de TextPlugin 2015-10-04 17:55:24.521891+00 2015-11-29 18:49:10.959015+00 \N 128 1 0 009W 423 17 en-us FilerLinkPlugin 2015-10-27 18:49:46.094514+00 2015-10-27 18:49:52.844627+00 392 165 2 0 006Y000V 605 0 de TextPlugin 2015-10-04 17:45:58.715573+00 2015-11-29 18:49:10.880241+00 \N 131 1 0 009S 453 1 en-us FilerLinkPlugin 2015-11-13 05:54:37.454544+00 2015-11-13 05:58:27.999383+00 449 170 2 0 00730004 456 4 en-us FilerLinkPlugin 2015-11-13 05:55:51.91029+00 2015-11-13 05:58:28.027145+00 449 170 2 0 00730007 459 7 en-us FilerLinkPlugin 2015-11-13 05:58:16.185562+00 2015-11-13 05:58:28.054721+00 449 170 2 0 0073000A 610 0 de TextPlugin 2015-10-04 17:56:28.318812+00 2015-11-29 18:49:10.978802+00 \N 129 1 0 009X 564 0 en-us TextPlugin 2015-10-04 16:59:46.792796+00 2015-11-29 14:57:13.359591+00 \N 101 1 0 008R 611 0 de TextPlugin 2015-10-04 17:56:10.917672+00 2015-11-29 18:49:10.997189+00 \N 130 1 0 009Y 560 0 en-us TextPlugin 2015-11-15 00:01:22.760865+00 2015-11-29 14:55:34.615626+00 \N 172 1 0 008N 161 0 en-us TextPlugin 2015-10-04 17:02:21.812903+00 2015-11-29 14:55:56.749124+00 \N 39 1 0 0010 505 0 en-us FilerImagePlugin 2015-11-15 14:47:03.450234+00 2015-11-15 14:47:03.458311+00 504 173 2 0 00860001 507 2 en-us FilerImagePlugin 2015-11-15 14:54:12.515102+00 2015-11-15 14:54:12.524394+00 504 173 2 0 00860003 551 0 de FilerLinkPlugin 2015-11-25 20:15:33.454257+00 2015-11-25 20:15:46.897861+00 537 184 2 0 008G0001 561 0 en-us TextPlugin 2015-10-04 16:56:41.534844+00 2015-11-29 14:57:13.295013+00 \N 98 1 0 008O 562 0 en-us TextPlugin 2015-10-04 16:56:13.254472+00 2015-11-29 14:57:13.317175+00 \N 99 1 0 008P 537 0 de TextPlugin 2015-11-25 07:06:27.105989+00 2015-11-25 20:18:11.193552+00 \N 184 1 1 008G 563 0 en-us TextPlugin 2015-10-04 17:00:03.379218+00 2015-11-29 14:57:13.33889+00 \N 100 1 0 008Q 565 0 en-us TextPlugin 2015-10-04 17:00:37.507873+00 2015-11-29 14:57:13.381272+00 \N 102 1 0 008S 566 0 en-us TextPlugin 2015-10-04 17:01:04.021107+00 2015-11-29 14:57:13.401304+00 \N 103 1 0 008T 567 0 en-us TextPlugin 2015-10-04 17:01:30.763349+00 2015-11-29 14:57:13.458298+00 \N 104 1 0 008U 669 0 en-us FilerLinkPlugin 2015-11-25 06:50:51.131351+00 2015-12-15 15:18:12.715189+00 668 185 2 0 00A50001 568 0 en-us TextPlugin 2015-10-04 17:01:51.549308+00 2015-11-29 14:57:13.486097+00 \N 105 1 0 008V 590 0 en-us TextPlugin 2015-10-04 18:06:26.767411+00 2015-11-29 18:48:33.74376+00 \N 143 1 0 009H 569 0 en-us TextPlugin 2015-10-04 17:02:21.812903+00 2015-11-29 14:57:13.50845+00 \N 106 1 0 008W 570 0 en-us TextPlugin 2015-10-04 17:45:58.715573+00 2015-11-29 14:57:26.36118+00 \N 131 1 0 008X 591 0 en-us TextPlugin 2015-10-04 18:06:49.275704+00 2015-11-29 18:48:33.763476+00 \N 140 1 0 009I 645 3 en-us FilerImagePlugin 2015-12-07 14:03:11.868625+00 2015-12-07 15:42:33.369596+00 640 195 2 0 00A40005 571 0 en-us TextPlugin 2015-10-04 17:46:20.372898+00 2015-11-29 14:57:26.38269+00 \N 125 1 0 008Y 670 1 en-us FilerLinkPlugin 2015-11-25 19:42:12.795471+00 2015-12-15 15:18:12.735375+00 668 185 2 0 00A50002 592 0 en-us TextPlugin 2015-10-04 18:10:28.015404+00 2015-11-29 18:48:33.786137+00 \N 141 1 0 009J 572 0 en-us TextPlugin 2015-10-04 17:46:40.251564+00 2015-11-29 14:57:26.402591+00 \N 126 1 0 008Z 671 2 en-us FilerLinkPlugin 2015-11-25 19:46:37.04755+00 2015-12-15 15:18:12.745066+00 668 185 2 0 00A50003 573 0 en-us TextPlugin 2015-10-04 17:47:04.566022+00 2015-11-29 14:57:26.422766+00 \N 127 1 0 0090 650 6 en-us FilerImagePlugin 2015-12-07 14:30:54.503529+00 2015-12-07 15:42:33.761666+00 640 195 2 0 00A4000A 593 0 en-us TextPlugin 2015-10-04 18:07:07.395899+00 2015-11-29 18:48:33.846763+00 \N 142 1 0 009K 574 0 en-us TextPlugin 2015-10-04 17:47:33.925637+00 2015-11-29 14:57:26.443985+00 \N 128 1 0 0091 668 0 en-us TextPlugin 2015-11-25 06:36:07.172082+00 2015-12-15 15:18:12.778063+00 \N 185 1 3 00A5 575 0 en-us TextPlugin 2015-10-04 17:47:50.728833+00 2015-11-29 14:57:26.465934+00 \N 129 1 0 0092 676 6 en-us FilerImagePlugin 2016-01-06 17:18:16.583585+00 2016-01-06 17:18:16.595737+00 508 174 2 0 00870008 576 0 en-us TextPlugin 2015-10-04 17:48:04.82884+00 2015-11-29 14:57:26.485572+00 \N 130 1 0 0093 683 0 en-us FilerImagePlugin 2016-01-14 15:01:23.621599+00 2016-01-14 15:01:47.754985+00 677 196 2 0 00A70001 686 3 en-us FilerImagePlugin 2016-01-14 15:55:49.266747+00 2016-01-14 15:56:28.869312+00 677 196 2 0 00A70004 689 6 en-us FilerImagePlugin 2016-01-14 16:35:07.669476+00 2016-01-14 16:35:32.395031+00 677 196 2 0 00A70007 695 2 en-us FilerImagePlugin 2016-01-15 15:36:19.569446+00 2016-01-15 15:36:45.27614+00 691 197 2 0 00A80003 698 5 en-us FilerImagePlugin 2016-01-15 15:37:45.663001+00 2016-01-15 15:38:02.560488+00 691 197 2 0 00A80006 701 7 en-us FilerLinkPlugin 2016-01-15 15:39:42.294183+00 2016-01-15 15:41:07.683981+00 691 197 2 0 00A80009 662 8 en-us FilerImagePlugin 2015-12-07 15:54:15.851671+00 2015-12-07 16:21:32.510121+00 640 195 2 0 00A4000M 666 12 en-us FilerImagePlugin 2015-12-07 16:01:31.687609+00 2015-12-07 16:21:32.552615+00 640 195 2 0 00A4000Q 691 0 en-us TextPlugin 2016-01-15 15:18:10.62021+00 2016-03-22 17:39:35.040554+00 \N 197 1 9 00A8 692 1 en-us FilerImagePlugin 2016-01-15 15:18:53.82954+00 2016-03-22 17:39:35.072247+00 \N 197 1 0 00AG 703 2 en-us FilerFolderPlugin 2016-03-22 17:33:10.360439+00 2016-03-22 17:39:35.101724+00 \N 197 1 0 00AA 704 3 en-us TeaserPlugin 2016-03-22 17:33:31.584233+00 2016-03-22 17:39:35.13472+00 \N 197 1 0 00AB 705 4 en-us BlogArchivePlugin 2016-03-22 17:35:44.594126+00 2016-03-22 17:39:35.173876+00 \N 197 1 0 00AC 706 5 en-us InheritPagePlaceholderPlugin 2016-03-22 17:36:29.069125+00 2016-03-22 17:39:35.238346+00 \N 197 1 0 00AD 707 6 en-us TextPlugin 2016-03-22 17:36:37.49401+00 2016-03-22 17:39:35.288607+00 \N 197 1 0 00AE 708 7 en-us BlogAuthorPostsPlugin 2016-03-22 17:38:34.608119+00 2016-03-22 17:39:35.337345+00 \N 197 1 0 00AF 709 \N en-us PlaceholderPlugin 2016-03-22 22:53:28.166519+00 2016-03-22 22:53:28.173422+00 \N 217 1 0 00AH 711 0 en-us FilerImagePlugin 2015-06-15 20:12:38.592686+00 2016-03-22 22:53:28.370534+00 710 219 2 0 00AI0001 712 1 en-us FilerImagePlugin 2015-06-15 20:12:59.845088+00 2016-03-22 22:53:28.433876+00 710 219 2 0 00AI0002 713 2 en-us FilerImagePlugin 2015-06-15 20:23:41.774831+00 2016-03-22 22:53:28.446862+00 710 219 2 0 00AI0003 710 0 en-us TextPlugin 2015-06-14 21:24:27.724016+00 2016-03-22 22:53:28.469383+00 \N 219 1 3 00AI \. -- -- Name: cms_cmsplugin_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_cmsplugin_id_seq', 713, true); -- -- Data for Name: cms_globalpagepermission; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_globalpagepermission (id, can_change, can_add, can_delete, can_change_advanced_settings, can_publish, can_change_permissions, can_move_page, can_view, can_recover_page, group_id, user_id) FROM stdin; \. -- -- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_globalpagepermission_id_seq', 1, false); -- -- Data for Name: cms_globalpagepermission_sites; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_globalpagepermission_sites (id, globalpagepermission_id, site_id) FROM stdin; \. -- -- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_globalpagepermission_sites_id_seq', 1, false); -- -- Data for Name: cms_page; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_page (id, created_by, changed_by, creation_date, changed_date, publication_date, publication_end_date, in_navigation, soft_root, reverse_id, navigation_extenders, template, login_required, limit_visibility_in_menu, is_home, application_urls, application_namespace, publisher_is_draft, languages, revision_id, xframe_options, parent_id, publisher_public_id, site_id, depth, numchild, path) FROM stdin; 7 ungleich ungleich 2015-10-04 18:05:38.15065+00 2016-01-29 19:50:41.450861+00 2015-10-04 23:27:38.405173+00 \N t f \N cms/digitalglarus/contact.html f \N f \N t en-us,de 0 0 5 13 1 2 0 00050002 12 ungleich ungleich 2015-10-04 23:27:26.914465+00 2015-11-29 18:49:11.001574+00 2015-10-04 23:27:26.906591+00 \N t f \N cms/digitalglarus/about.html f \N f \N f en-us,de 0 0 9 6 1 2 0 00060001 6 ungleich ungleich 2015-10-04 17:45:05.381054+00 2015-11-29 18:49:11.149388+00 2015-10-04 23:27:26.906591+00 \N t f \N cms/digitalglarus/about.html f \N f \N t en-us,de 0 0 5 12 1 2 0 00050001 9 ungleich ungleich 2015-10-04 22:19:37.058419+00 2015-11-29 18:48:17.897326+00 2015-10-04 22:19:37.050098+00 \N t t digital-glarus-page cms/digitalglarus/index.html f \N f \N f en-us,de 0 0 \N 5 1 1 4 0006 4 ungleich ungleich 2015-06-12 17:17:49.270519+00 2015-11-29 18:48:17.913709+00 2015-06-12 17:17:49.261484+00 \N f f \N cms/ungleichch/blog.html f \N t BlogApp djangocms_blog f en-us 0 0 \N 3 1 1 0 0004 13 ungleich ungleich 2015-10-04 23:27:38.415897+00 2015-11-29 18:48:33.851636+00 2015-10-04 23:27:38.405173+00 \N t f \N cms/digitalglarus/contact.html f \N f \N f en-us,de 0 0 9 7 1 2 0 00060002 14 ungleich ungleich 2015-10-04 23:27:52.90541+00 2015-11-29 18:48:45.187376+00 2015-10-04 23:27:52.894729+00 \N t f \N cms/digitalglarus/one_column.html f \N f \N f en-us,de 0 0 9 8 1 2 0 00060003 8 ungleich ungleich 2015-10-04 18:54:49.173916+00 2015-11-29 18:48:45.288396+00 2015-10-04 23:27:52.894729+00 \N t f \N cms/digitalglarus/one_column.html f \N f \N t en-us,de 0 0 5 14 1 2 0 00050003 3 ungleich ungleich 2015-06-12 17:05:57.028042+00 2016-02-28 15:12:18.423307+00 2015-06-12 17:17:49.261484+00 \N f f \N cms/ungleichch/blog.html f \N t BlogApp djangocms_blog t en-us,de 0 0 \N 4 1 1 0 0003 15 ungleich ungleich 2015-11-25 06:19:53.576477+00 2016-02-28 15:13:01.724826+00 2015-11-25 07:04:21.089598+00 \N f f \N \N cms/digitalglarus/one_column.html f \N f \N \N t en-us,de 0 0 5 16 1 2 0 00050004 18 ungleich ungleich 2016-02-28 15:12:18.253391+00 2016-02-28 15:12:18.408831+00 \N \N t f \N \N INHERIT f \N f \N \N t en-us 0 0 \N \N 1 1 0 0007 5 ungleich ungleich 2015-10-04 16:53:42.17135+00 2015-11-29 18:48:18.065597+00 2015-10-04 22:19:37.050098+00 \N t t digital-glarus-page cms/digitalglarus/index.html f \N f \N t en-us,de 0 0 \N 9 1 1 5 0005 16 ungleich ungleich 2015-11-25 07:04:21.100041+00 2016-02-28 15:13:01.784425+00 2015-11-25 07:04:21.089598+00 \N f f \N \N cms/digitalglarus/one_column.html f \N f \N \N f en-us,de 0 0 9 15 1 2 0 00060004 \. -- -- Name: cms_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_page_id_seq', 18, true); -- -- Data for Name: cms_page_placeholders; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_page_placeholders (id, page_id, placeholder_id) FROM stdin; 3 3 6 4 4 8 5 5 31 6 5 32 7 5 33 8 5 34 9 5 35 10 5 36 11 5 37 12 5 38 13 5 39 32 6 58 33 6 59 34 6 60 35 6 61 36 6 62 37 6 63 38 6 64 39 6 65 40 6 66 41 6 67 42 6 68 43 6 69 44 6 70 45 6 71 46 6 72 47 7 73 48 7 74 49 7 75 50 7 76 51 7 77 52 7 78 53 7 79 54 7 80 55 7 81 56 7 82 57 7 83 58 7 84 59 8 85 60 8 86 61 8 87 62 8 88 63 8 89 64 8 90 65 8 91 66 8 92 67 8 93 68 8 94 69 8 95 70 8 96 71 8 97 72 9 98 73 9 99 74 9 100 75 9 101 76 9 102 77 9 103 78 9 104 79 9 105 80 9 106 99 12 125 100 12 126 101 12 127 102 12 128 103 12 129 104 12 130 105 12 131 106 12 132 107 12 133 108 12 134 109 12 135 110 12 136 111 12 137 112 12 138 113 12 139 114 13 140 115 13 141 116 13 142 117 13 143 118 13 144 119 13 145 120 13 146 121 13 147 122 13 148 123 13 149 124 13 150 125 13 151 126 14 152 127 14 153 128 14 154 129 14 155 130 14 156 131 14 160 132 14 161 133 14 162 134 14 163 135 14 164 136 14 157 137 14 158 138 14 159 139 8 171 140 14 172 141 15 175 142 15 176 143 15 177 144 15 178 145 15 179 146 15 180 147 15 181 148 15 182 149 15 183 150 15 184 151 16 185 152 16 186 153 16 192 154 16 193 155 16 194 156 16 187 157 16 188 158 16 189 159 16 190 160 16 191 170 18 207 171 18 208 172 18 209 173 18 210 174 18 211 175 18 212 176 18 213 177 18 214 178 18 215 179 18 218 \. -- -- Name: cms_page_placeholders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_page_placeholders_id_seq', 179, true); -- -- Data for Name: cms_pagepermission; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_pagepermission (id, can_change, can_add, can_delete, can_change_advanced_settings, can_publish, can_change_permissions, can_move_page, can_view, grant_on, group_id, page_id, user_id) FROM stdin; \. -- -- Name: cms_pagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_pagepermission_id_seq', 1, false); -- -- Data for Name: cms_pageuser; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_pageuser (user_ptr_id, created_by_id) FROM stdin; \. -- -- Data for Name: cms_pageusergroup; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_pageusergroup (group_ptr_id, created_by_id) FROM stdin; \. -- -- Data for Name: cms_placeholder; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_placeholder (id, slot, default_width) FROM stdin; 1 clipboard \N 2 footer_copyright \N 3 footer_copyright \N 6 page_content \N 7 post_content \N 8 page_content \N 9 post_content \N 10 post_content \N 11 post_content \N 12 post_content \N 13 post_content \N 14 post_content \N 15 post_content \N 16 post_content \N 17 clipboard \N 18 post_content \N 19 post_content \N 20 post_content \N 21 post_content \N 22 post_content \N 23 post_content \N 24 post_content \N 25 post_content \N 26 post_content \N 27 post_content \N 28 post_content \N 29 post_content \N 30 post_content \N 31 digital_glarus_build_a_tech_valley \N 32 digital_glarus_build_a_tech_valley_content \N 33 digital_glarus_a_new_area \N 34 digital_glarus_a_new_area_content \N 35 digital_glarus_why_be_interested \N 36 digital_glarus_why_be_interested_content \N 37 digital_glarus_where_we_are \N 38 digital_glarus_where_we_are_content \N 39 digital_glarus_legend \N 58 digital_glarus_build_a_tech_valley \N 59 digital_glarus_build_a_tech_valley_content \N 60 digital_glarus_a_new_area \N 61 digital_glarus_a_new_area_content \N 62 digital_glarus_why_be_interested \N 63 digital_glarus_why_be_interested_content \N 64 digital_glarus_where_we_are \N 65 digital_glarus_where_we_are_content \N 66 digital_glarus_legend \N 67 digitalglarus_why_us \N 68 digitalglarus_why_us_content \N 69 digitalglarus_why_glarus \N 70 digitalglarus_why_glarus_beautiful_landscape \N 71 digitalglarus_why_glarus_affordable_price \N 72 digitalglarus_why_glarus_direct_connection_zurich \N 73 digital_glarus_build_a_tech_valley \N 74 digital_glarus_build_a_tech_valley_content \N 75 digital_glarus_a_new_area \N 76 digital_glarus_a_new_area_content \N 77 digital_glarus_why_be_interested \N 78 digital_glarus_why_be_interested_content \N 79 digital_glarus_where_we_are \N 80 digital_glarus_where_we_are_content \N 81 digital_glarus_legend \N 82 digital_glarus_contact \N 83 digital_glarus_contact_content \N 84 digital_glarus_contact_information \N 85 digital_glarus_build_a_tech_valley \N 86 digital_glarus_build_a_tech_valley_content \N 87 digital_glarus_a_new_area \N 88 digital_glarus_a_new_area_content \N 89 digital_glarus_why_be_interested \N 90 digital_glarus_why_be_interested_content \N 91 digital_glarus_where_we_are \N 92 digital_glarus_where_we_are_content \N 93 digital_glarus_legend \N 94 digitalglarus_why_glarus \N 95 digitalglarus_why_glarus_beautiful_landscape \N 96 digitalglarus_why_glarus_affordable_price \N 97 digitalglarus_why_glarus_direct_connection_zurich \N 98 digital_glarus_build_a_tech_valley \N 99 digital_glarus_build_a_tech_valley_content \N 100 digital_glarus_a_new_area \N 101 digital_glarus_a_new_area_content \N 102 digital_glarus_why_be_interested \N 103 digital_glarus_why_be_interested_content \N 104 digital_glarus_where_we_are \N 105 digital_glarus_where_we_are_content \N 106 digital_glarus_legend \N 125 digitalglarus_why_us \N 126 digitalglarus_why_us_content \N 127 digitalglarus_why_glarus \N 128 digitalglarus_why_glarus_beautiful_landscape \N 129 digitalglarus_why_glarus_affordable_price \N 130 digitalglarus_why_glarus_direct_connection_zurich \N 131 digital_glarus_legend \N 132 digital_glarus_build_a_tech_valley \N 133 digital_glarus_build_a_tech_valley_content \N 134 digital_glarus_a_new_area \N 135 digital_glarus_a_new_area_content \N 136 digital_glarus_why_be_interested \N 137 digital_glarus_why_be_interested_content \N 138 digital_glarus_where_we_are \N 139 digital_glarus_where_we_are_content \N 140 digital_glarus_contact \N 141 digital_glarus_contact_content \N 142 digital_glarus_contact_information \N 143 digital_glarus_legend \N 144 digital_glarus_build_a_tech_valley \N 145 digital_glarus_build_a_tech_valley_content \N 146 digital_glarus_a_new_area \N 147 digital_glarus_a_new_area_content \N 148 digital_glarus_why_be_interested \N 149 digital_glarus_why_be_interested_content \N 150 digital_glarus_where_we_are \N 151 digital_glarus_where_we_are_content \N 152 digitalglarus_why_glarus \N 153 digitalglarus_why_glarus_beautiful_landscape \N 154 digitalglarus_why_glarus_affordable_price \N 155 digitalglarus_why_glarus_direct_connection_zurich \N 156 digital_glarus_legend \N 157 digital_glarus_build_a_tech_valley \N 158 digital_glarus_build_a_tech_valley_content \N 159 digital_glarus_a_new_area \N 160 digital_glarus_a_new_area_content \N 161 digital_glarus_why_be_interested \N 162 digital_glarus_why_be_interested_content \N 163 digital_glarus_where_we_are \N 164 digital_glarus_where_we_are_content \N 165 post_content \N 166 post_content \N 167 post_content \N 168 post_content \N 169 post_content \N 170 post_content \N 171 digitalglarus_why_us \N 172 digitalglarus_why_us \N 173 post_content \N 174 post_content \N 175 digital_glarus_build_a_tech_valley \N 176 digital_glarus_build_a_tech_valley_content \N 177 digital_glarus_a_new_area \N 178 digital_glarus_a_new_area_content \N 179 digital_glarus_why_be_interested \N 180 digital_glarus_why_be_interested_content \N 181 digital_glarus_where_we_are \N 182 digital_glarus_where_we_are_content \N 183 digital_glarus_legend \N 184 digitalglarus_why_us \N 185 digitalglarus_why_us \N 186 digital_glarus_legend \N 187 digital_glarus_build_a_tech_valley \N 188 digital_glarus_build_a_tech_valley_content \N 189 digital_glarus_a_new_area \N 190 digital_glarus_a_new_area_content \N 191 digital_glarus_why_be_interested \N 192 digital_glarus_why_be_interested_content \N 193 digital_glarus_where_we_are \N 194 digital_glarus_where_we_are_content \N 195 post_content \N 196 post_content \N 197 post_content \N 207 digital_glarus_build_a_tech_valley \N 208 digital_glarus_build_a_tech_valley_content \N 209 digital_glarus_a_new_area \N 210 digital_glarus_a_new_area_content \N 211 digital_glarus_why_be_interested \N 212 digital_glarus_why_be_interested_content \N 213 digital_glarus_where_we_are \N 214 digital_glarus_where_we_are_content \N 215 digital_glarus_legend \N 216 clipboard \N 217 clipboard \N 218 page_content \N 219 clipboard \N \. -- -- Name: cms_placeholder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_placeholder_id_seq', 219, true); -- -- Data for Name: cms_placeholderreference; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_placeholderreference (cmsplugin_ptr_id, name, placeholder_ref_id) FROM stdin; 709 Content 219 \. -- -- Data for Name: cms_staticplaceholder; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_staticplaceholder (id, name, code, dirty, creation_method, draft_id, public_id, site_id) FROM stdin; 1 footer_copyright footer_copyright t template 2 3 \N \. -- -- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_staticplaceholder_id_seq', 1, true); -- -- Data for Name: cms_title; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_title (id, language, title, page_title, menu_title, meta_description, slug, path, has_url_overwrite, redirect, creation_date, published, publisher_is_draft, publisher_state, page_id, publisher_public_id) FROM stdin; 17 en-us Digital Glarus - About Digital Glarus - About about The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13 digital-glarus-about digitalglarus-home/digital-glarus-about f 2015-10-04 17:45:05.433404+00 t f 0 12 7 7 en-us Digital Glarus - About Digital Glarus - About about The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13 digital-glarus-about digitalglarus-home/digital-glarus-about f 2015-10-04 17:45:05.433404+00 t t 0 6 17 23 de blog ungleich blog blog on OpenSource, technology, our passion and interests... blog f \N 2015-11-04 21:54:05.650107+00 f t 1 3 \N 9 en-us Digital Glarus - Contact Digital Glarus - Contact contact Contact DIGITAL GLARUS digital-glarus-contact digitalglarus-home/digital-glarus-contact f 2015-10-04 18:05:38.201108+00 t t 1 7 18 19 en-us Digital Glarus - Crowdfunding Digital Glarus - Crowdfunding crowdfunding Digital Glarus - Crowdfunding digital-glarus-crowdfunding digitalglarus t 2015-10-04 18:54:49.222459+00 t f 0 14 11 11 en-us Digital Glarus - Crowdfunding Digital Glarus - Crowdfunding crowdfunding Digital Glarus - Crowdfunding digital-glarus-crowdfunding digitalglarus t 2015-10-04 18:54:49.222459+00 t t 0 8 19 6 de Digital Glarus - Startseite Digital Glarus - Startseite Startseite DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ digitalglarus-startseite digitalglarus-startseite f 2015-10-04 17:20:12.951092+00 t t 0 5 14 13 en-us Digital Glarus - Welcome Digital Glarus home BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND digitalglarus-home digitalglarus-home f 2015-10-04 16:53:42.348209+00 t f 0 9 5 5 en-us Digital Glarus - Welcome Digital Glarus home BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND digitalglarus-home digitalglarus-home f 2015-10-04 16:53:42.348209+00 t t 0 5 13 18 en-us Digital Glarus - Contact Digital Glarus - Contact contact Contact DIGITAL GLARUS digital-glarus-contact digitalglarus-home/digital-glarus-contact f 2015-10-04 18:05:38.201108+00 t f 0 13 9 21 de Digital Glarus - Kontakt Digital Glarus - Kontakt Kontakt Digital Glarus - Kontakt digital-glarus-kontakt digitalglarus-startseite/digital-glarus-kontakt f \N 2015-10-04 18:14:07.928851+00 t f 0 13 10 10 de Digital Glarus - Kontakt Digital Glarus - Kontakt Kontakt Digital Glarus - Kontakt digital-glarus-kontakt digitalglarus-startseite/digital-glarus-kontakt f \N 2015-10-04 18:14:07.928851+00 t t 0 7 21 14 de Digital Glarus - Startseite Digital Glarus - Startseite Startseite DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ digitalglarus-startseite digitalglarus-startseite f 2015-10-04 17:20:12.951092+00 t f 0 9 6 22 de Digital Glarus - Crowdfunding Digital Glarus - Crowdfunding Crowdfunding Digital Glarus - Crowdfunding digital-glarus-crowdfunding digitalglarus-startseite/digital-glarus-crowdfunding f \N 2015-10-04 19:49:28.161298+00 t f 0 14 12 12 de Digital Glarus - Crowdfunding Digital Glarus - Crowdfunding Crowdfunding Digital Glarus - Crowdfunding digital-glarus-crowdfunding digitalglarus-startseite/digital-glarus-crowdfunding f \N 2015-10-04 19:49:28.161298+00 t t 0 8 22 20 de Digital Glarus - Über uns Digital Glarus - Über uns Über uns DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ digital-glarus-uber-uns digitalglarus-startseite/digital-glarus-uber-uns f \N 2015-10-04 17:54:39.076803+00 t f 0 12 8 8 de Digital Glarus - Über uns Digital Glarus - Über uns Über uns DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ digital-glarus-uber-uns digitalglarus-startseite/digital-glarus-uber-uns f \N 2015-10-04 17:54:39.076803+00 t t 0 6 20 4 en-us Blog ungleich Blog Blog on OpenSource, technology, our passion and interests... blog blog t 2015-06-12 17:05:57.066362+00 t f 0 4 3 3 en-us Blog ungleich Blog Blog on OpenSource, technology, our passion and interests... blog blog t 2015-06-12 17:05:57.066362+00 t t 0 3 4 29 en-us events Events Events events events events f \N 2016-02-28 15:12:18.340514+00 f t 1 18 \N 26 de Let's Jazz in Glarus Jazz in Glarus! jazz jazz, glarus, coworking lets-jazz-glarus digitalglarus-startseite/lets-jazz-glarus f \N 2015-11-25 07:05:18.587715+00 t t 0 15 27 24 en-us Let's Jazz in Glarus! Jazz in Glarus! jazz lets-jazz-glarus digitalglarus-home/lets-jazz-glarus f \N 2015-11-25 06:19:53.724038+00 t t 0 15 25 27 de Let's Jazz in Glarus Jazz in Glarus! jazz jazz, glarus, coworking lets-jazz-glarus digitalglarus-startseite/lets-jazz-glarus f \N 2015-11-25 07:05:18.587715+00 t f 0 16 26 25 en-us Let's Jazz in Glarus! Jazz in Glarus! jazz lets-jazz-glarus digitalglarus-home/lets-jazz-glarus f \N 2015-11-25 06:19:53.724038+00 t f 0 16 24 \. -- -- Name: cms_title_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_title_id_seq', 29, true); -- -- Data for Name: cms_usersettings; Type: TABLE DATA; Schema: public; Owner: app -- COPY cms_usersettings (id, language, clipboard_id, user_id) FROM stdin; 1 en-us 1 1 2 en-us 17 3 3 en-us 216 4 4 en-us 217 5 \. -- -- Name: cms_usersettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cms_usersettings_id_seq', 4, true); -- -- Data for Name: cmsplugin_filer_file_filerfile; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_file_filerfile (cmsplugin_ptr_id, title, target_blank, style, file_id) FROM stdin; \. -- -- Data for Name: cmsplugin_filer_folder_filerfolder; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_folder_filerfolder (cmsplugin_ptr_id, title, style, folder_id) FROM stdin; \. -- -- Data for Name: cmsplugin_filer_image_filerimage; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_image_filerimage (cmsplugin_ptr_id, style, caption_text, image_url, alt_text, use_original_image, use_autoscale, width, height, crop, upscale, alignment, free_link, original_link, description, target_blank, file_link_id, image_id, page_link_id, thumbnail_option_id) FROM stdin; 17 f f \N \N t t \N f f \N 13 \N \N 18 f f \N \N t t \N f f \N 11 \N \N 19 f f \N \N t t \N f f \N 12 \N \N 38 f f \N \N t t \N f f \N 19 \N \N 39 f f \N \N t t \N f f \N 21 \N \N 40 f f \N \N t t \N f f \N 22 \N \N 49 f f \N \N t t \N f f \N 24 \N \N 50 f f \N \N t t \N f f \N 25 \N \N 51 f f \N \N t t \N f f \N 26 \N \N 52 f f \N \N t t \N f f \N 27 \N \N 55 f f \N \N t t \N f f \N 29 \N \N 56 f f \N \N t t \N f f \N 30 \N \N 57 f f \N \N t t \N f f \N 31 \N \N 82 f f \N \N t t \N f f \N 35 \N \N 84 t f \N \N t t \N f f \N 37 \N \N 83 f f \N \N t t \N f f \N 38 \N \N 93 f f \N \N t t \N f f \N 39 \N \N 644 f f \N \N t t \N f f \N 163 \N \N 645 f f \N \N t t \N f f \N 165 \N \N 97 f f \N \N t t \N f f \N 42 \N \N 98 f f \N \N t t \N f f \N 44 \N \N 99 f f \N \N t t \N f f \N 45 \N \N 109 f f \N \N t t \N f f \N 50 \N \N 107 f f \N \N t t \N f f \N 48 \N \N 106 f f \N \N t t \N f f \N 53 \N \N 647 f f \N \N t t \N f f \N 166 \N \N 112 f f \N \N t t \N f f \N 55 \N \N 124 f f \N \N t t \N f f \N 61 \N \N 126 f f \N \N t t \N f f \N 62 \N \N 129 f f \N \N t t \N f f \N 71 \N \N 130 f f \N \N t t \N http://www.digitalglarus.ch f f \N 72 \N \N 135 f f \N \N t t \N f f \N 73 \N \N 136 f f \N \N t t \N f f \N 74 \N \N 139 f f \N \N t t \N f f \N 78 \N \N 143 f f \N \N t t \N f f \N 81 \N \N 140 Getting ready for welcoming the audience f f \N \N t t \N f f \N 79 \N \N 142 Nico explaining what is a coworking space f f \N \N t t \N f f \N 80 \N \N 147 f f \N \N t t \N http://www.100-days.net/de/projekt/start-digital-glarus f f \N 72 \N \N 648 f f \N \N t t \N f f \N 167 \N \N 148 f f 600 \N t t \N https://blog.ungleich.ch/blog/2015/09/24/digital-glarus-radio-german/ f f \N 71 \N \N 650 f f \N \N t t \N f f \N 169 \N \N 393 f f \N \N t t \N f f \N 85 \N \N 394 f f \N \N t t \N f f \N 86 \N \N 395 f f \N \N t t \N f f \N 88 \N \N 396 f f \N \N t t \N f f \N 87 \N \N 397 f f \N \N t t \N f f \N 89 \N \N 400 f f \N \N t t \N f f \N 91 \N \N 411 f f \N \N t t \N f f \N 92 \N \N 413 f f \N \N t t \N f f \N 93 \N \N 414 f f \N \N t t \N f f \N 94 \N \N 415 f f \N \N t t \N f f \N 96 \N \N 416 f f \N \N t t \N f f \N 97 \N \N 419 f f \N \N t t \N f f \N 98 \N \N 422 f f \N \N t t \N f f \N 99 \N \N 399 f f \N \N t t \N f f \N 90 \N \N 437 f f \N \N t t \N f f \N 118 \N \N 440 f f \N \N t t \N f f \N 119 \N \N 441 f f \N \N t t \N f f \N 120 \N \N 442 f f \N \N t t \N f f \N 121 \N \N 445 f f \N \N t t \N f f \N 124 \N \N 448 f f \N \N t t \N f f \N 148 \N \N 509 f f \N \N t t \N f f \N 126 \N \N 513 f f \N \N t t \N http://www.100-days.net/en/projekt/start-digital-glarus f f \N 72 \N \N 652 f f \N \N t t \N f f \N 168 \N \N 662 f f \N \N t t \N f f \N 171 \N \N 666 f f \N \N t t \N http://www.100-days.net/de/projekt/start-digital-glarus f f \N 72 \N \N 642 f f \N \N t t \N f f \N 173 \N \N 683 f f \N \N t t \N f f \N 176 \N \N 684 f f \N \N t t \N f f \N 180 \N \N 685 f f \N \N t t \N f f \N 181 \N \N 686 f f \N \N t t \N f f \N 187 \N \N 687 f f \N \N t t \N f f \N 178 \N \N 689 f f \N \N t t \N f f \N 183 \N \N 690 f f \N \N t t \N f f \N 188 \N \N 693 f f \N \N t t \N f f \N 178 \N \N 694 f f \N \N t t \N f f \N 188 \N \N 695 f f \N \N t t \N f f \N 176 \N \N 696 f f \N \N t t \N f f \N 180 \N \N 697 f f \N \N t t \N f f \N 181 \N \N 698 f f \N \N t t \N f f \N 187 \N \N 699 f f \N \N t t \N f f \N 185 \N \N 711 f f \N \N t t \N f f \N 19 \N \N 712 f f \N \N t t \N f f \N 21 \N \N 713 f f \N \N t t \N f f \N 22 \N \N \. -- -- Data for Name: cmsplugin_filer_image_thumbnailoption; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_image_thumbnailoption (id, name, width, height, crop, upscale) FROM stdin; 1 100x100 100 100 t t \. -- -- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('cmsplugin_filer_image_thumbnailoption_id_seq', 1, true); -- -- Data for Name: cmsplugin_filer_link_filerlinkplugin; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_link_filerlinkplugin (cmsplugin_ptr_id, name, url, mailto, link_style, new_window, file_id, page_link_id) FROM stdin; 8 DjangoCMS blog https://github.com/nephila/djangocms-blog t \N \N 14 OpenNebulaConf 2015. http://2015.opennebulaconf.com/ t \N \N 24 rails-hosting.ch http://rails-hosting.ch t \N \N 25 OpenNebula http://opennebula.org f \N \N 26 Ceph http://ceph.com/ f \N \N 27 GlusterFS http://www.gluster.org/ f \N \N 29 Nginx http://nginx.org/ f \N \N 30 PostgreSQL https://www.postgresql.org/ f \N \N 31 DjangoCMS Blog https://github.com/nephila/djangocms-blog f \N \N 32 DjangoCMS http://django-cms.org/ f \N \N 33 uwsgi http://uwsgi-docs.readthedocs.org/en/latest/ f \N \N 34 Django https://www.djangoproject.com/ f \N \N 28 cdist http://www.nico.schottelius.org/software/cdist/ f \N \N 42 OpenCloudDay 2015 in Bern http://ch-open.ch/events/aktuelle-events/160615-open-cloud-day-2015/ f \N \N 43 @Jens https://twitter.com/jcfischer f \N \N 44 Digital Glarus https://digitalglarus.ungleich.ch f \N \N 45 follow us on Twitter https://twitter.com/ungleich f \N \N 46 /ch/open http://www.ch-open.ch/ f \N \N 47 @ICCLab https://twitter.com/icc_lab f \N \N 58 Digital Glarus https://digitalglarus.ungleich.ch f \N \N 60 PostgreSQL Europe https://www.postgresql.eu/ f \N \N 62 Digital Glarus https://digitalglarus.ungleich.ch f \N \N 63 Makers im Zigerschlitz http://www.meetup.com/Makers-im-Zigerschlitz/events/223111211/ f \N \N 64 follow us on Twitter https://twitter.com/ungleich f \N \N 66 Co-Working Space https://en.wikipedia.org/wiki/Coworking f \N \N 67 Digital Glarus https://digitalglarus.ungleich.ch/ f \N \N 68 @ungleich https://twitter.com/ungleich f \N \N 69 fill out the form https://docs.google.com/forms/d/1S2pQ2LDdRi2zbYHeBlusR5SoQjFy0HlHPTKgNKYIGak/viewform?usp=send_form f \N \N 70 fill out the project form https://docs.google.com/forms/d/1S2pQ2LDdRi2zbYHeBlusR5SoQjFy0HlHPTKgNKYIGak/viewform?usp=send_form f \N \N 423 Digital Glarus stickers http://www.digitalglarus.ch f \N \N 73 ungleich http://www.ungleich.ch f \N \N 74 nginx location documentation http://nginx.org/en/docs/http/ngx_http_core_module.html#location f \N \N 75 django-hosting.ch http://django-hosting.ch f \N \N 76 digitalglarus http://digitalglarus.ungleich.ch f \N \N 77 django-hosting.ungleich.ch django-hosting.ungleich.ch f \N \N 426 ungleich goes to Barcelona! https://blog.ungleich.ch/en-us/blog/2015/05/12/opennebulaconf-2015/ f \N \N 78 should usually be avoided http://wiki.nginx.org/IfIsEvil f \N \N 79 rails-hosting.ch http://rails-hosting.ch f \N \N 80 Twitter https://twitter.com/ungleich f \N \N 87 recently published some details of our nginx configuration https://blog.ungleich.ch/blog/2015/08/09/ungleich-nginx-configuration-explained/ f \N \N 88 from the previous article https://blog.ungleich.ch/blog/2015/08/09/ungleich-nginx-configuration-explained/ f \N \N 90 ungleich.ch http://www.ungleich.ch f \N \N 89 digitalglarus.ch http://digitalglarus.ch f \N \N 101 follow us on Twitter https://twitter.com/ungleich f \N \N 102 Digital Glarus http://www.digitalglarus.ch f \N \N 104 be careful with it! https://www.youtube.com/watch?v=UTBsm0LzSP0 f \N \N 105 via Twitter https://twitter.com/ungleich f \N \N 110 © r.wiedenmeier http://www.wiedenmeier.ch/wordpress/2013/10/22/diesbach-fotos/ f \N \N 117 here http://www.nico.schottelius.org/software/cdist/man/latest/ f \N \N 118 man7/cdist-best-practice http://www.nico.schottelius.org/software/cdist/man/latest/man7/cdist-best-practice.html f \N \N 119 github page https://github.com/telmich/cdist f \N \N 128 Radiocentral http://radiocentral.ch/ f \N \N 133 Visit Digital Glarus crowdfunding http://www.100-days.net/en/projekt/start-digital-glarus f \N \N 144 Mr.Christian Zweifel https://twitter.com/chriglzweifel f \N \N 145 Radiocentral http://radiocentral.ch/ f \N \N 146 our previous post. https://blog.ungleich.ch/blog/2015/09/24/digital-glarus-radio-german/ f \N \N 152 testiaeiaei f 75 \N 417 OpenNebula workshop http://www.meetup.com/Digital-Glarus-Business-Technology/events/225093212/ f \N \N 418 Digital Chalet Schwanden https://digitalglarus.ungleich.ch/en-us/digitalglarus/ f \N \N 421 Barrio Gotico https://www.google.ch/search?q=barrio+gotico&espv=2&biw=1074&bih=634&site=webhp&source=lnms&tbm=isch&sa=X&ved=0CAYQ_AUoAWoVChMIya3Y9P7iyAIVydcaCh2Yswba f \N \N 429 melde Dich via Meetup an http://www.meetup.com/Digital-Glarus-Business-Technology/events/226479181/ f \N \N 439 meetup http://www.meetup.com/Digital-Glarus-Business-Technology/events/225093212/ f \N \N 452 wedoino http://www.wedoino.ch f \N \N 453 wissenstausch.ch http://www.wissenstausch.ch f \N \N 454 www.digitalglarus.ch http://www.digitalglarus.ch f \N \N 455 ungleich http://www.ungleich.ch f \N \N 456 @wedoino https://twitter.com/wedoino f \N \N 457 https://www.facebook.com/wissenstausch/ https://www.facebook.com/wissenstausch/ f \N \N 458 @DigitalGlarus https://twitter.com/DigitalGlarus f \N \N 459 https://www.facebook.com/digitalglarus/ https://www.facebook.com/digitalglarus/ f \N \N 510 meetup http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/ f \N \N 512 band http://fivepasteight.ch/ f \N \N 533 100-days.net/start-digital-glarus http://100-days.net/start-digital-glarus f \N \N 542 Jazzband FivePastEight https://www.facebook.com/fivepasteight/photos_stream f \N \N 544 meetup http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/ f \N \N 551 meetup.com http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/ f \N \N 641 previous post https://blog.ungleich.ch/en-us/blog/2015/11/19/jazz-digital-glarus/ f \N \N 663 crowdfunding project http://www.100-days.net/de/projekt/start-digital-glarus f \N \N 664 facebook https://www.facebook.com/fivepasteight/?ref=profile f \N \N 665 website http://fivepasteight.ch/ f \N \N 667 Our crowdfunding campaign http://www.100-days.net/de/projekt/start-digital-glarus f \N \N 669 100-days.net/start-digital-glarus http://100-days.net/start-digital-glarus f \N \N 670 Jazzband FivePastEight https://www.facebook.com/fivepasteight/photos_stream f \N \N 671 meetup http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/ f \N \N 673 meetup.com http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/ f \N \N 688 website https://digitalglarus.ungleich.ch/en-us/digitalglarus/ f \N \N 701 info@digitalglarus.ch info@digitalglarus.ch f \N \N 702 Webseite https://digitalglarus.ungleich.ch/en-us/digitalglarus/ f \N \N \. -- -- Data for Name: cmsplugin_filer_teaser_filerteaser; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_teaser_filerteaser (cmsplugin_ptr_id, title, image_url, style, use_autoscale, width, height, free_link, description, target_blank, image_id, page_link_id) FROM stdin; \. -- -- Data for Name: cmsplugin_filer_video_filervideo; Type: TABLE DATA; Schema: public; Owner: app -- COPY cmsplugin_filer_video_filervideo (cmsplugin_ptr_id, movie_url, width, height, auto_play, auto_hide, fullscreen, loop, bgcolor, textcolor, seekbarcolor, seekbarbgcolor, loadingbarcolor, buttonoutcolor, buttonovercolor, buttonhighlightcolor, image_id, movie_id) FROM stdin; \. -- -- Data for Name: digitalglarus_message; Type: TABLE DATA; Schema: public; Owner: app -- COPY digitalglarus_message (id, name, email, phone_number, message, received_date) FROM stdin; 1 Jenny Hans hans.jenny@goldenline.ch +41794551338 Ich bin zwar bereits 73 Jahre alt, war aber in meinem aktiven Berufsleben bis zu meinem 63. Lebensjahr Informatikleiter und Logistikchef der Stadtpolizei Winterthur und begleitete unzählige kleine und grosse Informatik-Projekte als Projektleiter. Logisch hat sich die digitale Welt mit unvermindertem Tempo verändert und wer nicht am Ball bleibt wird schnell vom "Ball" getrennt. Die Arbeit des Projektleiters hat sich jedoch nicht wesentlich geändert. Während für den Projektleiter spezifisches und detailliertes Informatik-Fachwissen eher in den Hintergrund tritt, ist Sozialkompetenz und die Fähigkeit Probleme ganzheitlich, zielorientiert und gemeinsam mit der Projektgruppe zu lösen im Vordergrund geblieben.\r\nDas "Flugblatt" bzw. die Einladung zur Podiumsdiskussion (in deutscher Sprache) hat mich als gebürtiger Glarner und "Heimkehrer" sofort angesprochen. Ich bin nach 40 Jahren "in der Fremde" und als "Wiederkehrer" vom Slogan "Glarner Land (Glarus Süd) wiederbeleben" überzeugt.\r\nWas mich sofort gestört hat ist, dass die Homepage ausnahmslos in der englischen Sprache verfasst ist und somit Personen, die die englischen Sprache nicht, oder nur teilweise beherrschen, ausgeschlossen werden.\r\nMit freundlichen Grüssen, Hans Jenny\r\n 2015-09-08 18:27:31.160152+00 2 Fernando Reust reust@sbp.ch +41556409168 Hallo Nico\r\nWie tel vorher besprochen, zur Info www.sbp.ch\r\nBis bald\r\nHerzlichst\r\nFernando 2015-09-17 15:44:28.127849+00 3 Luchsinger Hermann luchsinger@alp-consulting.ch 079 421 36 56 guten tag nico Schottelius\r\nbitte gelegentlich um telefonische kontaktaufnahme, würde gerne ein paar gedanken mit ihnen tauschen.\r\nmit freundlichem gruss\r\nhermann luchsinger 2015-10-06 08:14:31.759356+00 6 felizita felizita@gmx.ch - Hallo Zusammen\r\n\r\nÜber 100 Days fand ich euer Projekt mit dem Co-Working Space im Glarus. Gerne würde ich ein solches Space in Zürich eröffnen und suche nach Kontakten, die sich allenfalls gerne über Ideen, Visionen und Erfahrungen diesbezüglich unterhalten möchte.\r\n\r\nSolltet ihr Interesse haben, freue ich mich sehr über eine Rückmeldung.\r\n\r\nLiebe Grüsse aus Zürich\r\nFelizita 2015-11-27 15:09:19.89684+00 \. -- -- Name: digitalglarus_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('digitalglarus_message_id_seq', 12, true); -- -- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; 1 2015-06-12 16:53:01.623776+00 1 Home 1 11 1 2 2015-06-12 17:05:57.105218+00 3 Blog 1 11 1 3 2015-06-12 17:06:25.68614+00 3 Blog 2 Changed application_urls, application_namespace and xframe_options. 11 1 4 2015-06-12 17:07:21.654196+00 1 announcement 1 51 1 5 2015-06-12 17:10:34.583595+00 1 ungleich Blog launched 1 53 1 6 2015-06-12 17:14:13.032533+00 3 Blog 2 Changed template and xframe_options. 11 1 7 2015-06-12 17:14:40.886446+00 1 ungleich blog launched 2 Changed title and tags. 53 1 8 2015-06-12 17:17:49.46888+00 3 Blog 2 11 1 9 2015-06-12 17:21:50.285698+00 2 opennebula 1 51 1 10 2015-06-12 17:23:37.226156+00 2 OpenNebulaConf 2015 1 53 1 11 2015-06-12 17:24:42.572774+00 1 ungleich.ch 2 Changed domain and name. 7 1 12 2015-06-12 17:25:07.868424+00 1 blog.ungleich.ch 2 Changed domain. 7 1 13 2015-06-12 17:26:30.363273+00 2 OpenNebulaConf 2015 2 Changed abstract and tags. 53 1 14 2015-06-12 17:28:56.127053+00 2 OpenNebulaConf 2015 2 Changed categories and tags. 53 1 15 2015-06-12 17:32:08.451294+00 2 OpenNebulaConf 2015 2 Changed publish and tags. 53 1 16 2015-06-12 17:35:00.637214+00 2 OpenNebulaConf 2015 2 Changed abstract and tags. 53 1 17 2015-06-12 17:49:43.82979+00 1 ungleich 2 No fields changed. 8 1 18 2015-06-12 17:55:36.291237+00 2 OpenNebulaConf 2015 2 Changed abstract and tags. 53 1 19 2015-06-12 19:55:54.701245+00 1 ungleich blog launched 2 Changed abstract and tags. 53 1 20 2015-06-12 19:57:19.415793+00 5 5 3 10 1 21 2015-06-12 19:57:33.678+00 1 ungleich 2 No fields changed. 8 1 22 2015-06-12 19:58:26.402886+00 1 ungleich blog launched 2 Changed abstract and tags. 53 1 23 2015-06-12 20:03:12.485109+00 3 Blog 2 Changed page_title. 11 1 24 2015-06-12 20:04:54.009245+00 3 Blog 2 11 1 25 2015-06-12 20:06:13.555449+00 3 Blog 2 Changed menu_title and page_title. 11 1 26 2015-06-12 20:06:55.919673+00 3 Blog 2 Changed page_title. 11 1 27 2015-06-12 20:07:32.136411+00 3 Blog 2 11 1 28 2015-06-12 20:17:24.393782+00 3 Blog 2 Changed page_title. 11 1 29 2015-06-12 20:24:27.361495+00 3 hosting 1 51 1 30 2015-06-12 20:25:21.343339+00 3 Application Hosting 1 53 1 31 2015-06-12 20:25:31.019931+00 3 Application Hosting 2 Changed tags. 53 1 32 2015-06-12 20:25:53.92103+00 3 Application Hosting 2 Changed tags and date_published. 53 1 33 2015-06-12 21:06:07.746567+00 2 OpenNebulaConf 2015 2 Changed tags and date_published. 53 1 34 2015-06-12 21:07:42.088516+00 3 Blog 2 11 1 35 2015-06-13 08:14:14.632456+00 2 OpenNebulaConf 2015 2 Changed categories and tags. 53 1 36 2015-06-13 09:27:58.111546+00 2 OpenNebulaConf 2015 3 53 1 37 2015-06-13 09:29:11.435971+00 4 OpenNebulaConf 2015 1 53 1 38 2015-06-13 09:29:16.09016+00 4 OpenNebulaConf 2015 2 Changed tags. 53 1 39 2015-06-13 09:30:48.787184+00 4 OpenNebulaConf 2015 2 Changed tags. 53 1 40 2015-06-13 09:32:13.135422+00 10 10 3 10 1 41 2015-06-13 13:04:06.799637+00 1 ungleich blog launched 2 Changed abstract and tags. 53 1 42 2015-06-13 13:11:03.536055+00 3 Blog 2 11 1 43 2015-06-13 13:13:17.878856+00 3 Blog 2 11 1 44 2015-06-13 13:22:13.384436+00 2 sanghee 1 4 1 45 2015-06-13 13:22:45.638851+00 3 nico 1 4 1 46 2015-06-13 13:23:05.973436+00 3 nico 2 Changed first_name, last_name, email, is_staff and is_superuser. 4 1 47 2015-06-13 13:23:25.19965+00 2 sanghee 2 Changed first_name, last_name, email, is_staff and is_superuser. 4 1 48 2015-06-13 17:37:46.061872+00 4 OpenNebulaConf 2015 2 Changed abstract and tags. 53 1 49 2015-06-13 17:46:50.586349+00 4 October 20-22 2015, Meet us in Barcelona! 2 Changed title, publish and tags. 53 1 50 2015-06-13 17:52:25.565082+00 3 Blog 2 11 1 51 2015-06-13 18:15:22.853187+00 1 14473379828_84376f1229_h.jpg 3 41 1 52 2015-06-13 18:22:46.173677+00 3 14473379828_84376f1229_h.jpg 2 No fields changed. 41 1 53 2015-06-13 18:22:51.892558+00 4 14473379828_84376f1229_h.jpg 3 41 1 54 2015-06-13 18:22:55.655192+00 3 14473379828_84376f1229_h.jpg 3 41 1 55 2015-06-13 18:22:59.813589+00 2 14473379828_84376f1229_h.jpg 3 41 1 56 2015-06-13 18:23:42.481738+00 6 14473379828_84376f1229_h.jpg 3 41 1 57 2015-06-14 02:53:32.803307+00 2 articles 2 Changed name. 36 1 58 2015-06-14 02:53:45.679853+00 5 14473379828_84376f1229_h.jpg 3 41 1 59 2015-06-14 03:10:32.327331+00 3 img 2 Changed name. 36 1 60 2015-06-14 03:13:23.742703+00 4 October 20-22 2015, Meet us in Barcelona! 2 Changed tags and main_image. 53 1 61 2015-06-14 03:14:35.023026+00 3 Blog 2 Changed meta_description. 11 1 62 2015-06-14 03:15:00.309542+00 3 Blog 2 11 1 63 2015-06-14 03:17:31.940109+00 14 14473379828_84376f1229_h.jpg 3 41 1 64 2015-06-14 03:17:50.419391+00 4 October 20-22 2015, Meet us in Barcelona! 2 Changed tags and main_image. 53 1 65 2015-06-14 03:42:24.173543+00 4 October 20-22 2015, Meet us in Barcelona! 2 Changed tags and sites. 53 1 66 2015-06-14 03:42:44.242971+00 1 blog.ungleich.ch 2 Changed name. 7 1 67 2015-06-14 03:43:15.804351+00 3 Blog 2 Changed xframe_options. 11 1 68 2015-06-14 03:43:22.039775+00 3 Blog 2 No fields changed. 11 1 69 2015-06-14 04:11:11.055257+00 4 October 20-22 2015, Meet us in Barcelona! 2 Changed tags. 53 1 70 2015-06-14 04:48:27.067971+00 1 UngleichPage object 1 56 1 71 2015-06-14 04:48:33.905655+00 3 Blog 2 11 1 72 2015-06-14 04:49:44.904955+00 1 ungleich blog launched 2 Changed abstract and tags. 53 1 73 2015-06-14 04:56:02.063255+00 1 ungleich blog launched 2 Changed abstract, tags and main_image. 53 1 74 2015-06-14 04:56:32.225684+00 1 ungleich blog launched 2 Changed abstract and tags. 53 1 75 2015-06-14 05:05:22.149361+00 3 Blog 2 11 1 76 2015-06-14 05:20:25.178737+00 1 https://blog.ungleich.ch 2 Changed domain. 7 1 77 2015-06-14 05:21:09.484391+00 1 blog.ungleich.ch 2 Changed domain. 7 1 78 2015-06-14 05:26:04.698325+00 1 https://blog.ungleich.ch 2 Changed domain. 7 1 79 2015-06-14 05:26:32.802673+00 1 blog.ungleich.ch 2 Changed domain. 7 1 80 2015-06-14 21:19:37.816758+00 5 Preview of the ungleich hosting technologies 1 53 1 81 2015-06-14 21:22:29.215379+00 4 technology 1 51 1 82 2015-06-14 21:22:38.10048+00 5 Preview of the ungleich hosting technologies 2 Changed categories, abstract and tags. 53 1 83 2015-06-14 21:23:32.370425+00 6 OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern 1 53 1 84 2015-06-14 21:28:20.839641+00 19 opencloudday.png 2 No fields changed. 41 1 85 2015-06-14 21:54:31.800422+00 5 Preview of the ungleich hosting technologies 2 Changed abstract and tags. 53 1 159 2015-09-02 13:58:45.050349+00 18 Basic cdist usage 2 Changed publish and tags. 53 1 86 2015-06-15 13:54:14.507513+00 5 Preview of the ungleich hosting technologies 2 Changed tags and meta_keywords. 53 1 87 2015-06-15 13:54:36.288491+00 3 Blog 2 11 1 88 2015-06-15 13:57:51.794578+00 5 Preview of the ungleich hosting technologies 2 Changed publish and tags. 53 1 89 2015-06-15 14:05:44.487266+00 3 Blog 2 11 1 90 2015-06-15 15:31:20.07251+00 5 Preview of the ungleich hosting technologies 2 Changed abstract and tags. 53 1 91 2015-06-15 20:11:20.148583+00 20 magical-bern-switzerland.jpg 2 No fields changed. 41 1 92 2015-06-15 20:17:30.322259+00 6 OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern 2 Changed publish and tags. 53 1 93 2015-06-15 20:19:52.426803+00 6 OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern 2 Changed tags and main_image. 53 1 94 2015-06-15 20:21:31.396896+00 6 OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern 2 Changed slug and tags. 53 1 95 2015-06-16 08:02:02.348565+00 1 Title Meta for Blog (blog, en-us) 1 60 1 96 2015-06-16 08:02:34.781253+00 3 Blog 2 11 1 97 2015-06-16 08:08:34.882691+00 23 380600.png 3 41 1 98 2015-06-16 08:09:21.40288+00 1 Title Meta for Blog (blog, en-us) 2 Changed keywords. 60 1 99 2015-06-16 08:09:30.836111+00 3 Blog 2 11 1 100 2015-06-16 08:21:30.955727+00 1 Title Meta for Blog (blog, en-us) 2 Changed description. 60 1 101 2015-06-16 08:21:40.885815+00 3 Blog 2 11 1 102 2015-06-16 20:11:45.853073+00 5 conference 1 51 1 103 2015-06-16 20:13:52.403868+00 7 A great OpenCloudDay 2015 in Bern 1 53 1 104 2015-06-16 21:02:07.980118+00 7 A great OpenCloudDay 2015 in Bern 2 Changed tags. 53 1 105 2015-06-16 21:21:51.253139+00 7 A great OpenCloudDay 2015 in Bern 2 Changed tags and main_image. 53 1 106 2015-06-16 21:22:23.131324+00 7 A great OpenCloudDay 2015 in Bern 2 Changed publish and tags. 53 1 107 2015-06-21 08:25:00.377457+00 6 digitalglarus 1 51 1 108 2015-06-21 08:30:44.63475+00 8 The merger of Born Informatik and adesso Schweiz AG 1 53 1 109 2015-06-21 08:39:11.215368+00 8 The merger of Born Informatik and adesso Schweiz AG 2 Changed tags and author. 53 1 110 2015-06-22 08:04:01.598254+00 8 The merger of Born Informatik and adesso Schweiz AG 2 Changed abstract and tags. 53 1 111 2015-06-22 21:32:43.975477+00 8 The merger of Born Informatik and adesso Schweiz AG 2 Changed tags. 53 1 112 2015-06-22 21:32:53.563821+00 8 The merger of Born Informatik and adesso Schweiz AG 2 Changed tags. 53 1 113 2015-06-22 21:57:05.197117+00 8 The merger of Born Informatik and adesso Schweiz AG 2 Changed publish, tags and meta_keywords. 53 1 114 2015-06-26 09:44:24.689614+00 9 Swiss Postgres Conference with cdist 1 53 1 115 2015-07-20 19:15:15.624943+00 10 Digital Glarus: The first meetup meeting 1 53 1 116 2015-07-20 19:33:03.280347+00 10 Digital Glarus: The first meetup meeting 2 Changed publish, tags and meta_keywords. 53 1 117 2015-07-26 22:38:36.977578+00 11 Digital Glarus: Call for Hacking 1 53 1 118 2015-07-26 22:44:20.704181+00 11 Digital Glarus: Call for Hacking 2 Changed abstract and tags. 53 1 119 2015-07-26 23:55:50.68159+00 11 Digital Glarus: Call for Hacking 2 Changed publish and tags. 53 1 120 2015-08-09 17:56:15.470965+00 12 The ungleich nginx configuration explained 1 53 1 121 2015-08-09 18:50:45.593779+00 12 The ungleich nginx configuration explained 2 Changed abstract and tags. 53 1 122 2015-08-09 19:27:06.904068+00 12 The ungleich nginx configuration explained 2 Changed abstract and tags. 53 1 123 2015-08-09 19:27:19.812389+00 12 The ungleich nginx configuration explained 2 Changed abstract and tags. 53 1 124 2015-08-09 19:27:36.539205+00 12 The ungleich nginx configuration explained 2 Changed abstract and tags. 53 1 125 2015-08-09 20:09:56.84612+00 12 The ungleich nginx configuration explained 2 Changed tags. 53 1 126 2015-08-09 20:10:45.91599+00 12 The ungleich nginx configuration explained 2 Changed tags. 53 1 127 2015-08-09 20:47:19.00995+00 12 The ungleich nginx configuration explained 2 Changed publish and tags. 53 1 128 2015-08-14 22:12:29.997336+00 13 The ungleich nginx configuration explained (2) 1 53 1 129 2015-08-14 22:49:03.315545+00 13 The ungleich nginx configuration explained (2) 2 Changed tags. 53 1 130 2015-08-14 23:28:12.16195+00 40 Puzzle.jpg 3 41 1 131 2015-08-14 23:28:17.167131+00 41 puzzle.png 3 41 1 132 2015-08-14 23:29:27.692657+00 13 The ungleich nginx configuration explained (2) 2 Changed publish and tags. 53 1 133 2015-08-24 11:18:24.234776+00 14 The Digital Glarus Manifesto 1 53 1 134 2015-08-24 11:19:15.620387+00 14 The Digital Glarus Manifesto 2 Changed tags. 53 1 135 2015-08-24 21:14:32.91166+00 14 The Digital Glarus Manifesto 3 53 1 136 2015-08-24 21:16:38.844679+00 15 Digital Glarus: The transformation of Glarus started 1 53 1 137 2015-08-24 21:19:25.666574+00 15 Digital Glarus: The transformation of Glarus started 2 Changed abstract and tags. 53 1 138 2015-08-24 21:19:49.071102+00 15 Digital Glarus: The transformation of Glarus started 2 Changed abstract and tags. 53 1 139 2015-08-24 22:13:08.912165+00 15 Digital Glarus: The transformation of Glarus started 2 Changed tags and main_image. 53 1 140 2015-08-24 22:16:48.904563+00 15 Digital Glarus: The transformation of Glarus started 2 Changed publish and tags. 53 1 141 2015-08-25 20:54:03.744297+00 2 babedream312@gmx.de - 2015-07-23 10:46:59+00:00 2 No fields changed. 57 1 142 2015-08-28 14:30:10.018513+00 16 The Digital Glarus Manifesto 1 53 1 143 2015-08-28 15:50:19.966041+00 46 steam-train-small.jpg 2 Changed file. 41 1 144 2015-08-28 17:03:15.233717+00 49 join-us.jpg 3 41 1 145 2015-08-28 22:38:23.477665+00 16 The Digital Glarus Manifesto 2 Changed publish and tags. 53 1 146 2015-08-28 23:43:36.657379+00 16 The Digital Glarus Manifesto 2 Changed categories, tags and main_image. 53 1 147 2015-09-02 09:51:10.828983+00 17 Digital Glarus in Press(in German) 1 53 1 148 2015-09-02 09:51:34.139894+00 17 Digital Glarus in Press(in German) 2 Changed tags. 53 1 149 2015-09-02 11:58:28.074311+00 17 Digital Glarus in Press (in German) 2 Changed title and tags. 53 1 150 2015-09-02 12:25:19.29789+00 18 Basic cdist usage 1 53 1 151 2015-09-02 12:26:02.457296+00 18 Basic cdist usage 2 Changed tags. 53 1 152 2015-09-02 12:46:53.199815+00 7 press 1 51 1 153 2015-09-02 12:46:56.646791+00 17 Digital Glarus in Press (in German) 2 Changed categories, publish and tags. 53 1 154 2015-09-02 12:54:06.765898+00 17 Digital Glarus in Press (in German) 2 Changed tags and main_image. 53 1 155 2015-09-02 13:46:06.759294+00 17 Digital Glarus in Press (in German) 2 Changed tags and main_image. 53 1 156 2015-09-02 13:54:38.144681+00 18 Basic cdist usage 2 Changed tags and main_image. 53 1 157 2015-09-02 13:55:52.843579+00 59 connectivity.jpg 3 41 1 158 2015-09-02 13:56:06.146372+00 18 Basic cdist usage 2 Changed tags and main_image. 53 1 236 2015-10-04 22:41:23.230808+00 1 Home 3 11 1 160 2015-09-02 13:59:15.597379+00 18 Basic cdist usage 2 Changed tags. 53 1 161 2015-09-17 19:03:35.307596+00 19 Our CEO, Nico Schottelius in Press (in German) 1 53 1 162 2015-09-17 19:19:59.765757+00 19 Our CEO, Nico Schottelius in Press (in German) 2 Changed abstract and tags. 53 1 163 2015-09-17 19:20:12.790667+00 19 Our CEO, Nico Schottelius in Press (in German) 2 Changed abstract and tags. 53 1 164 2015-09-17 19:28:49.763696+00 19 Our CEO, Nico Schottelius in Press (in German) 2 Changed tags. 53 1 165 2015-09-17 19:28:57.431987+00 19 Our CEO, Nico Schottelius in Press (in German) 2 Changed abstract and tags. 53 1 166 2015-09-17 19:30:18.485447+00 62 newspaper.png 2 No fields changed. 41 1 167 2015-09-17 19:32:33.166221+00 19 Our CEO, Nico Schottelius in Press (in German) 2 Changed tags and main_image. 53 1 168 2015-09-17 19:34:31.208498+00 19 Nico Schottelius Talks to Press (in German) 2 Changed title, publish and tags. 53 1 169 2015-09-17 19:35:51.65118+00 63 diesbach_legler450.jpg 3 41 1 170 2015-09-17 19:41:18.698082+00 19 Nico Schottelius Talks to Press (in German) 2 Changed abstract, tags and main_image. 53 1 171 2015-09-17 19:41:25.014593+00 19 Nico Schottelius Talks to Press (in German) 2 Changed tags. 53 1 172 2015-09-17 19:45:19.415525+00 64 6276688407_12900948a2.jpg 3 41 1 173 2015-09-17 19:45:40.139858+00 65 breakfast_coffee 3 38 1 174 2015-09-17 19:46:28.940885+00 66 breakfast_coffee 3 38 1 175 2015-09-17 19:48:02.776217+00 19 Nico Schottelius Talks to Press (in German) 2 Changed tags and main_image. 53 1 176 2015-09-24 14:01:08.773826+00 20 Digital Glarus on Radio! (in German) 1 53 1 177 2015-09-24 15:24:47.954518+00 20 Digital Glarus on Radio! (in German) 2 Changed tags. 53 1 178 2015-09-24 15:25:05.993367+00 20 Digital Glarus on Radio! (in German) 2 Changed tags. 53 1 179 2015-09-24 15:25:39.103881+00 20 Digital Glarus on Radio! (in German) 2 Changed publish and tags. 53 1 180 2015-09-24 15:34:03.420984+00 75 Radio Central - Digital Glarus - Crowdfunding 20150923 2 Changed name. 38 1 181 2015-09-25 12:58:19.011543+00 21 1st Community Meeting of Digital Glarus 1 53 1 182 2015-09-25 12:58:56.518111+00 21 1st Community Meeting of Digital Glarus 2 Changed tags. 53 1 183 2015-09-25 12:59:52.415371+00 21 1st Community Meeting of Digital Glarus 2 Changed tags. 53 1 184 2015-09-25 13:08:13.744807+00 76 thumb_DSC00605_1024.jpg 3 41 1 185 2015-09-25 13:08:38.786703+00 21 1st Community Meeting of Digital Glarus 2 Changed tags and main_image. 53 1 186 2015-09-25 14:25:42.165657+00 21 1st Community Meeting of Digital Glarus 2 Changed tags and main_image. 53 1 187 2015-09-25 15:03:04.283369+00 21 1st Community Meeting of Digital Glarus 2 Changed abstract and tags. 53 1 188 2015-09-25 15:03:26.694127+00 21 1st Community Meeting of Digital Glarus 2 Changed tags. 53 1 189 2015-09-25 18:00:43.139116+00 21 1st Community Meeting of Digital Glarus 2 Changed publish and tags. 53 1 190 2015-09-26 23:08:03.33147+00 21 1st Community Meeting of Digital Glarus 2 Changed tags. 53 1 191 2015-09-26 23:08:46.652136+00 20 Digital Glarus on Radio! (in German) 2 Changed tags. 53 1 192 2015-09-26 23:09:04.221046+00 19 Nico Schottelius Talks to Press (in German) 2 Changed tags. 53 1 193 2015-09-26 23:09:18.327759+00 17 Digital Glarus in Press (in German) 2 Changed tags. 53 1 194 2015-09-26 23:09:34.777996+00 16 The Digital Glarus Manifesto 2 Changed tags. 53 1 195 2015-09-26 23:09:47.968525+00 15 Digital Glarus: The transformation of Glarus started 2 Changed tags. 53 1 196 2015-09-26 23:10:08.717142+00 11 Digital Glarus: Call for Hacking 2 Changed tags. 53 1 197 2015-09-26 23:10:57.800059+00 10 Digital Glarus: The first meetup meeting 2 Changed tags. 53 1 198 2015-09-29 19:39:48.222808+00 22 Test raul 1 53 1 199 2015-09-30 03:11:11.196764+00 22 Test raul 2 Changed publish and tags. 53 1 200 2015-09-30 03:11:31.604502+00 22 Test raul 2 Changed publish and tags. 53 1 201 2015-09-30 03:28:30.864094+00 3 Blog 2 The US English page "Blog" was successfully unpublished 11 1 202 2015-09-30 03:28:35.554277+00 3 Blog 2 11 1 203 2015-09-30 03:31:40.065956+00 22 Test raul 2 Changed tags and sites. 53 1 204 2015-09-30 03:41:53.074368+00 22 Test raul 2 Changed abstract and tags. 53 1 205 2015-09-30 04:13:16.75345+00 1 100x100 -- 100 x 100 1 46 1 206 2015-10-04 16:53:42.449613+00 5 digital.glarus 1 11 1 207 2015-10-04 16:53:54.016225+00 5 digital.glarus 2 Changed overwrite_url and xframe_options. 11 1 208 2015-10-04 16:54:59.85671+00 5 digital.glarus 2 Changed template, reverse_id, soft_root and xframe_options. 11 1 209 2015-10-04 17:20:13.014567+00 5 digital.glarus 2 Changed title, slug, menu_title, page_title and meta_description. 11 1 210 2015-10-04 17:25:55.123334+00 167 167 3 10 1 211 2015-10-04 17:26:43.227966+00 3 Blog 2 template und xframe_options geändert. 11 1 212 2015-10-04 17:27:41.623749+00 3 Blog 2 11 1 213 2015-10-04 17:30:20.377646+00 5 digital.glarus 2 No fields changed. 11 1 214 2015-10-04 17:45:05.477751+00 6 digital.glarus.about 1 11 1 215 2015-10-04 17:45:25.239792+00 6 digital.glarus.about 2 template und xframe_options geändert. 11 1 216 2015-10-04 17:54:39.112013+00 6 digital.glarus.about 2 Changed title, slug, menu_title, page_title and meta_description. 11 1 217 2015-10-04 17:54:50.355713+00 6 digital.glarus.about 2 No fields changed. 11 1 218 2015-10-04 17:56:45.208837+00 186 186 3 10 1 219 2015-10-04 18:01:41.358106+00 6 digital.glarus.about 2 Changed xframe_options. 11 1 220 2015-10-04 18:05:38.21883+00 7 digital.glarus.contact 1 11 1 221 2015-10-04 18:06:00.442126+00 7 digital.glarus.contact 2 Changed template and xframe_options. 11 1 222 2015-10-04 18:08:00.651215+00 192 192 3 10 1 223 2015-10-04 18:09:42.668353+00 193 193 3 10 1 224 2015-10-04 18:09:52.51388+00 194 194 3 10 1 225 2015-10-04 18:14:07.949769+00 7 digital.glarus.contact 2 Changed title, slug, menu_title, page_title and meta_description. 11 1 226 2015-10-04 18:54:49.260192+00 8 digital.glarus.crowdfunding 1 11 1 227 2015-10-04 18:55:04.350575+00 8 digital.glarus.crowdfunding 2 template und xframe_options geändert. 11 1 228 2015-10-04 19:49:28.177641+00 8 digital.glarus.crowdfunding 2 Changed title, slug, menu_title, page_title and meta_description. 11 1 229 2015-10-04 22:17:59.293434+00 5 digital.glarus 2 Changed overwrite_url and xframe_options. 11 1 230 2015-10-04 22:19:31.038797+00 5 digital.glarus 2 No fields changed. 11 1 231 2015-10-04 22:19:37.442364+00 5 Digital Glarus - Home 2 11 1 232 2015-10-04 22:25:30.010116+00 5 digital.glarus 2 Changed xframe_options. 11 1 233 2015-10-04 22:25:59.375907+00 5 Digital Glarus - Startseite 2 11 1 234 2015-10-04 22:29:48.576723+00 2 digitalglarus.ungleich.ch 1 7 1 235 2015-10-04 22:36:22.960873+00 5 Digital Glarus - Home 2 11 1 237 2015-10-04 22:43:26.180117+00 10 Digital Glarus - Welcome 1 11 1 238 2015-10-04 22:43:48.035196+00 10 Digital Glarus - Welcome 2 Changed template and xframe_options. 11 1 239 2015-10-04 22:44:35.992789+00 10 Digital Glarus - Welcome 2 Changed overwrite_url and xframe_options. 11 1 240 2015-10-04 22:47:09.137055+00 5 Digital Glarus - Startseite 2 11 1 241 2015-10-04 23:23:56.838232+00 2 digitalglarus.ungleich.ch 3 7 1 242 2015-10-04 23:27:04.94222+00 5 Digital Glarus - Home 2 11 1 243 2015-10-04 23:27:27.159556+00 6 Digital Glarus - About 2 11 1 244 2015-10-04 23:27:38.603226+00 7 Digital Glarus - Contact 2 11 1 245 2015-10-04 23:27:53.10471+00 8 Digital Glarus - Crowdfunding 2 11 1 246 2015-10-04 23:28:36.616476+00 6 digital.glarus.about 2 Changed menu_title. 11 1 247 2015-10-04 23:28:49.990438+00 7 digital.glarus.contact 2 Changed menu_title. 11 1 248 2015-10-04 23:29:04.006039+00 8 digital.glarus.crowdfunding 2 Changed menu_title. 11 1 249 2015-10-04 23:29:24.837765+00 5 digital.glarus 2 Changed title and menu_title. 11 1 250 2015-10-04 23:29:34.145053+00 5 Digital Glarus - Welcome 2 11 1 251 2015-10-04 23:29:41.551619+00 6 Digital Glarus - About 2 11 1 252 2015-10-04 23:29:48.624721+00 7 Digital Glarus - Contact 2 11 1 253 2015-10-04 23:29:56.973779+00 8 Digital Glarus - Crowdfunding 2 11 1 254 2015-10-04 23:34:04.656728+00 3 Blog 2 Changed overwrite_url and xframe_options. 11 1 255 2015-10-04 23:34:15.691897+00 3 Blog 2 11 1 256 2015-10-04 23:35:54.280027+00 3 Blog 2 Changed soft_root and xframe_options. 11 1 257 2015-10-04 23:36:02.064613+00 3 Blog 2 11 1 258 2015-10-04 23:38:38.671422+00 5 home 2 No fields changed. 11 1 259 2015-10-04 23:38:41.541454+00 5 Digital Glarus - Startseite 2 11 1 260 2015-10-04 23:39:11.938552+00 6 about 2 Changed menu_title. 11 1 261 2015-10-04 23:39:22.566103+00 6 Digital Glarus - Über uns 2 11 1 262 2015-10-04 23:39:40.076913+00 7 contact 2 Changed menu_title. 11 1 263 2015-10-04 23:39:51.457388+00 7 Digital Glarus - Kontakt 2 11 1 264 2015-10-04 23:40:13.747119+00 8 crowdfunding 2 Changed menu_title. 11 1 265 2015-10-04 23:40:24.482527+00 8 Digital Glarus - Crowdfunding 2 11 1 266 2015-10-04 23:41:01.802823+00 5 home 2 Changed xframe_options. 11 1 267 2015-10-04 23:41:09.99967+00 5 Digital Glarus - Startseite 2 11 1 268 2015-10-04 23:47:25.905781+00 5 home 2 Changed slug. 11 1 269 2015-10-04 23:47:36.05386+00 5 home 2 Changed slug. 11 1 270 2015-10-04 23:56:07.357454+00 5 home 2 Changed reverse_id and xframe_options. 11 1 271 2015-10-04 23:56:15.635918+00 5 Digital Glarus - Welcome 2 11 1 272 2015-10-04 23:56:23.031513+00 5 Digital Glarus - Startseite 2 11 1 273 2015-10-05 01:46:51.261031+00 7 Digital Glarus - Contact 2 11 1 274 2015-10-05 01:47:27.423667+00 7 Digital Glarus - Contact 2 11 1 275 2015-10-05 01:48:08.154114+00 7 Digital Glarus - Kontakt 2 11 1 276 2015-10-10 19:00:40.623803+00 3 Blog 2 Changed soft_root and xframe_options. 11 1 277 2015-10-13 13:34:07.654167+00 5 home 2 Changed overwrite_url and xframe_options. 11 1 278 2015-10-13 13:34:45.115061+00 5 Digital Glarus - Welcome 2 11 1 279 2015-10-13 13:35:07.32626+00 5 home 2 Changed slug. 11 1 280 2015-10-13 13:35:27.418632+00 5 Digital Glarus - Welcome 2 11 1 281 2015-10-13 13:35:55.847891+00 5 home 2 Changed xframe_options. 11 1 282 2015-10-13 13:36:40.913569+00 5 home 2 Changed slug. 11 1 283 2015-10-13 13:36:49.552751+00 5 Digital Glarus - Startseite 2 11 1 284 2015-10-13 13:36:55.167599+00 8 crowdfunding 2 Changed overwrite_url and xframe_options. 11 1 285 2015-10-13 13:37:03.92039+00 8 Digital Glarus - Crowdfunding 2 11 1 286 2015-10-27 12:42:02.588215+00 23 OpenNebulaConf 2015 with ungleich 1 53 1 287 2015-10-27 12:44:29.292739+00 23 OpenNebulaConf 2015 with ungleich 2 Changed tags and main_image. 53 1 288 2015-10-27 12:46:27.230458+00 23 OpenNebulaConf 2015 with ungleich 2 Changed tags. 53 1 289 2015-10-27 19:12:29.289521+00 3 Blog 2 11 1 290 2015-10-27 19:13:01.801105+00 23 OpenNebulaConf 2015 with ungleich 2 Changed publish and tags. 53 1 291 2015-10-28 12:57:06.144476+00 22 Test raul 3 53 1 292 2015-10-29 13:57:51.284732+00 24 Warum wir das Projekt Digital Glarus gestartet haben 1 53 1 293 2015-11-02 07:14:03.34876+00 25 Fondue im Digital Chalet Schwanden 1 53 1 294 2015-11-02 07:42:11.652142+00 25 Fondue im Digital Chalet Schwanden 2 Changed publish and tags. 53 1 295 2015-11-03 07:14:10.133762+00 26 Das Glarnerland, ein Schatz zum Teilen 1 53 1 296 2015-11-03 10:13:55.782269+00 100 logo-black 2 Changed name and description. 38 1 297 2015-11-03 10:16:11.957752+00 101 ungleich-logo-black-png 2 Changed name, description and file. 41 1 298 2015-11-03 10:18:00.625189+00 102 ungleich-symbol-black-small 2 Changed name and description. 41 1 299 2015-11-03 10:32:00.134507+00 103 digitalglarus-banner-jazz-concert 2 Changed name. 41 1 300 2015-11-03 10:39:03.573396+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags and date_published. 53 1 301 2015-11-03 10:39:24.772433+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags and date_published. 53 1 302 2015-11-03 10:46:50.577793+00 104 digitalglarus-banner-opening 2 Changed name. 41 1 303 2015-11-03 10:58:55.681334+00 105 digital-glarus-first-chalet-exterior 2 Changed name. 41 1 304 2015-11-03 11:06:49.464627+00 106 newspaper-13092015-dontknowthename 2 Changed name. 41 1 305 2015-11-03 11:12:52.589091+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags and main_image. 53 1 306 2015-11-03 11:14:14.143557+00 107 digitalglarus_vision_background_nico.jpg 3 41 1 307 2015-11-03 11:14:24.523521+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags and main_image. 53 1 308 2015-11-03 13:42:27.319183+00 111 digitalglarus_scenery.jpg 3 41 1 309 2015-11-03 13:44:30.225583+00 110 luchsingen_snow_landscpae_glarus_.png 3 41 1 310 2015-11-03 13:44:46.504653+00 109 luchsingen_snow_landscpae_glarus_.png 3 41 1 311 2015-11-03 13:44:52.055986+00 112 digitalglarus_scenery_jpg 3 38 1 312 2015-11-03 17:44:09.338539+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed abstract and tags. 53 1 313 2015-11-03 18:09:38.15242+00 25 Fondue im Digital Chalet Schwanden 2 Changed tags and main_image. 53 1 314 2015-11-03 18:12:55.853353+00 114 fondue.png 3 41 1 315 2015-11-03 18:15:47.849007+00 25 Fondue im Digital Chalet Schwanden 2 Changed tags and main_image. 53 1 316 2015-11-03 18:24:07.858065+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed publish and tags. 53 1 317 2015-11-04 21:22:57.347584+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags. 53 1 318 2015-11-04 21:24:54.939959+00 26 Das Glarnerland, ein Schatz zum Teilen 2 Changed tags. 53 1 319 2015-11-04 21:54:05.781674+00 3 Blog 2 Changed title, slug, menu_title and page_title. 11 1 320 2015-11-04 21:54:19.687818+00 3 Blog 2 Changed meta_description. 11 1 321 2015-11-04 21:54:23.11546+00 3 Blog 2 No fields changed. 11 1 322 2015-11-08 20:36:33.731308+00 27 OpenNebula workshop at Digital Glarus 1 53 1 323 2015-11-08 20:39:33.661122+00 27 OpenNebula workshop at Digital Glarus 2 Changed tags and main_image. 53 1 324 2015-11-08 20:40:33.032632+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 325 2015-11-08 22:03:27.212035+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 326 2015-11-08 22:04:28.24093+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 327 2015-11-08 22:06:25.637925+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 328 2015-11-08 22:06:59.031886+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 329 2015-11-08 22:09:37.124654+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 330 2015-11-08 22:10:23.782393+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 331 2015-11-08 22:10:42.598123+00 27 OpenNebula workshop at Digital Glarus 2 Changed abstract and tags. 53 1 332 2015-11-08 22:13:58.512068+00 27 OpenNebula workshop at Digital Glarus 2 Changed publish and tags. 53 1 333 2015-11-09 16:12:49.568881+00 130 television_background 3 38 1 334 2015-11-09 16:12:57.2458+00 132 television_background 3 38 1 335 2015-11-09 16:13:06.365776+00 133 television_background 3 38 1 336 2015-11-09 18:12:18.065971+00 143 logo_white.png 3 41 1 337 2015-11-09 18:16:42.631348+00 144 logo_white.png 3 41 1 338 2015-11-13 05:29:45.479206+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 1 53 1 339 2015-11-13 06:03:47.002377+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 2 Changed abstract and tags. 53 1 340 2015-11-13 06:04:13.345215+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 2 Changed publish and tags. 53 1 341 2015-11-13 23:29:01.420166+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 2 Changed tags and main_image. 53 1 342 2015-11-13 23:31:05.879969+00 149 wissen.jpg 2 Changed file. 41 1 343 2015-11-13 23:31:24.711771+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 2 Changed tags. 53 1 344 2015-11-15 00:28:38.230946+00 8 Digital Glarus - Crowdfunding 2 11 1 345 2015-11-15 00:30:17.733748+00 8 Digital Glarus - Crowdfunding 2 11 1 346 2015-11-15 00:43:27.236439+00 8 Digital Glarus - Crowdfunding 2 11 1 347 2015-11-15 00:57:39.179023+00 8 Digital Glarus - Crowdfunding 2 11 1 348 2015-11-15 01:22:15.320458+00 8 Digital Glarus - Crowdfunding 2 11 1 349 2015-11-15 01:23:20.986583+00 8 Digital Glarus - Crowdfunding 2 11 1 350 2015-11-15 01:24:49.987306+00 8 Digital Glarus - Crowdfunding 2 11 1 351 2015-11-15 10:12:56.113146+00 29 Linux ERFA in Digital Glarus 1 53 1 352 2015-11-15 14:55:59.46573+00 150 newspaper.jpg 3 41 1 353 2015-11-19 10:32:37.668786+00 29 Linux ERFA in Digital Glarus 3 53 1 354 2015-11-19 20:45:52.606023+00 30 Jazz in Digital Glarus 1 53 1 355 2015-11-19 20:46:15.871625+00 30 Jazz in Digital Glarus 2 Changed tags and main_image. 53 1 356 2015-11-19 20:46:59.957267+00 30 Jazz in Digital Glarus 2 Changed tags and main_image. 53 1 357 2015-11-19 20:53:17.881123+00 30 Jazz in Digital Glarus 2 Changed tags and main_image. 53 1 358 2015-11-19 21:22:00.950685+00 30 Jazz in Digital Glarus 2 Changed abstract and tags. 53 1 359 2015-11-19 21:34:47.155285+00 30 Jazz in Digital Glarus 2 Changed publish and tags. 53 1 360 2015-11-21 16:34:09.862565+00 8 Digital Glarus - Crowdfunding 2 11 1 361 2015-11-21 16:34:48.869821+00 8 Digital Glarus - Crowdfunding 2 11 1 362 2015-11-21 16:36:50.873531+00 8 Digital Glarus - Crowdfunding 2 11 1 363 2015-11-21 16:38:33.215318+00 30 Jazz in Digital Glarus 2 Changed tags. 53 1 364 2015-11-21 17:34:52.105792+00 28 Wissen tauschen neu mit wissenstausch.ch in Digital Glarus 2 Changed tags. 53 1 365 2015-11-21 17:35:38.341615+00 27 OpenNebula workshop at Digital Glarus 2 Changed tags. 53 1 366 2015-11-21 17:36:05.230708+00 24 Warum wir das Projekt Digital Glarus gestartet haben 2 Changed tags. 53 1 367 2015-11-21 17:37:33.814375+00 24 Warum wir das Projekt Digital Glarus gestartet haben 2 Changed tags. 53 1 368 2015-11-25 06:19:53.764096+00 15 jazz 1 11 1 369 2015-11-25 06:21:29.938676+00 15 jazz 2 No fields changed. 11 1 370 2015-11-25 07:04:21.301326+00 15 Let's Jazz in Glarus! 2 11 1 371 2015-11-25 07:05:18.602592+00 15 jazz 2 Changed title and slug. 11 1 372 2015-11-25 07:06:13.337269+00 15 jazz 2 Changed menu_title, page_title and meta_description. 11 1 373 2015-11-25 07:11:12.080237+00 15 Let's Jazz in Glarus 2 11 1 374 2015-11-25 21:14:01.98167+00 15 Let's Jazz in Glarus 2 11 1 375 2015-11-29 14:55:34.721432+00 8 Digital Glarus - Crowdfunding 2 11 1 376 2015-11-29 14:57:13.609441+00 5 Digital Glarus - Welcome 2 11 1 377 2015-11-29 14:57:26.524423+00 6 Digital Glarus - About 2 11 1 378 2015-11-29 18:47:55.226619+00 7 Digital Glarus - Kontakt 2 11 1 379 2015-11-29 18:48:17.984245+00 5 Digital Glarus - Startseite 2 11 1 380 2015-11-29 18:48:33.89021+00 7 Digital Glarus - Contact 2 11 1 381 2015-11-29 18:48:45.218152+00 8 Digital Glarus - Crowdfunding 2 11 1 382 2015-11-29 18:48:56.741149+00 15 Let's Jazz in Glarus! 2 11 1 383 2015-11-29 18:49:11.03458+00 6 Digital Glarus - Über uns 2 11 1 384 2015-12-01 23:40:23.640831+00 15 jazz 2 Changed slug. 11 1 385 2015-12-01 23:40:41.836681+00 15 Let's Jazz in Glarus! 2 11 1 386 2015-12-01 23:40:47.498963+00 15 Let's Jazz in Glarus! 2 11 1 387 2015-12-01 23:41:08.331575+00 15 Let's Jazz in Glarus! 2 11 1 388 2015-12-01 23:41:38.473858+00 15 jazz 2 Changed slug. 11 1 389 2015-12-01 23:41:49.721305+00 15 Let's Jazz in Glarus 2 11 1 390 2015-12-01 23:43:25.185049+00 15 jazz 2 Changed slug. 11 1 391 2015-12-01 23:43:34.296047+00 15 jazz 2 Changed slug. 11 1 392 2015-12-01 23:43:41.75795+00 15 jazz 2 No fields changed. 11 1 393 2015-12-01 23:43:53.214556+00 15 Let's Jazz in Glarus! 2 11 1 394 2015-12-01 23:44:05.549671+00 15 Let's Jazz in Glarus 2 11 1 395 2015-12-02 04:09:19.460337+00 15 Let's Jazz in Glarus! 2 11 1 396 2015-12-06 21:27:25.783558+00 31 Jazz at Digital Chalet Schwanden 1 53 1 397 2015-12-07 13:32:19.220868+00 31 Jazz at Digital Chalet Schwanden 2 Changed tags and main_image. 53 1 398 2015-12-07 13:33:03.917916+00 31 Jazz at Digital Chalet Schwanden 2 Changed abstract and tags. 53 1 399 2015-12-07 13:34:59.269925+00 31 Jazz at Digital Chalet Schwanden 2 Changed tags and main_image. 53 1 400 2015-12-07 14:01:45.114104+00 161 digitalglarus_jazz_concert_coupons 3 38 1 401 2015-12-07 15:49:20.02925+00 31 Jazz at Digital Chalet Schwanden 2 Changed tags. 53 1 402 2015-12-07 16:07:36.960589+00 172 digitalglarus_jazz_concert_coupons 3 38 1 403 2015-12-07 16:27:53.953604+00 31 Jazz at Digital Chalet Schwanden 2 Changed publish and tags. 53 1 404 2015-12-07 16:29:38.248791+00 31 Jazz at Digital Chalet Schwanden 2 Changed tags. 53 1 405 2015-12-15 15:16:08.904742+00 15 Let's Jazz in Glarus! 2 The English page "jazz" was successfully unpublished 11 1 406 2015-12-15 15:18:12.81997+00 15 Let's Jazz in Glarus! 2 11 1 407 2015-12-15 15:18:47.552121+00 15 Let's Jazz in Glarus 2 11 1 408 2016-01-06 14:42:27.834551+00 7 Sandra - ralsukkheq@udkdoles.net - 2015-12-30 18:17:33.484646+00:00 3 58 1 409 2016-01-06 14:42:44.352867+00 5 Sandra - jmwjew@sskdolek.net - 2015-11-26 10:03:07.928067+00:00 3 58 1 410 2016-01-06 14:42:52.793422+00 4 Sandra - jwdmxausjt@sskdolek.net - 2015-11-22 07:08:42.870237+00:00 3 58 1 411 2016-01-06 16:57:17.16154+00 177 20,000 3 38 1 412 2016-01-06 17:33:17.763091+00 179 nico_schottelius_tv_2016-01-06.png 3 41 1 413 2016-01-06 18:05:29.481507+00 174 top-50-2012.jpg 3 41 1 414 2016-01-13 21:20:27.505844+00 32 Crowdfunding campaign : mission accomplished! 1 53 1 415 2016-01-13 21:21:36.053618+00 32 Crowdfunding campaign : mission accomplished! 2 Changed tags and main_image. 53 1 416 2016-01-13 21:24:03.25082+00 32 Crowdfunding campaign : mission accomplished! 2 Changed tags and main_image. 53 1 417 2016-01-13 21:25:18.482369+00 32 Crowdfunding campaign : mission accomplished! 2 Changed abstract and tags. 53 1 418 2016-01-13 21:27:14.083846+00 32 Crowdfunding campaign : mission accomplished! 2 Changed abstract and tags. 53 1 419 2016-01-14 16:55:01.879735+00 32 Crowdfunding campaign : mission accomplished! 2 Changed publish and tags. 53 1 420 2016-01-15 15:17:46.04259+00 33 Crowdfunding-Kampagne: Mission erfolgreich. 1 53 1 421 2016-01-15 15:31:32.269837+00 176 nico_schottelius_frontpage_newspaper_2016_01_06_.jpg 2 No fields changed. 41 1 422 2016-01-15 15:31:54.203234+00 180 nico_schottelius_tv_2016-01-06_.png 2 No fields changed. 41 1 423 2016-01-15 15:32:02.299618+00 181 nico_schottelius_tv_interview_2016-01-06_.png 2 No fields changed. 41 1 424 2016-01-15 15:32:13.544442+00 187 snow_luchsingen_small.jpg 2 No fields changed. 41 1 425 2016-01-15 15:32:25.57266+00 178 20000.jpg 2 No fields changed. 41 1 426 2016-01-15 15:32:52.745626+00 183 twitter_header_thankyou_confetti.png 2 No fields changed. 41 1 427 2016-01-15 15:33:04.487975+00 188 too-many-emails.png 2 No fields changed. 41 1 428 2016-01-15 15:35:17.034028+00 178 20000.jpg 2 No fields changed. 41 1 429 2016-01-15 15:37:55.262769+00 187 snow_luchsingen_small.jpg 2 No fields changed. 41 1 430 2016-01-15 15:46:20.417434+00 33 Crowdfunding-Kampagne: Mission erfolgreich. 2 Changed tags and main_image. 53 1 431 2016-01-15 15:46:51.465636+00 186 twitter_header_thankyou_confetti_dark.png 2 No fields changed. 41 1 432 2016-01-15 15:47:00.82654+00 33 Crowdfunding-Kampagne: Mission erfolgreich. 2 Changed tags and main_image. 53 1 433 2016-01-15 15:55:10.072055+00 33 Crowdfunding-Kampagne: Mission erfolgreich. 2 Changed publish and tags. 53 1 434 2016-01-27 16:52:02.552876+00 10 Samantha - botnmhg@udkdoles.net - 2016-01-26 22:54:49.983113+00:00 3 58 1 435 2016-01-27 16:52:09.395261+00 9 Sandra - wjszekaq@udkdoles.net - 2016-01-17 23:43:57.245536+00:00 3 58 1 436 2016-01-27 16:52:14.787897+00 8 Sandra - xpbmimvm@udkdoles.net - 2016-01-07 06:26:31.095446+00:00 3 58 1 437 2016-01-28 17:05:18.427051+00 32 Crowdfunding campaign : mission accomplished! 2 Changed tags. 53 1 438 2016-01-28 17:05:50.059252+00 33 Crowdfunding-Kampagne: Mission erfolgreich. 2 Changed tags. 53 1 439 2016-02-22 13:39:04.500437+00 11 Samantha - rhrrif@udkdoles.net - 2016-01-30 16:26:45.541261+00:00 3 58 1 440 2016-02-28 15:08:34.401991+00 17 test 1 11 1 441 2016-02-28 15:11:10.878079+00 17 test 3 11 1 442 2016-02-28 15:12:18.373853+00 18 Events 1 11 1 443 2016-02-29 18:57:53.882004+00 12 Samantha - fsldwbxe@udkdoles.net - 2016-02-29 11:09:12.649428+00:00 3 58 1 444 2016-03-17 08:37:30.353486+00 4 samantha 1 4 1 445 2016-03-17 08:39:29.061493+00 4 samantha 2 Changed first_name, last_name, email and user_permissions. 4 1 446 2016-03-20 22:02:11.410084+00 4 samantha 2 Changed password. 4 1 447 2016-03-20 22:03:28.913486+00 4 samantha 2 Changed is_staff and user_permissions. 4 1 448 2016-03-20 22:04:26.138349+00 4 samantha 2 Changed is_superuser. 4 1 449 2016-03-22 22:53:27.91351+00 217 clipboard 3 9 5 \. -- -- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('django_admin_log_id_seq', 449, true); -- -- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_content_type (id, name, app_label, model) FROM stdin; 1 log entry admin logentry 2 permission auth permission 3 group auth group 4 user auth user 5 content type contenttypes contenttype 6 session sessions session 7 site sites site 8 user setting cms usersettings 9 placeholder cms placeholder 10 cms plugin cms cmsplugin 11 page cms page 12 Page global permission cms globalpagepermission 13 Page permission cms pagepermission 14 User (page) cms pageuser 15 User group (page) cms pageusergroup 16 title cms title 17 placeholder reference cms placeholderreference 18 static placeholder cms staticplaceholder 19 alias plugin model cms aliaspluginmodel 20 cache key menus cachekey 21 flash djangocms_flash flash 22 google map djangocms_googlemap googlemap 23 inherit page placeholder djangocms_inherit inheritpageplaceholder 24 link djangocms_link link 25 Snippet djangocms_snippet snippet 26 Snippet djangocms_snippet snippetptr 27 teaser djangocms_teaser teaser 28 filer file cmsplugin_filer_file filerfile 29 filer folder cmsplugin_filer_folder filerfolder 30 filer link plugin cmsplugin_filer_link filerlinkplugin 31 filer teaser cmsplugin_filer_teaser filerteaser 32 filer video cmsplugin_filer_video filervideo 33 revision reversion revision 34 version reversion version 35 text djangocms_text_ckeditor text 36 Folder filer folder 37 folder permission filer folderpermission 38 file filer file 39 clipboard filer clipboard 40 clipboard item filer clipboarditem 41 image filer image 42 source easy_thumbnails source 43 thumbnail easy_thumbnails thumbnail 44 thumbnail dimensions easy_thumbnails thumbnaildimensions 45 filer image cmsplugin_filer_image filerimage 46 thumbnail option cmsplugin_filer_image thumbnailoption 47 Tag taggit tag 48 Tagged Item taggit taggeditem 49 key map django_select2 keymap 50 blog category Translation djangocms_blog blogcategorytranslation 51 blog category djangocms_blog blogcategory 52 blog article Translation djangocms_blog posttranslation 53 blog article djangocms_blog post 54 latest posts plugin djangocms_blog latestpostsplugin 55 author entries plugin djangocms_blog authorentriesplugin 56 ungleich page ungleich ungleichpage 57 rails beta user railshosting railsbetauser 58 message digitalglarus message 59 Page meta info (all languages) djangocms_page_meta pagemeta 60 Page meta info (language-dependent) djangocms_page_meta titlemeta 61 rails beta user hosting railsbetauser \. -- -- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('django_content_type_id_seq', 61, true); -- -- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_migrations (id, app, name, applied) FROM stdin; 1 contenttypes 0001_initial 2015-06-12 16:47:37.586053+00 2 auth 0001_initial 2015-06-12 16:47:40.078096+00 3 admin 0001_initial 2015-06-12 16:47:40.720962+00 4 sites 0001_initial 2015-06-12 16:47:40.90432+00 5 cms 0001_initial 2015-06-12 16:47:46.81365+00 6 cms 0002_auto_20140816_1918 2015-06-12 16:47:52.040742+00 7 cms 0003_auto_20140926_2347 2015-06-12 16:47:52.324788+00 8 cms 0004_auto_20140924_1038 2015-06-12 16:48:05.488729+00 9 cms 0005_auto_20140924_1039 2015-06-12 16:48:05.781437+00 10 cms 0006_auto_20140924_1110 2015-06-12 16:48:06.81011+00 11 cms 0007_auto_20141028_1559 2015-06-12 16:48:07.423593+00 12 cms 0008_auto_20150208_2149 2015-06-12 16:48:07.901227+00 13 cms 0008_auto_20150121_0059 2015-06-12 16:48:08.605592+00 14 cms 0009_merge 2015-06-12 16:48:08.904628+00 15 cms 0010_migrate_use_structure 2015-06-12 16:48:09.357941+00 16 cms 0011_auto_20150419_1006 2015-06-12 16:48:09.966304+00 17 filer 0001_initial 2015-06-12 16:48:13.197141+00 18 cmsplugin_filer_file 0001_initial 2015-06-12 16:48:13.937341+00 19 cmsplugin_filer_folder 0001_initial 2015-06-12 16:48:14.60625+00 20 cmsplugin_filer_image 0001_initial 2015-06-12 16:48:16.090267+00 21 cmsplugin_filer_link 0001_initial 2015-06-12 16:48:16.873574+00 22 cmsplugin_filer_link 0002_auto_20150612_1635 2015-06-12 16:48:17.230453+00 23 cmsplugin_filer_teaser 0001_initial 2015-06-12 16:48:18.132015+00 24 cmsplugin_filer_video 0001_initial 2015-06-12 16:48:19.031049+00 25 digitalglarus 0001_initial 2015-06-12 16:48:19.432218+00 26 digitalglarus 0002_auto_20150527_1023 2015-06-12 16:48:19.906423+00 27 digitalglarus 0002_auto_20150522_0450 2015-06-12 16:48:20.007307+00 28 digitalglarus 0003_merge 2015-06-12 16:48:20.073792+00 29 taggit 0001_initial 2015-06-12 16:48:21.308116+00 30 djangocms_blog 0001_initial 2015-06-12 16:48:27.326915+00 31 djangocms_blog 0002_post_sites 2015-06-12 16:48:28.662507+00 32 djangocms_blog 0003_auto_20141201_2252 2015-06-12 16:48:29.295249+00 33 djangocms_blog 0004_auto_20150108_1435 2015-06-12 16:48:30.336189+00 34 djangocms_blog 0005_auto_20150212_1118 2015-06-12 16:48:31.145054+00 35 djangocms_blog 0006_auto_20150612_1635 2015-06-12 16:48:32.195251+00 36 djangocms_flash 0001_initial 2015-06-12 16:48:32.512199+00 37 djangocms_googlemap 0001_initial 2015-06-12 16:48:32.862443+00 38 djangocms_inherit 0001_initial 2015-06-12 16:48:33.378062+00 39 djangocms_link 0001_initial 2015-06-12 16:48:34.295429+00 40 djangocms_link 0002_auto_20140929_1705 2015-06-12 16:48:34.469398+00 41 djangocms_link 0003_auto_20150212_1310 2015-06-12 16:48:34.657091+00 42 djangocms_snippet 0001_initial 2015-06-12 16:48:36.072264+00 43 djangocms_teaser 0001_initial 2015-06-12 16:48:36.698633+00 44 djangocms_text_ckeditor 0001_initial 2015-06-12 16:48:37.165737+00 45 easy_thumbnails 0001_initial 2015-06-12 16:48:39.062327+00 46 easy_thumbnails 0002_thumbnaildimensions 2015-06-12 16:48:39.408439+00 47 filer 0002_auto_20150612_1635 2015-06-12 16:48:39.767056+00 48 reversion 0001_initial 2015-06-12 16:48:41.231149+00 49 reversion 0002_auto_20141216_1509 2015-06-12 16:48:42.220029+00 50 sessions 0001_initial 2015-06-12 16:48:42.787999+00 51 ungleich 0001_initial 2015-06-12 16:48:43.91062+00 52 ungleich 0002_ungleichpage_image 2015-06-12 16:48:44.696539+00 53 ungleich 0003_remove_ungleichpage_image_header 2015-06-12 16:48:45.323423+00 54 djangocms_page_meta 0001_initial 2015-06-16 07:51:34.515936+00 55 djangocms_blog 0007_auto_20150616_0751 2015-06-16 07:52:05.543796+00 56 djangocms_page_meta 0002_auto_20150616_0751 2015-06-16 07:52:07.373163+00 57 cmsplugin_filer_link 0002_auto_20160228_1504 2016-02-28 15:04:53.254176+00 58 djangocms_blog 0006_auto_20160228_1504 2016-02-28 15:04:54.20186+00 59 djangocms_page_meta 0002_auto_20160228_1504 2016-02-28 15:04:55.612642+00 60 filer 0002_auto_20160228_1504 2016-02-28 15:04:56.043266+00 \. -- -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('django_migrations_id_seq', 60, true); -- -- Data for Name: django_select2_keymap; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_select2_keymap (id, key, value, accessed_on) FROM stdin; \. -- -- Name: django_select2_keymap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('django_select2_keymap_id_seq', 1, false); -- -- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_session (session_key, session_data, expire_date) FROM stdin; irm9c6an9s9ihgoqp0cpmk147gyzi12v NzMwNDZjOGFiMzQzYjkzNTBjNDVhZWQzYTAyMmQ2ZGRjYjlmYjA3Yjp7ImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2VkaXQiOnRydWUsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ== 2015-06-26 17:28:56.575209+00 c9hxn2v7skuwz5j6k2n9drupqiq3w9wp MWIyYjBhMDEwNDE3OTBmZWNkZDFjOGRkZDI5ZWZlYWZiMDMxNzIyNjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSJ9 2015-08-12 23:44:34.167791+00 2q7xrigv8riwxzmdary3kbkbmmm2vul3 YWYzMDQxZjVjMWYxOTBiYWEwMzJmNzZmY2IwNmNlMzhiOTdkNzE0ZTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMiJ9 2015-08-13 11:50:28.45562+00 o9yhzaa0k26xx7hvnk5w2uoq5f8r70oz NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-08-19 12:19:53.607418+00 7s4cnu4kfs2hccibkkib41qxqq330qxv MGMxNDMzNGNmZGZlMzljMGRkMGJiOTIzZWJhMDBiOGRhM2U3MjEzMjp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiI3In0= 2015-06-28 05:02:09.521374+00 vn7n1uxj515z59h12izfoh1yngf5iyxg MWIyYjBhMDEwNDE3OTBmZWNkZDFjOGRkZDI5ZWZlYWZiMDMxNzIyNjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSJ9 2015-08-23 16:04:10.896781+00 u300329af7b1feo24pliih9wz4y15g3m MmQ2ODM2ZmY2NjcyMGIzZDZhNTgwNWQ1NDlhNjkwOTNhN2NjODMzNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjF9 2015-06-28 05:04:12.268289+00 3bmm2rr1074u3x8aaapakjhcm672mzit NjNhYTE5ZDhjNWU3N2YyYjczZTM2NGFlMWZjMzc1ZDM0ZTY1OTI0Njp7fQ== 2015-09-16 13:36:58.600226+00 s56u6azleh84vfbid2w3qwm3pny6aoyh NDA1YTZhYzdjYzliNzQ4ZDExNjY5Mzc0MzgzM2IyZGVlODdhNWMxYjp7Il9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIifQ== 2015-08-31 07:19:59.936994+00 c4c236ege3x815kbjleyvmn11pd59yw5 OWM0NzFmM2QwNzgyNjI1MDMxMWZhMjkxMjEwNDlkYzM5MDg1MTM5ZTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-09-01 15:15:20.79676+00 lkogc9ii0bv0z919sv9t1pll74aitovk NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-09-07 09:16:58.55433+00 r7prkd96h5iyrcpuc7h1ewgak5y9yqvd MWI0NTFhYWYzMWIzY2FkZTMzMGUyZGNlNTAyMWViZjY3ZWZhYTdkNjp7ImZpbGVyX2xhc3RfZm9sZGVyX2lkIjpudWxsLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2xvZ19sYXRlc3QiOjQ3LCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEifQ== 2015-06-27 13:23:25.252719+00 uz95ucvgvwgu1k9awrfm2e705dj3hcvb NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-08-25 14:11:37.162712+00 stxduhogbri7f5uvsbggqxfa5durcl9d OGQ1Yzk2ZWUzOWM2ZTUxNjYzZTgzMTAwOTMxNWRhNjljMTc4YmNiNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ== 2015-06-30 21:22:23.649062+00 wfzzuu9ooymxe0kz8m5a7unvkf743ptx MDFhY2NhOWVjNjE5ZDlkNDI4ZTUwYzMxMjA5NDIxMGNiMzNjMGIyNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjkiLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ== 2015-07-10 09:45:51.459851+00 p8f8hr94tp8p8h3r6jqn4e2fhyfjfdsm MDdjM2M0N2FjZTRjMDhhNTZhMWU0ZWJiOWU5YmVjMGUyMzEyYWU5Mzp7ImNtc19lZGl0IjpmYWxzZX0= 2015-06-29 14:02:38.430264+00 65pa9lzb2pux8uen15p0nprazzhjy3jy NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-06-29 14:02:38.715406+00 kbbr9swxmy1bg3ft4513xj30de2e468m NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-06-29 14:02:38.716762+00 48e7l9i82zr7p70nclduvom343atknqu NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-06-29 14:02:38.876276+00 xlxl8q57irsexpitxdilwika0jgyexnw MzNhYWRlZWJlZmQ5MTJkNDhjYmNkZDljODYyNTM5OTNjNDFkMDA3MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsIl9hdXRoX3VzZXJfaWQiOjF9 2015-07-13 13:56:24.81215+00 4bi8l75ny44r8m7wa7idfsqpk2gqjk2n OGYwNDExNjdmNGY5MGQ4MzQ3YjQzMTM4OTFmMjg2ODkxYWVlMTNkNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMjQxZDIzY2I3ZjAyNDYzOWJmOTkwYjI2NjY1MjIxYWQwNDg0MWM4MCIsIl9hdXRoX3VzZXJfaWQiOjN9 2015-08-01 11:31:35.598436+00 ev4qckmxp1oshcpd1k6qzlb27i450hc5 YTAwMTdiNmM1YWNhMDczZDU4OGZiNDI0YjhmYjg1MGI5MjcxZjI4ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZX0= 2015-06-30 08:22:30.986731+00 5rdzi2gvz72ddzta0pixtzzwd3w8yaxr NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-08-04 20:57:28.1185+00 kb7mvjoecqs7r9ujhxunhla1giik5uf6 NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9 2015-08-09 19:07:37.734037+00 j9jia158070l24j8qdxom9xvx4n2qgsp OWM0NzFmM2QwNzgyNjI1MDMxMWZhMjkxMjEwNDlkYzM5MDg1MTM5ZTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-08-23 19:53:06.035632+00 zbovj4uwgatxvwpefgagwlsmctyk8xr9 MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ== 2015-10-09 19:03:44.290398+00 2v249ai88j4rt0iy9bsrasttephn73im MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ== 2015-10-24 19:03:05.81982+00 yl0e392ujnpy5hv7nysoc3cq1o760kfw YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2015-11-30 11:57:03.440037+00 1cawdjquz8x5qvb040xvixibb6fdbltd ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9 2016-01-20 14:41:58.398525+00 usm99l1d1iv2jn2jci63tqaz873dyath MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ== 2015-11-17 18:13:00.498259+00 4r4sg14xutf85pldjzu2e703pdpdfrft Y2UyZjFkMzIxZGM5NDBkOTJiOGVhNDQ4MWUxODNjM2QzMzRjMzdkMzp7Il9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJjbXNfYWRtaW5fc2l0ZSI6MSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMSIsIl9hdXRoX3VzZXJfaWQiOjEsImNtc19lZGl0Ijp0cnVlfQ== 2015-10-10 20:05:16.803703+00 3r3ocqt6fusoq552ojdi260pqnkc5osv ZGM1YjNlOTUzNmFiMjdlN2Q0MzU0YjM4NmUxOTRlNGUwNzhjMjY0MTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJjbXNfZWRpdCI6dHJ1ZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2V9 2016-01-11 22:23:42.313664+00 vmfbysejdhwvazmzmujfawe0p69gx5mt NjNhYTE5ZDhjNWU3N2YyYjczZTM2NGFlMWZjMzc1ZDM0ZTY1OTI0Njp7fQ== 2015-09-15 21:32:25.908758+00 6inagfv8ab5aqh3g9gg0uf7jgn73paem MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ== 2015-11-17 11:50:56.628829+00 kq7wpvy6ocq3cw3zm96z9s1jgxujatgt YmM3YWY0MTUyOWZhMzIxNmIyOGNmNWM5OTIzMzQ2ZmU5ZmU4ODVhYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlfQ== 2015-09-16 13:59:16.272347+00 nkhhqwi34uha14mx5hyaka7qvs15xcyd YjhkM2VlNjE4NTM5OTI0YWM5ODlkNzFlZGMwZWZiZGRhNjlmM2JmYTp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCJ9 2015-09-23 20:25:07.545083+00 qputxop95swzll33wd8itmrjzdkjkahf MGM1ZDVhNDJjMmY0OGRmN2ZlODI2Yzc4ZWEzNDc1YjE0NWUzYzMyNTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCJ9 2015-09-24 22:20:16.289156+00 yfsz7l6mshwfv4zmj6yy1jrlsker3dm5 M2I2MmE1MWI1ZGE4MzE3MTI3MjM2MTNhM2JlNTE0OTUyNDk4YzRlNjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjF9 2015-11-17 12:46:49.079327+00 hue6r2076rf2iwov4ckq6oz6kwrp59u6 NjZhYzQwNTI3YmE2M2NhMWU1YjJjZTM1OWFjYWY4NGZlN2MwZTg4Mjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-10-11 17:30:57.806276+00 9gg1gkozcb3xh92vh3vtrpfowix0s1y9 NzNiYzQ1NjE0MDg3MTNjNzRmNGYyMzhmMWNlZDYyYTU4NjEzMzFlZjp7Il9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMTAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgifQ== 2015-10-13 19:40:35.773884+00 eybzi8kkruesunk3zjhnbvnsijjnhpku NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0= 2015-12-05 16:38:34.551346+00 l5h8btmza573zpnh4mq247yedi788mb5 YmM3YWY0MTUyOWZhMzIxNmIyOGNmNWM5OTIzMzQ2ZmU5ZmU4ODVhYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlfQ== 2015-09-16 12:46:57.114096+00 wjpazoft96yruu0iupl9qfend0rakc62 NDU3YWZiYmNjZmMxZDQ5Y2Q0OTM2NmI2ZDg0Yzc0NzZkM2M1NTNlMjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfbG9nX2xhdGVzdCI6MTQxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-09-08 20:54:03.81748+00 6b8utlaefok78yboiopvnxdfm5gta5kv Yjg2OTZjMjI3NzBhMDc3NWZmYjAwMTQ4MDViMDZmMmJiODcwNTM2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5YjE0YjQzYmVlZWJkMGFkZDZkYjVkMzZlNDY4MjYwOGFmODUxYWY4IiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ== 2015-10-27 14:02:22.408738+00 2n7bmnmlp2obpdmagemqvgbev64lr1wn NjZhYzQwNTI3YmE2M2NhMWU1YjJjZTM1OWFjYWY4NGZlN2MwZTg4Mjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-10-09 18:07:10.114395+00 3gtuuqi71af18qu9klvatzk9g1m0x7ce YzM4ZGFlZDc4MjAxNDQ0Mzc4NzQ1MzBhYTYyODU0ZjU3ZjE2YjViYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2015-09-16 13:37:19.660071+00 zp10cgwmbk1z5en4u15gug25sltd1k2v NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0= 2015-11-29 01:24:50.596146+00 fucj24zxshv89ehwi7in2c7xbenflcwn MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ== 2015-11-12 22:48:46.634114+00 3jazcr6qodaqylmloid2wsmhbq3h9gl1 MDFiYzljZmM0YzA4MzQyMzhhOWYxMzU5M2NmMThjMDBmNjlkMjRlNDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5YjE0YjQzYmVlZWJkMGFkZDZkYjVkMzZlNDY4MjYwOGFmODUxYWY4IiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxfQ== 2015-10-24 19:00:52.156612+00 aapphedq6gu41alumsaq67etdjbcm1ok NjJhNTU0YjEyNDE3YzY0MjY5MTFiMWI0M2Y1ZDlkNzEyMWJkNWMxMjp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfZWRpdCI6dHJ1ZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2015-11-27 23:31:25.331195+00 sgiitzqjhl2qh5wbf3xk59cchl13k010 NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0= 2015-12-09 21:14:30.609706+00 0i47wrbriv9biyjttp5ekkvwyluyai19 ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9 2016-02-10 16:51:45.472214+00 0y8x56y4um82189het0jz8vhujngln02 YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2015-12-02 13:35:17.922098+00 r9aw0z2g8uddz272zh3axmrink6dkn7x NjA1OTYxNWQzNDBjNzNjNDgyZjZkYThhZDEyNjEyMTMzMmFlMTk3Mjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2V9 2016-02-11 17:05:51.592439+00 rs8nhreis91x8jupwtbg1fcg3rm8iu7n ZjhhOTUxOTgzNjhlYmRiZDg5MmM3MzY1NmMwMWUwNTIyMjM1MzU3Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjEiLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ== 2016-02-12 19:52:46.726372+00 9uc5llh6e7fn46rxidnzg4kf0w6h503n MGY5YTAwOThhYWFjZDQ1NjAwYTdlZTY1ZmQ4ZTFlOTI1NzczNDhhOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxfQ== 2015-12-16 04:11:26.713576+00 uxpbiyhl03dd2cj5i1wd00xexrkv8h40 ZjhhOTUxOTgzNjhlYmRiZDg5MmM3MzY1NmMwMWUwNTIyMjM1MzU3Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjEiLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ== 2015-12-29 15:16:37.924183+00 d4kzp4neoc035vuh4en5v16a2cmo7yzl ZjAzODczMTkwOTUzMjYyYjk4MzZjOGI4YTAyYzkzNzEwMzY1NTBhMTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJjbXNfYWRtaW5fc2l0ZSI6MSwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZX0= 2015-12-29 15:18:48.326702+00 bfdjeu2jto4ev6pry80a76ikemrj5a0c ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9 2016-01-29 15:02:49.841675+00 jq6kqf7pf0qi2y1ruh7h119qii7k6suk YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2016-03-13 15:06:40.35285+00 uketg46qiq3r2qwhberl1rc17w36cyx6 MTQ3MWJiZjllOGQxOWM5NmIxNmRkNjljNWEwMTdmODFhYmZhNWI4Zjp7ImNtc19lZGl0Ijp0cnVlLCJjbXNfYWRtaW5fc2l0ZSI6MSwiX2F1dGhfdXNlcl9pZCI6NSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTcifQ== 2016-04-05 17:40:58.128542+00 ose4gg8h6ub44zqux6v9rfhskozgp9sm NmY0ZmUyNzI5ODRmYzBiNzk0YTNkN2RhZGZkOTViMGE4MWYyMjQwODp7ImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjo1LCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2016-04-05 17:42:09.042424+00 nu4g8snmupzpl91e34qe4tn7gste0axc YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2016-03-13 15:53:17.456073+00 8ked8q72mcdba3m82v3855nk487axsqj YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2016-03-13 15:54:34.876659+00 akgyj8x6cfljpk2af3wwqb72oagksodz ZTAyZGJiMDg3ZWZjM2I2ZjlhMWVmNWRiZTNiZmNmN2Q0NWUwOTc1MDp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9 2016-03-14 18:57:25.753727+00 741qh19tf64xunim3puvtlu50npspuf5 MjIyZDY1NzQ3YTEzY2U4ODZmZDZhMzYxNDRkYzFhYmY1Yjc0ZDAzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlfQ== 2016-03-29 12:00:25.99816+00 i8a1elji6gtptq9h2x7m699a6jz2wx5n YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9 2016-04-01 15:05:45.9282+00 xyt2dfbh34bq2an8dil290lzp9qi9vt2 YjM2MmJkMzYxZGI2NmIwYjc5MGY5Zjc1ZjkyZTk2YmUxZDVmMzFiZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NCwiX2F1dGhfdXNlcl9oYXNoIjoiZTMzMDQyMDY0NzA0M2JhZDdlZTJjZjg0YWUxNmI2ZWE1N2Q5YWY5MyJ9 2016-04-03 22:05:17.625101+00 8q00iaf4c3076tnud5prb3k3j8u8swok YjM2MmJkMzYxZGI2NmIwYjc5MGY5Zjc1ZjkyZTk2YmUxZDVmMzFiZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NCwiX2F1dGhfdXNlcl9oYXNoIjoiZTMzMDQyMDY0NzA0M2JhZDdlZTJjZjg0YWUxNmI2ZWE1N2Q5YWY5MyJ9 2016-04-03 22:07:50.132803+00 w2985lqn2log0j4cifm7f1rmppnesgy7 MjIyZDY1NzQ3YTEzY2U4ODZmZDZhMzYxNDRkYzFhYmY1Yjc0ZDAzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlfQ== 2016-04-04 14:36:30.237366+00 f6vqsjk5p4bie3lo8jvrfmu4fotdibvd MmRiOGRjNGFlODJhODJmN2VjNzJhZmVhNzRhNzg5OGI4Y2YzZWMzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTcifQ== 2016-04-07 21:14:25.684417+00 \. -- -- Data for Name: django_site; Type: TABLE DATA; Schema: public; Owner: app -- COPY django_site (id, domain, name) FROM stdin; 1 blog.ungleich.ch blog.ungleich.ch \. -- -- Name: django_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('django_site_id_seq', 2, true); -- -- Data for Name: djangocms_blog_authorentriesplugin; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_authorentriesplugin (cmsplugin_ptr_id, latest_posts) FROM stdin; \. -- -- Data for Name: djangocms_blog_authorentriesplugin_authors; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_authorentriesplugin_authors (id, authorentriesplugin_id, user_id) FROM stdin; \. -- -- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_authorentriesplugin_authors_id_seq', 1, false); -- -- Data for Name: djangocms_blog_blogcategory; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_blogcategory (id, date_created, date_modified, parent_id) FROM stdin; 1 2015-06-12 17:07:21.648995+00 2015-06-12 17:07:21.649044+00 \N 2 2015-06-12 17:21:50.282983+00 2015-06-12 17:21:50.283027+00 \N 3 2015-06-12 20:24:27.358927+00 2015-06-12 20:24:27.358964+00 \N 4 2015-06-14 21:22:29.212861+00 2015-06-14 21:22:29.212901+00 \N 5 2015-06-16 20:11:45.850517+00 2015-06-16 20:11:45.850556+00 \N 6 2015-06-21 08:25:00.361649+00 2015-06-21 08:25:00.361757+00 \N 7 2015-09-02 12:46:53.192677+00 2015-09-02 12:46:53.192717+00 \N \. -- -- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_blogcategory_id_seq', 7, true); -- -- Data for Name: djangocms_blog_blogcategory_translation; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_blogcategory_translation (id, language_code, name, slug, master_id) FROM stdin; 1 en-us announcement announcement 1 2 en-us opennebula opennebula 2 3 en-us hosting hosting 3 4 en-us technology technology 4 5 en-us conference conference 5 6 en-us digitalglarus digitalglarus 6 7 en-us press press 7 \. -- -- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_blogcategory_translation_id_seq', 7, true); -- -- Data for Name: djangocms_blog_latestpostsplugin; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_latestpostsplugin (cmsplugin_ptr_id, latest_posts) FROM stdin; \. -- -- Data for Name: djangocms_blog_latestpostsplugin_categories; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_latestpostsplugin_categories (id, latestpostsplugin_id, blogcategory_id) FROM stdin; \. -- -- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_latestpostsplugin_categories_id_seq', 1, false); -- -- Data for Name: djangocms_blog_latestpostsplugin_tags; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_latestpostsplugin_tags (id, latestpostsplugin_id, tag_id) FROM stdin; \. -- -- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_latestpostsplugin_tags_id_seq', 1, false); -- -- Data for Name: djangocms_blog_post; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_post (id, date_created, date_modified, date_published, date_published_end, publish, enable_comments, author_id, content_id, main_image_id, main_image_full_id, main_image_thumbnail_id) FROM stdin; 23 2015-10-27 12:42:02.441073+00 2015-10-27 19:13:01.792686+00 2015-10-26 21:46:10+00 \N t f 1 165 83 \N \N 18 2015-09-02 12:25:19.265662+00 2015-09-02 13:59:15.590283+00 2015-09-02 12:19:58+00 \N t f 1 26 60 \N \N 3 2015-06-12 20:25:21.334309+00 2015-06-12 20:25:53.912084+00 2015-05-08 20:24:07+00 \N f t 1 10 \N \N \N 25 2015-11-02 07:14:03.208984+00 2015-11-03 18:15:47.839482+00 2015-11-02 07:13:37+00 \N t f 1 167 115 \N \N 26 2015-11-03 07:14:10.10583+00 2015-11-04 21:24:54.861349+00 2015-11-03 07:13:44+00 \N t f 1 168 108 \N \N 4 2015-06-13 09:29:11.424986+00 2015-06-14 04:11:11.044024+00 2015-05-12 09:28:15+00 \N t t 1 11 15 \N \N 1 2015-06-12 17:10:34.563775+00 2015-06-14 04:56:32.215333+00 2015-06-12 17:06:39+00 \N t t 1 7 18 \N \N 5 2015-06-14 21:19:37.805402+00 2015-06-15 15:31:20.062429+00 2015-06-14 21:13:04+00 \N t f 1 12 \N \N \N 6 2015-06-14 21:23:32.36135+00 2015-06-15 20:21:31.387582+00 2015-06-14 21:21:18+00 \N t f 1 13 20 \N \N 7 2015-06-16 20:13:52.392931+00 2015-06-16 21:22:23.122968+00 2015-06-16 20:11:22+00 \N t f 1 14 28 \N \N 21 2015-09-25 12:58:19.001805+00 2015-09-26 23:08:03.300532+00 2015-09-25 12:50:49+00 \N t f 1 29 82 \N \N 8 2015-06-21 08:30:44.597597+00 2015-06-22 21:57:05.18626+00 2015-06-21 08:24:37+00 \N t f 3 15 \N \N \N 9 2015-06-26 09:44:24.647018+00 2015-06-26 09:44:24.647059+00 2015-06-26 09:42:43+00 \N f f 1 16 \N \N \N 20 2015-09-24 14:01:08.712668+00 2015-09-26 23:08:46.642198+00 2015-09-24 13:53:38+00 \N t f 1 28 70 \N \N 19 2015-09-17 19:03:35.293726+00 2015-09-26 23:09:04.211077+00 2015-09-17 18:53:36+00 \N t f 1 27 69 \N \N 17 2015-09-02 09:51:10.78948+00 2015-09-26 23:09:18.317626+00 2015-09-02 09:48:58+00 \N t f 1 25 58 \N \N 16 2015-08-28 14:30:09.988232+00 2015-09-26 23:09:34.766784+00 2015-08-28 14:28:39+00 \N t f 1 24 52 \N \N 15 2015-08-24 21:16:38.83604+00 2015-09-26 23:09:47.958431+00 2015-08-24 21:14:37+00 \N t f 1 23 46 \N \N 11 2015-07-26 22:38:36.92184+00 2015-09-26 23:10:08.706555+00 2015-07-26 22:32:38+00 \N t f 1 19 33 \N \N 10 2015-07-20 19:15:15.52741+00 2015-09-26 23:10:57.788728+00 2015-07-20 18:58:22+00 \N t f 1 18 32 \N \N 12 2015-08-09 17:56:15.448767+00 2015-08-09 20:47:19.000223+00 2015-08-09 17:50:25+00 \N t f 1 20 \N \N \N 13 2015-08-14 22:12:29.983903+00 2015-08-14 23:29:27.6642+00 2015-08-14 22:11:19+00 \N t f 1 21 \N \N \N 30 2015-11-19 20:45:52.51515+00 2015-11-21 16:38:33.169207+00 2015-11-19 20:44:34+00 \N t f 1 174 154 \N \N 28 2015-11-13 05:29:45.387387+00 2015-11-21 17:34:52.094002+00 2015-11-13 05:28:17+00 \N t f 1 170 149 \N \N 27 2015-11-08 20:36:33.582928+00 2015-11-21 17:35:38.331615+00 2015-11-08 20:33:56+00 \N t f 1 169 116 \N \N 24 2015-10-29 13:57:51.225249+00 2015-11-21 17:37:33.806163+00 2015-10-29 13:56:31+00 \N f f 1 166 \N \N \N 31 2015-12-06 21:27:25.53174+00 2015-12-07 16:29:38.237257+00 2015-12-06 21:26:00+00 \N t f 1 195 159 \N \N 32 2016-01-13 21:20:27.348644+00 2016-01-28 17:05:18.376656+00 2016-01-13 21:18:32+00 \N t f 1 196 186 \N \N 33 2016-01-15 15:17:46.001644+00 2016-01-28 17:05:50.046459+00 2016-01-15 15:15:46+00 \N t f 1 197 186 \N \N \. -- -- Data for Name: djangocms_blog_post_categories; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_post_categories (id, post_id, blogcategory_id) FROM stdin; 200 15 1 201 15 6 202 11 1 203 11 6 67 5 3 68 5 4 136 13 3 137 13 4 71 6 2 204 10 6 269 31 6 78 7 2 79 7 5 19 3 1 20 3 3 213 23 2 280 32 6 281 33 6 95 8 1 96 8 5 97 8 6 98 9 5 99 9 6 228 25 1 229 25 6 51 4 1 52 4 2 53 4 3 232 26 6 56 1 1 171 18 4 129 12 1 130 12 3 131 12 4 256 30 6 194 21 6 195 20 6 196 19 6 197 17 6 198 17 7 199 16 1 257 28 6 258 27 2 261 24 1 262 24 6 \. -- -- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_post_categories_id_seq', 281, true); -- -- Name: djangocms_blog_post_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_post_id_seq', 33, true); -- -- Data for Name: djangocms_blog_post_sites; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_post_sites (id, post_id, site_id) FROM stdin; 2 4 1 \. -- -- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_post_sites_id_seq', 4, true); -- -- Data for Name: djangocms_blog_post_translation; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_blog_post_translation (id, language_code, title, slug, abstract, meta_description, meta_keywords, meta_title, post_text, master_id) FROM stdin; 19 en-us Nico Schottelius Talks to Press (in German) our-ceo-nico-schottelius-press-german
Our CEO, Nico Schottelius talks to press About our Digital Glarus project.
\r\n 19 12 en-us The ungleich nginx configuration explained ungleich-nginx-configuration-explainedOur websites are powered by nginx and lots of love
\r\n nginx, django, uwsgi, proxy, configuration 12 13 en-us The ungleich nginx configuration explained (2) ungleich-nginx-configuration-explained-2More details of our nginx configuration - with uwsgi and django
\r\n django, uwsgi, nginx 13 3 en-us Application Hosting application-hostingungleich application hosting starts closed beta!
\r\n ruby on rails, hosting, ungleich, switzerland 3 20 en-us Digital Glarus on Radio! (in German) digital-glarus-radio-germanProject Digital Glarus is broadcasted on Radio! For the ones who missed it on Radiocentral yesterday, we prepared a transcript.
\r\n 20 15 en-us Digital Glarus: The transformation of Glarus started digital-glarus-transformation-glarus-startedFind out where the Digital Glarus train is heading to
\r\n Digital Glarus 15 4 en-us October 20-22 2015, Meet us in Barcelona! opennebulaconf-2015After Berlin, Philadelphia, Hamburg, Dublin, this time it's sunny Barcelona!
\r\n 4 16 en-us The Digital Glarus Manifesto digital-glarus-manifestoEverything you need to know about Digital Glarus
\r\n Manifesto, Digital Glarus 16 1 en-us ungleich blog launched ungleich-blog-launchedStay tuned for our updates...
\r\n 1 17 en-us Digital Glarus in Press (in German) digital-glarus-press-germanWas brauchen Sie, um ihrer Arbeit nachgehen zu können? Nicht mehr, als einen Arbeitsplatz und Ruhe, ist IT-Spezialist Nico Schottelius überzeugt. Seine Firma ist von Zürich nach Luchsingen umgezogen, seinem Beispiel sollen weitere Unternehmen folgen.
\r\n 17 18 en-us Basic cdist usage basic-cdist-usageGet in touch with the most simple and lightweight configuration management system
\r\n cdist, Configuration Management System 18 5 en-us Preview of the ungleich hosting technologies preview-ungleich-hosting-technologiesCurious which technologies are behind ungleich hosting?
\r\n hosting, opennebula, gluster, ceph, Linux, Ruby On Rails, Django, NodeJS, GlusterFS, cdist, PostgreSQL 5 6 en-us OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern opennebula-openstack-cloudstack-opencloudday-bernungleich presents OpenNebula workshop this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.
\r\n 6 7 en-us A great OpenCloudDay 2015 in Bern great-opencloudday-2015-bernGreat talks about OpenNebula, Openstack, Cloudstack, cdist, Ceph, Digital Glarus and much more...
\r\n 7 8 en-us The merger of Born Informatik and adesso Schweiz AG merger-born-informatik-and-adesso-schweiz-agA short report on what happened (at the BBQ)
\r\n born informatik, adesso, adesso Schweiz AG, digital glarus 8 9 en-us Swiss Postgres Conference with cdist swiss-postgres-conference-cdistThe Swiss PostgreSQL experts meeting in Rapperswil
\r\n postgresql, cdist, rapperswil, digitalglarus 9 10 en-us Digital Glarus: The first meetup meeting digital-glarus-first-meetup-meetingToday the "Makers im Zigerschlitz" met the first time
\r\n digital glarus, meetup, hackers, makers, zigerschlitz 10 11 en-us Digital Glarus: Call for Hacking digital-glarus-call-hackingHave you ever hacked a house?
\r\n hacking, digital glarus, property, security, camera, co-working 11 21 en-us 1st Community Meeting of Digital Glarus 1st-community-meeting-digital-glarusThe very first community meeting by ungleich! Digital Glarus project explained to our very warm and supportive local crowd.
\r\n 21 27 en-us OpenNebula workshop at Digital Glarus opennebula-workshop-digital-glarusA very international group came to our OpenNebula workshop in Digital Glarus today.
\r\n 27 23 en-us OpenNebulaConf 2015 with ungleich opennebulaconf-2015-ungleichungleich loves OpenNebula! Team ungleich joined OpenNebula Conference 2015 in Barcelona.
\r\n 23 24 en-us Warum wir das Projekt Digital Glarus gestartet haben warum-wir-das-projekt-digital-glarus-gestartet-habEin IT-Valley in Glarus? Warum das nur?
\r\n 24 25 en-us Fondue im Digital Chalet Schwanden fondue-im-digital-chalet-schwandenEndlich wird es kalt genug...
\r\n 25 26 en-us Das Glarnerland, ein Schatz zum Teilen das-glarnerland-ein-schatz-zum-teilenOder: Warum ich das Projekt Digital Glarus gestartet habe
\r\n 26 30 en-us Jazz in Digital Glarus jazz-digital-glarusDigital Glarus gets only cooler and cooler. This time, it's jazz!
\r\n 30 28 en-us Wissen tauschen neu mit wissenstausch.ch in Digital Glarus wissen-tauschen-neu-mit-wissenstauschch-digital-glWissenstausch.ch erweitert das Angebot um Kurse im Glarnerland!
\r\n 28 31 en-us Jazz at Digital Chalet Schwanden jazz-digital-chalet-schwandenJazzband FivePastEight played at Digital Chalet Schwanden! A night with a great music at our coworking space!
\r\n 31 32 en-us Crowdfunding campaign : mission accomplished! crowdfunding-campaign-mission-accomplished111.1% funded! Read our 100 days of success!
\r\n 32 33 en-us Crowdfunding-Kampagne: Mission erfolgreich. crowdfunding-kampagne-mission-erfolgreich111.11% finanziert! Lies von unseren 100 Tagen des Erfolges
\r\n 33 \. -- -- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_blog_post_translation_id_seq', 33, true); -- -- Data for Name: djangocms_flash_flash; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_flash_flash (cmsplugin_ptr_id, file, width, height) FROM stdin; \. -- -- Data for Name: djangocms_googlemap_googlemap; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_googlemap_googlemap (cmsplugin_ptr_id, title, address, zipcode, city, content, zoom, lat, lng, route_planer_title, route_planer, width, height, info_window, scrollwheel, double_click_zoom, draggable, keyboard_shortcuts, pan_control, zoom_control, street_view_control) FROM stdin; \. -- -- Data for Name: djangocms_inherit_inheritpageplaceholder; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_inherit_inheritpageplaceholder (cmsplugin_ptr_id, from_language, from_page_id) FROM stdin; \. -- -- Data for Name: djangocms_link_link; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_link_link (cmsplugin_ptr_id, name, url, anchor, mailto, phone, target, page_link_id) FROM stdin; \. -- -- Data for Name: djangocms_page_meta_pagemeta; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_page_meta_pagemeta (id, og_type, og_author_url, og_author_fbid, og_publisher, og_app_id, twitter_author, twitter_site, twitter_type, gplus_author, gplus_type, extended_object_id, image_id, og_author_id, public_extension_id) FROM stdin; \. -- -- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_page_meta_pagemeta_id_seq', 1, false); -- -- Data for Name: djangocms_page_meta_titlemeta; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_page_meta_titlemeta (id, keywords, description, og_description, twitter_description, gplus_description, extended_object_id, image_id, public_extension_id) FROM stdin; 1 blog, ungleich, hosting, switzerland ungleich blog 3 \N 2 2 blog, ungleich, hosting, switzerland ungleich blog 4 \N \N \. -- -- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_page_meta_titlemeta_id_seq', 2, true); -- -- Data for Name: djangocms_snippet_snippet; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_snippet_snippet (id, name, html, template) FROM stdin; \. -- -- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('djangocms_snippet_snippet_id_seq', 1, false); -- -- Data for Name: djangocms_snippet_snippetptr; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_snippet_snippetptr (cmsplugin_ptr_id, snippet_id) FROM stdin; \. -- -- Data for Name: djangocms_teaser_teaser; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_teaser_teaser (cmsplugin_ptr_id, title, image, url, description, page_link_id) FROM stdin; \. -- -- Data for Name: djangocms_text_ckeditor_text; Type: TABLE DATA; Schema: public; Owner: app -- COPY djangocms_text_ckeditor_text (cmsplugin_ptr_id, body) FROM stdin; 195 \n 111Â
\n\nBis vor Kurzem sei das Glarnerland für ihn ein schwarzer Fleck auf der Landkarte gewesen. Und nicht nur für ihn: «Dass man in Ziegelbrücke auch rechts abbiegen kann, ist vielen Zürchern immer noch nicht bekannt», lacht Nico Schottelius, der gebürtige Deutsche aus Zürich, der seit 2014 im Glarnerland wohnt und seit vergangenen März auch dort arbeitet.
\n\nÂ
\n\nFür seine wachsende IT-Firma ungleich.ch war Schottelius auf der Suche nach neuen Büroräumlichkeiten. In Zürich und Umgebung wurde er nicht fündig, die Mietpreise sind zu hoch, ausserdem sei Zürich laut, teuer und überfüllt. Seine Firma beschäftigt zurzeit sechs Mitarbeiter, davon arbeiten vier in der Schweiz, einer in El Salvador und einer in Tschechien. «Für unsere Arbeit in der IT-Branche spielt es keine Rolle, wo wir uns befinden.» Da er zur Ausübung seines Berufes nichts weiter als einen Arbeitsplatz und Ruhe brauche, sei er auf das Glarnerland gekommen, wegen der leistbaren Immobilienpreise und eben, der Ruhe. Anstatt zu mieten, hat er sich kurzerhand ein Haus in Luchsingen gekauft, wo er nun gleichermassen lebt und arbeitet. «Ich nenne das Glarnerland ‘Märchental’ es ist so schön, hier zu leben. Warum also soll es nicht auch schön sein, hier zu arbeiten?» ist er überzeugt. Das Glarnerland habe einen unglaublichen natürlichen Charme zu bieten, Charme, der in Zürich teuer gekauft werden muss.Â
\n\nÂ
\n\nSchottelius hat die Adressänderung seines neuen «Headquarters» den Kunden erst gar nicht mitgeteilt. «Wir arbeiten komplett virtuell, ich dachte, das interessiert ja keinen, wo sich unser Firmensitz befindet». In der IT- Branche gebe es heutzutage keinen Grund mehr, vor Ort zu arbeiten.
\n\nÂ
\n\n\n\nHat Spass am Leben und an seiner Arbeit: Nico Schottelius ist mit seiner Firma und seinen Ideen auf Erfolgskurs.Â
\n\nBild Tina Wintle
\n\nÂ
\n\nÂ
\n\nÂ
\n\nSchottelius ist überzeugt, dass weitere Firmen von der Ruhe des Glarnerlandes, der günstigen Büroräumlichkeiten sowie der Nähe zu Zürich profitieren würden, wüssten sie, dass «das Glarnerland auch als Wohn- und Arbeitsplatz existiert». Er hatte deshalb die Idee, weitere Firmen nach Glarus, im Speziellen nach Glarus Süd zu holen. Das Konzept der sogenannten Working-Spaces, also Firmen, die in gemeinsam genutzten Räumen tätig sind, sorgt derzeit in den grossen Schweizer Städten für Furore. Bei den Co-Working-Spaces arbeiten verschiedene Firmen unter einem Dach, in dem sie einzelne Arbeitsplätze oder Büros mieten. Dadurch werden Kosten gespart, Synergien genutzt, sowie soziale Kontakte gepflegt. «Solche geteilte Arbeitsplätze sind unglaublich inspirativ», ist Schottelius überzeugt. Waren es erst Einzel- dann Grossraumbüros, welche die Firmen ihren Mitarbeiter anboten, und folglich dann wieder das Homeoffice, so seien es heute die co-working-spaces, die die zukünftige Arbeitsweise darstellten. «Das ist nicht nur Zukunftsmusik, sondern ein Trend, der der Zukunft voraus ist», ist Schottelius überzeugt.
\n\nÂ
\n\nÂ
\n\nIn Schwanden soll nun der erste Co-Working-Space im Glarnerland entstehen. Das Haus sei ein charmanter Altbau und soll erst einmal vier bis sechs Arbeitsplätze bieten. Zusätzlich sind jeweils vermietbare Studentenzimmer in den Häusern geplant. Pro Tag soll ein Co-Working-Space 15 Franken kosten, pro Monat ist ein maximaler Mietbetrag von 300 Franken vorgesehen.Â
\n\nÂ
\n\n«Das Haus in Schwanden ist ein Prototyp zum Anfassen, auch, damit die Bevölkerung sieht, wie das System der Co-Working-Spaces funktionieren soll.» Bereits habe er Anfragen von interessierten Firmen erhalten, die Idee komme gut an, mit ersten Mietern sei man im Gespräch. Er sei von seinem eigenen Zug überrollt worden, erklärt Schottelius, in einem Testausschreiben sollen sich auch bereits Zürcher Studenten gemeldet haben, die an den geplanten Zimmern in Schwanden Interesse zeigten. «Die Preise sind einfach unschlagbar und die Distanzen zu den grossen Ballungszenten gering». Schottelius stellt sich vor, dass die zu mietenden Arbeitsplätze ab 2016 zur Verfügung stehen. Die Studentenzimmer dürften ab Oktober zum Einzug bereit sein.Â
\n\nÂ
\n\n«Menschen gehen dorthin, wo andere Menschen sind», ist er überzeugt. Kämen die ersten Firmen, würden weitere folgen. Es schweben ihm weitere Ideen vor, wie Restaurantpässe sowie Freizeitangebote, welche die Co-Workers und Studenten vergünstigt nutzen können oder mietbare Velos, um noch schneller von den Bahnhöfen zu den Arbeitsplätzen zu gelangen. Funktioniert das Konzept in Schwanden, will er weitere Co-Working-Spaces aufbauen, in Glarus Süd, aber auch im ganzen Glarnerland.
\n\n- Glarnerwoche 2015/09/02Â
\n\nÂ
\n 138It finally happened! Team ungleich invited the local people of Glarus to join us for an open talk, sharing our vision of Glarus as the future IT valley of Switzerland.
\n\n\n\nIt was a rainy Tuesday evening, not a very typical time for locals to go out for sitting at a meeting they are not super familiar with. But still the adventurous, kind and curious people of Glarus showed up to check us out, and everybody ended up having a great time with us.Â
\n\n\n\nOur event started by Nico's introduction of team ungleich, followed by his presentation explaining project Digital Glarus. During presentation Nico shared ungleich's vision of giving life to old and unused buildings of Glarus, by bringing tech people from too expensive and too crowded IT hub Zurich.Â
\n\nÂ
\n\n\n\n\n\nVery positive and constructive feedback was shared by the audience after Nico's presentation. Everybody remained after the presentation to have a cozy apéro prepared by team ungleich. What a lively talk we had with the audience! Certainly from our audience, the project Digital Glarus is warmly welcomed by our community. During the evening we were assured multiple times that we chose the right place to start such a project.Â
\n\nWith the internet we can connect with anybody anywhere, still it was great to have real human contact, talk to them in person and be energized and inspired.Â
\n\nThe event was broadcasted by , thanks to who were with us there. The full interview's transcript you can check out in
\n\n\n\nÂ
\n\nOh and special thanks to our great team, Dominique and Dave, who came all the way from Fribourg and Zug to charm our guests as handsome bartenders!
\n\nÂ
\n\nStep by step we're moving forward! Please check out our crowdfunding campaign too!Â
\n\n\n\nÂ
\n 205 \n 170 WIESO SOLLTE SICH JEMAND FÃœR DAS INTERESSIEREN?\n 174 \n 561Finally!
\n\nAfter some years that most of our work appeared in individual blogs, we are today starting the ungleich blog. For those who have been visiting our blog before and  wonder why we are announcing it today: The previous blog was just a static site, wheras this blog is based on .
\n\nIt will be a technical, maybe even social blog. So stay tuned for our updates...
\n 4We're on the road again! After Berlin (LinuxTag), Philadelphia (UCMS), Hamburg, and Dublin (Websummit), ungleich visits another fabulous city to meet great people out there in the OpenSource community. This time, it's sunny Barcelona!
\n\nTeam ungleich is proud to announce that we are sponsoring OpenNebulaConf 2015.
\n\n\n\n\n\n
ungleich, a passionate supporter of FOSS, has been using OpenNebula for a while, and now became a gold sponsor of the upcoming annual OpenNebula conference.
\n\nWe will be on site at the conference to meet and exchange ideas of users and supporters of OpenNebula. It is an exciting opportunity for ungleich to contribute to the FOSS community!
\n\n\n\nCompared to bigger-named peers like Openstack or cloudstack, OpenNebula is (yet) less known in the field. There are reasons why ungleich is enthusiastic about OpenNebula, and one is its beautiful simplicity! OpenNebula is lean and is made for real world problems, very well fitted to experts at team ungleich, and maybe you.(=Linux user, FOSS supporter, distressed sysadmin!) OpenNebula is easily configurable with our configuration management cdist.
\n\n\n\nMeet us at OpenNebulaConf 2015 and learn how small to large scale hosting infrastructures are configured with the configuration management system cdist.
\n\nWe are excited to connect with many of OpenSource supporters out there, hopefully to inspire others and to be inspired! And, October in Barcelona, doesn't it just sound very tempting?!
\n\nSee you soon in Barcelona!
\n\n\n\nÂ
\n 562Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\n\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge variety of great food offers forms what we call "Digital Glarus".
\n\nThe valley also known as "Glarnerland" has many gorgeous, eye-catching buildings from former industrial area.
\n\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\n\nÂ
\n\n 563Lieber Blog-Folger und Leser, wir sind sehr erfreut, dass wir ein erfolgreiches Ende unserer 100 tägigen Crowdfunding-Kampagne ankündigen können. Mit sehr grosszügigen Spenden unserer Unterstützer haben wir unser Ziel von 20'000 CHF erreicht, nicht nur das, unsere Kampagne wurde schlussendlich mit 111.11% finanziert. Juhu! Danke viel mals für all die Unterstützung und Aufmerksamkeit, welche wir während der ganzen Kampagne von euch erhalten haben.
\n\n\n\nDieser Artikel ist schon lange überfällig, da unsere Crowdfunding-Kampagne bereits seit einer Woche beendet ist, aber unser Team war zu sehr damit beschäftigt, Anrufe und E-Mails mit Gratulationen und Glückwunschen aus der Opensource Community, aus der Coworking Space Community, lokalen und nationalen Geschäften, und unseren Freunden, zu beantworten.
\n\n
\n
Und wir sollten nicht vergessen zu erwähnen, dass wir es in der Zwischenzeit auf die Titelseite der Zeitung geschafft haben.
\n\nÂ
\n\n\n\nHaben wir schön gesagt wie cool es war, unseren Projektleiter auf der Titelseite zu sehen? Falls wir es vergessen haben, es war wirklich, wirklich cool. Wie unser Teammitglied Dominique sagen würde «meeega cool».
\n\n
\n
… Und es war auch super cool wie das Renovationsprojekt unseres Coworking-Spaces in den Abendnachrichtem um 18:00 Uhr im Fernsehn kam. Wenn sich Erfolg so anfühlt, könnten uns sehr schnell daran gewöhnen!
\n\nÂ
\n\nObwohl die Kampagne nun beendet ist, liegt noch einen Haufen Arbeit vor uns, oder, die eigentliche Arbeit beginnt erst jetzt. Die Crowdfunding-Kampagne war nur der Beginn einers Marathons und wir sind jetzt bereit für einen langen Lauf. Laut der Kampagnen-Platform 100days.net, erhalten wir die Finanzierung in zwei Monaten: Wir probieren so transparent wie möglich zu sein in Anbetracht der Verwendung des Geldes für die Renovation und Umgestaltung des Coworking Spaces. Unsere Goodies für die Unterstützer, wie beispielsweise Postkarten oder T-Shirts sind in der Produktion. Die Renovation des Coworking Spaces wird im Frühling starten. Nicht weil wir unnötig länger mit der Renovation warten möchten, sondern…
\n\n\n\nweil wir hier in der Schweiz leben und das Wetter hier zurzeit so aussieht. Das ganze Gebiet wird die nächsten Monaten unter dieser Schneedecke versteckt bleiben, kein ideales Wetter um das Dach zu öffnen, oder die Fenster zu wechseln. In der Zwischenzeit werden wir mit der Planung beginnen. Im Frühling können wird dann die Arbeiten unter besseren Wetterbedingungen beginnen.
\n\nÂ
\n\nWir können nicht genug Dank an unsere Unterstützer für diesen Erfolg aussprechen. Wir wissen das ohne unsere Unterstützer, welche uns bei unseren Ideen zugehört haben und uns in unserer Vision ermutigt haben, nichts geklappt hätte. Wir möchten nochmals erwähnen wie dankbar und begeistert wir für die erhaltene Liebe und Unterstützung sind.
\n\n
\n
Falls du es noch nicht gesehen hast, wir haben eine schöne Timeline-Slider auf unserer zweisprachige aufgeschalten. Der Slider ist eine schöne simple Darstellung des Wachstums unserer simplen Idee bis hin zum Crowdfunding Erfolg.
\n\nÂ
\n\nFür die, welche die Chance an der Crowdfunding-Kampagne teilzunehmen, verpasst haben, unser Spendekanal ist immer noch offen. Bei einer Spende kannst du dein Name auf die Liste der virtuellen Unterstützer vom Projekt Digital Glarus auf unserer Webseite verewigen. Für mehr Informationen kannst du uns via kontaktieren. Es könnte sein, dass wir ein wenig voreingenommen sind, aber ehrlich gesagt ist es einfach super spannend und für uns eine riesen Freude einen Teil von diesem coolen Projekt zu sein.
\n\nÂ
\n\nZu guter letzt: Ein frohes neues Jahr euch allen! Bleibt auch im 2016 weiterhin an unserer Seite: Wir hörten, dass es das richtige Jahr sei um das Coworken nach Digital Glarus zu bringen!
\n 1Copyright © ungleich GmbH 2016
\n 114 115You can easily get the code for cdist from github:
\n\nIf you want the man pages run:
\n\nThe man pages are now generated in the docs/ directory.
\n\nOr get the latest man pages .
\n\nTo run cdist on the source host (the one who configures the target host) the following software is required:
\n\nOn the target host only ssh is required
\nAlso it is recommended to use ssh over ssh-key authentication.
\nOther hints you can find in theÂ
For shortly testing cdist, run:
\n\nAnd for seeing the usage, run:
\n\nÂ
\n\nÂ
\n\nImportant directories are the installation directory and the $HOME/.cdist/ directory.
\n\nIn the installation directory you can find the cdist binary, standard provided cdist types and other important files for cdist.
\n\nThe $HOME/.cdist/ directory is for your locally needed configuration and has the following directory tree:
\n\nÂ
\n\nCreate a new manifest with the following command:
\n\nThis manifest will use the _file for creating the file /tmp/hello_world.
\nFor more information about the __file type see installation_dir/cdist/conf/type/_file/man.text
Â
\n\nFor running your first own made cdist manifest on localhost use the following command:
\n\nÂ
\n\nIf you have trouble or want more information visit the  or write us!
\n\nÂ
\n\n\n 175Â
\n\nÂ
\n 171Das momentane de-facto Technik-Zentrum der Schweiz, Zürich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, überbevölkert.
\nUm es genau zu nehmen überfüllt, teuer und laut… Obwohl die hohe Dichte der Personen für Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\nWieso nicht in schönen Gebäuden in Glarus neu beginnen?
\nWir wissen, dass Zeit, Geld und Leidenschaft benötigt wird um reizend für Technik-Unternehmen zu werden, damit diese hier her kommen.
\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegenüber dem Verbleib in einer überfüllten Stadt.
WIESO GLARUS?
\n 564While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.
\n\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\n\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in Switzerland are more orientated on living healthy, which is exactly what Glarnerland can provide.
\n 196 \n 565Â
\n\nWe're on the road again! After Berlin(LinuxTag), Philadelphia(UCMS), Hamburg, and Dublin(Websummit), ungleich visits another fabulous city to meet great people out there in the OpenSource community. This time, it's sunny Barcelona!
\n\nTeam ungleich is proud to announce that we are sponsoring
\n\nungleich, a passionate supporter of FOSS, has been using OpenNebula for a while, and now became a gold sponsor of the upcoming annual OpenNebula conference.
\n\nWe will be on site at the conference to meet and exchange ideas of users and supporters of OpenNebula. It is an exciting opportunity for ungleich to contribute to the FOSS community!
\n\n\n\nCompared to bigger-named peers like Openstack or cloudstack, OpenNebula is (yet) less known in the field. There are reasons why ungleich is enthusiastic about OpenNebula, and one is its beautiful simplicity! OpenNebula is lean and is made for real world problems, very well fitted to experts at team ungleich, and maybe you.(=Linux user, FOSS supporter, distressed sysadmin!) OpenNebula is easily configurable with our configuration management cdist.
\n\n\n\nMeet us at OpenNebulaConf 2015 and learn how small to large scale hosting infrastructures are configured with the configuration management system cdist.
\n\nWe are excited to connect with many of OpenSource supporters out there, hopefully to inspire others and to be inspired! And, October in Barcelona, doesn't it just sound very tempting?!
\n\nSee you soon in Barcelona!
\n\n\n 20 176We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\n 172 WO SIND WIR\n 125VON BRIGITTE TIEFENAUER (TEXT UND BILD)
\n\nSie wecken den Eindruck zweier Lausbuben: in jeder Hand einen PetÂRohling, im Gesicht ein breites Grinsen und in der Luft liegt ein Hauch von Spannung: Mike Zweifel, junger Familienvater aus Näfels, in Jeans und Freizeithemd; Nico Schottelius, Geschäftsmann deutscher Abstammung, blauer Anzug und Brille, das blonde Haar zum Rossschwanz ge bunden. Gleich gesinnt und trotzdem ein ungleiches Paar, verkabelt mit dieÂsen PetÂRohlingen. Wenn der eigene Rohling blinkt, wird gedrückt. Wer schnell reagiert, gewinnt. Wer zögert, erntet ein akustiÂsches «Mäh» und fliegt raus. Acht Leute könnten theoretisch mitspielen. «Das Spiel ist lustig und so einfach», sagt Zweifel. Er hat es erfunden. Simple Platine, eingebaut in ein gut streichholz grosses Kästchen, einige Widerstände und etwas Kabel aus dem Fachmarkt lassen die PetÂBuzzer leuchten. «Sieht aus wie vom Profi, nicht?»
\n\nÂ
\n\nMIKE ZWEIFEL, der etwas Jüngere, ist Assistenzarzt in einer Kinderarztpraxis in Rüti (ZH); Nico Schottelius InformaÂtiker, Hacker, Geschäftsführer der Ungleich GmbH mit Sitz in Luchsingen und Initiator von digitalglarus.ch. Tagsüber sei er berufstätig und nachts Hacker, so Zweifel. «Nein, nicht gemäss dem negativen Touch, der dem Begriff leider anhaftet», winkt er ab. «Der Hacker schaut, wie etwas funkÂtioniert, nimmt Dinge auseinander und analysiert sie, um sie zu verstehen und zu verbessern.» Die schwarzen Schafe, die versuchten, illegal Systeme zu maniÂpulieren, hätten den Tüftlern den
\nschlechten Ruf eingebracht.
«Symbolisch für den Spass, der ja auch nie vergessen werden soll, demonstriert Zweifel die «Heimkehrerlampe». Er hat sie aus einem Funkempfänger, einer Lichterkette und einem Stromregler für seine Frau gebastelt. «Wenn mein Dienst sich hinzieht, schalte ich die Lampe per Handy auf rot, wenn der Feierabend sich nähert auf gelb und wenn ich mich auf den Heimweg mache, auf grün.» Zweifel lacht. Was piept, blinkt und sich bewegt fasziniert mich und macht mir Spass.»
\nMIKE ZWEIFEL
Im Gegensatz zu Zweifel ist Schottelius hauptberuflich «Hacker». Was aber nicht heisse, dass er rund um die Uhr arbeite. «Das wäre ungesund», räumt er ein. Vor zehn Jahren ist er über eine OpenÂSource Firma in die Schweiz gekommen und schliesslich, auf der Suche nach einem erschwinglichen Büro für seine eigene Firma, die UnÂgleich.ch, in Luchsingen fündig geworÂden. Seine virtuelle Arbeitswelt sei glücklicherweise nicht ortsgebunden, meint er, das Glarnerland zum Wohnen preiswert und bilderbuchschön.
\n\nSCHOTTELIUS’ HAUPTBUSINESS ist der Aufbau von LinuxÂInfrastrukturen für andere ITÂFirmen. Linux ist ein BetriebsÂsystem wie Windows oder Mac und wird hauptsächlich von Internetfirmen verwendet. Seine Kunden sind WebÂdesign und ÂentwicklerÂFirmen, für welche die Firma die Ungleich.ch Server auf LinuxÂBasis betreibt. In der OpenÂSource Entwicklung
\nkann laut Schottelius jeder mitmachen: Programmcode herunterladen, studieÂren und anpassen. «Wir Hacker haben
\nhäufig den kleinen Weltverbesserer im Hinterkopf, wenn wir Bestehendes optiÂmieren oder Neues entwickeln.» Zweifel, der HobbyÂHacker, hat sich das Metier von der Pike auf mit «learning by doing» beigebracht. «Was piept, blinkt und sich bewegt fasziniert mich und macht mir Spass», sagt er.
Den Spass wolle er nun in einem Makerspace nach dem Vorbild bestehen der Makerspaces, Hackerspaces oder Fab
\nLabs teilen: «Das sind diese Orte, an denen du Ausrüstung findest und Gleichgesinnte triffst. Das funktioniert doch auch im Glarnerland.»
Â
\n\n\n\nAUFRUF UND NACHFRAGE sozusagen haÂben Schottelius und Zweifel zusammen geführt. «Makers im Zigerschlitz» heisst ihr Produkt. Das Hosting, das virtuelle Zuhause, bietet Schottelius über UnÂgleich.ch. Unter den klugen Köpfen, die sich auf dieser Plattform voraussichtÂlich bald tummeln, erhofft er sich auch Ressourcen für seine Firma. Neben dem virtuellen bietet er den Makers im Zigerschlitz künftig auch ein reales Zuhause. Der CoÂWorkingÂSpace, den Schottelius in einem Haus in Schwanden plant, umfasst ein Café, Büros, einen Raum für Meetings, aber auch einige günstige Mietzimmer etwa für Studenten, welche die Synergien des CoÂWorkingÂSpaces nutzen wollen. «Statt Wände zwischen KonkurrenÂten hochzuziehen, profitieren wir vom kollegialen Zusammenspiel.» Hier könÂnen Informatiker, Programmierer, DeÂsigner oder Elektronikfreaks ihre Lust am Werkeln und Experimentieren ausÂleben und an ihren eigenen Projekten
\nund Unternehmungen arbeiten.
NEBEN DER ELEKTRONIKECKE bieten die beiden auch ein Fotolabor. Später sollen 3ÂDÂDrucker, Lasercutter oder CNCÂFräÂsen hinzukommen. «Es sind nicht nur jede Art Elektroniker willkommen», sagt Schottelius, «wir freuen uns auch
\nüber Maker anderer Berufsgattungen, die als Spezialisten ihrer Fachgebiete an gemeinsamen Projekten arbeiten möchÂten oder anderen ihre Metiers nahebrinÂgen wollen.»
«Was in den Makerspaces abläuft, wird von der Industrie aufgegriffen.» NICO SCHOTTELIUS
\n\nSymbolisch für den Spass, der ja auch nie vergessen werden soll, demonstriert Zweifel die «Heimkehrerlampe». Er hat sie aus einem Funkempfänger, einer Lichterkette und einem Stromregler für seine Frau gebastelt. «Wenn mein Dienst sich hinzieht, schalte ich die Lampe per Handy auf rot, wenn der Feierabend sich nähert auf gelb und wenn ich mich auf den Heimweg mache, auf grün.» Zweifel lacht.
\n\nEIN ETWAS ERNSTERES WERK ist der Strommesser, den er für seinen Vater, Inhaber einer Solarfirma, entwickeln möchte. Das Gerät zeichnet, etwa im Haus eines Kunden, den StromverÂbrauch im Verlauf des Tages detailliert auf. «Kein kommerzielles Produkt, aber es könnte eines daraus werden», so Zweifel. Und Schottelius: «Was in den Makerspaces im kleinen Stil abläuft, wird in 10 bis 15Jahren von der IndusÂtrie aufgegriffen und entwickelt.» Wer sich heute in Versuch und Irrtum übe, rüste sich für die Zukunft. Denn mittelfristig zählten kaum mehr Assessments und Erfahrung, ist SchotteÂlius überzeugt. Vielmehr gilt: «Du bist, was du kannst.» «Klugen Köpfen» gibt er deshalb die Chance, sich mit einem TestÂprojekt zu beweisen. «Das ist die bessere Referenz als jedes Ausweispapier.» Auch für das Glarnerland sieht der Jungunternehmer grosses Potenzial. «Wo altehrwürdige Industriegebäude verstummen, gibt es Raum für digitale Projekte und damit Arbeitsplätze. Und dies in schönster, gesunder Umgebung», schwärmt er. «Beautiful, affordable and direct» oder «schön, erschwinglich und direkt», heisst es dazu zusammenfasÂsend auf der Webseite digitalglarus.ch, auf der Glarus als «Techvalley in the Heart of Switzerland» beschrieben wird.
\n\nï‚¢ MOOD LAMP
\nDer erste Glarner «Maker-space» öffnet seine Türen am Samstag, 17. Oktober. Am Vormittag ab 9 Uhr und am Nachmittag von 14 bis 17 Uhr lernen Neugierige ab zwölf Jahren bei den Makers im Zigerschlitz, wie man mit der Entwickler-Plattform Arduino winzige Chips dazu bringt, LEDs zum Leuchten zu bringen. Oder wie man Mikrokontroller mit Reglern oder Sensoren verbindet und damit einen Motor ansteuert. «Mit dem Wissen bauen und programmieren wir eine Dekolampe – unsere Mood Lamp», steht in der Einladung. Treffpunkt: Digital Chalet Schwanden, in der Au 7. Anmeldung: www.zigerschlitzmakers.ch.
Â
\n\n«Der Hacker schaut, wie etwas funktioniert, und nimmt Dinge auseinander.» MIKE ZWEIFEL
\n\nï‚¢ FINANZIERUNG
\n\nCrowdfunding ist eine moderne Art, zusammen ein Projekt zu finanzieren. Um möglichst viele Interessenten zu erreichen,
\nwerden solche Projekte auf Crowdfunding-Plattformen im Internet veröffentlicht. Das Projekt Digital Glarus beispielsweise startet ab Oktober ein Crowdfunding, um die Renovation des Co-Working-Spaces in Schwanden zu finanzieren. Wie Crowdfunding funktioniert, erklärt Nico Schottelius am Mittwoch, 23. September, ab 18.30 Uhr im Digital Chalet, in der Au 7, in Schwanden. Mehr Infos dazu im Internet unter www.meetup.com oder www.digitalglarus.ch.
«Wir Hacker haben häufig den kleinen Weltverbesserer im Hinterkopf.» NICO SCHOTTELIUS
\n\n-DIE SÃœDOSTSCHWEIZ-2015/09/13
\n 197Recently we announced our first application hosting:Â . As you can see on the site, we are still in an early Beta for subscriptions, however the technology stack that we use behind it, has been in use for some years already.
\n\nAs we are an Open Source company, we are also  very open about our work. Actually, a lot of the work we do for our customers can be open sourced, because many of our customers are living the Open Source Spirit, but that is a different blog post...
\n\nWhile our first incarnation of hosting was completely managed by , we moved on to use , so we can let people manage their virtual machines on their own and via a WebUI.
\n\nIn our second incarnation we gave a try, however the performance was not as good as we hoped. In our current hosting we are using for storing the High Availability VMs.
\n\nFor the frontend to our hosting we have chosen a combination of , , , , and . The complete stack is configured by cdist.
\n\nÂ
\n\nThat's a sneak preview on what we used for our new hosting - we will write more about how we glued together all components in a future entry.
\n\nÂ
\n 504 153Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\n\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge variety of great food offers forms what we call "Digital Glarus".
\n\nThe valley also known as "Glarnerland" has many gorgeous, eye-catching buildings from former industrial area.
\n\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\n\nÂ
\n\n 207 WUNDERSCHÖNE LANDSCHAFT \n 566The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\n 177We're excited to share that our project Digital Glarus was broadcasted on Swiss radio by ! For the ones who missed it yesterday, we prepared a transcript.Â
\n\n\n\nRuhe, viel Platz, eine wunderbare Umgebung und günstiger Raum - diese Argumente sollen in Zukunft Informatikfirmen ins Glarnerland locken. Davon überzeugt ist ein IT-Jungunternehmer, der vor gut 2 Jahren seine Firma von Zürich auf Glarus Süd gezügelt hat. Gestern Abend hat er zum ersten Mal die Bevölkerung von Glarus Süd informiert. Christian Zweifel war dabei:
\n\nModerator : Christian Zweifel, Wirtschaftsförderer : Urs Keiser, Projektleiter : Nico Schottelius
\n\nÂ
\n\nÂ
\n\nChristian Zweifel (CZ)  Gestern Abend um 6 Uhr hat Herr Nico Schottelius im dunkelblauen Anzug den interessierten Anwohnern sein neues Projekt: "Digital Glarus" vorgestellt. Er ist Informatik-Jungunternehmer und Initiant vom Projekt "Digital Glarus". Ursprünglich aus Deutschland, lebt er nun seit einigen Jahren in der Schweiz und seit bald zwei Jahren in Glarus Süd.Â
\n\nEr hat folgendes Ziel:
\n\nÂ
\n\nNico Schottelius (NS)  Ich würde gerne das Glarnerland modernisieren. Das Glarnerland hat sehr viele schöne alte Fabrikhallen. In Zürich jedoch sind alle Informatiker auf engem Raum und suchen eigentlich einen guten neuen, günstigen und schönen Arbeitsplatz. Ich denke, das wäre das Glarnerland.
\n\nÂ
\n\n\n\nÂ
\n\nCZ Arbeitsraum in und um die Agglomeration Zürich ist teuer, trotzdem ist das Glarnerland recht nahe und bietet alles, was ein Informatiker zum Arbeiten benötigt.Â
\n\nÂ
\n\nNS Ganz genau, ich denke der Informatiker benötigt nur sein Notebook und Internet. Wenn wir das hier aufgebaut haben, kann er im Prinzip auf einer Bank, auf der Alp oder in einem Restaurant sitzen und arbeiten. Das ganze funktioniert natürlich auch in einem Co-Working-Space, wie wir ihn gerade in Schwanden aufbauen.
\n\nÂ
\n\nCZ  Co-Working-Space ist das Schlagwort. Nicht mehr jeder Unternehmer alleine, sondern zusammen arbeiten, sich gegenseitig inspirieren und Lösungen entwickeln. Die Zeiten, als Informatiker nur für sich alleine arbeiteten und der Konkurrenz möglichst nichts verrieten, sind laut Nico Schottelius nun definitiv vorbei.
\n\nÂ
\n\nNS Früher haben ja IT-Firmen immer sehr voneinander abgekapselt gearbeitet. Man hat versucht, das Wissen zu behalten und ja nicht dem nebenan zu verraten, was man macht.Â
\n\nHeutzutage mieten sich IT-Firmen zusammen eine grosse Halle, wie z.B. eine Fabrikhalle, platzieren darin alle ihre Büros und sitzen dann gemeinsam an einem Tisch, um zu diskutieren wie man voran kommt.  Das alte "Jeder macht eins" macht man heute nicht mehr, sondern jetzt sitzen alle zusammen in einer Halle. Das ist eigentlich ein Co-Working-Space.
\n\nÂ
\n\nCZ Solche Co-Working-Spaces bestünden bereits in der ganzen Schweiz. Vor allem in Zürich aber auch in anderen Städten, sogar die SBB biete mindestens zwei solche Arbeitsplätze an. Warum sollten sich diese nicht in Glarus-Süd befinden?Â
\n\nSolche Initiativen von jungen Leuten spielen natürlich dem Standortförderer von Glarus Süd, Urs Keiser in die Hände.
\n\nÂ
\n\n\n\nÂ
\n\nUrs Keiser(UK)  Absolut spielt das uns in die Hände und wir haben mit Herr Schottelius auch bereits Gespräche geführt.Â
\n\nDies ist eine Initiative, die sehr gute ist. Und es ist toll, dass sie von unten kommt. Wir haben im Moment diverse solche Anfragen, auch von grösseren Firmen, mit ähnlichem Vorhaben.
\n\nUnsere Rolle ist zu vernetzten und zu schauen, dass keine Doppelspurigkeiten entstehen, auch dass sich die Initiativen von Unten entwickeln können. Wir begrüssen jede Initiative, die hier im Glarnerland stattfindet.
\n\nÂ
\n\nCZÂ Der Weg sei also von unten, von initiativen Leuten. Das funktioniere besser, als wenn von oben her versucht wird, solche Projekte wie "Digital Glarus"Â umzusetzen. Das Glarnerland habe Potential und es laufe auch viel in diese Richtung.
\n\nÂ
\n\nUK Ich denke, das weiss die Bevölkerung von Glarus-Süd auch. Glarus-Süd ist auch besser, als die Leuten denken, das es ist..
\n\nEs läuft momentan sehr viel und das vernetzen wir. Ich denke, man sollte nicht warten, man sollte einfach machen. Wir müssen lediglich schauen, dass alles in einer korrekten Richtung zusammengeführt wird.Â
\n\nVisionen sind viele da, aber Visionen helfen uns nicht weiter. Also machen: "Ärmel zrügg chremple" und "schaffe". Wenn sich die Leute engagieren wird es meistens gut.
\n\nÂ
\n\nCZ  Hier könne der Initiant von Digital Glarus, Nico Schottelius, auf die Tipps und Mithilfe der Behörden zählen. Herr Schottelius verstehe auch, dass der Kanton Glarus solche Projekte nicht so grosszügig unterstützen könne wie z.B. Zürich.
\n\nDarum hofft auf Unterstützung von allen: Von der Bevölkerung aber auch von anderen Jungunternehmer, Studenten oder Interessierten, welche einen "Zustupf" über ein so genanntes Crowd-Funding, also z.B. sammeln via Internet, geben können.Â
\n\nDa kann man sich bereits jetzt aktiv beteiligen...
\n\nÂ
\n\nNS  Wir haben gerade eine Crowd-Funding-Kampagne gestartet. Diese findet man auf www.digitalglarus.ch. Dort kann jeder, der interessiert ist, einen Beitrag für unser Projekt leisten. So können wir den ersten Co-Working-Space in Schwanden auch wirklich bald eröffnen.
\n\nÂ
\n\nCZÂ Â Weitere Infos zu diesem Projekt findet man auf der Seite www.digitalglarus.ch.
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\n....That was the interview!
\n\nWe send many thanks to Mr. Christian Zweifel who covered our open talk event on Tuesday night.
\n\nAs said in the interview, our crowdfunding campaign is up and running. Join us and let's cowork!Â
\n\nÂ
\n\n\n\nÂ
\n\nÂ
\n 154Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten älteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\nWir sind an der Eröffnung der Örtlichkeit für Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen Ämter und Unterstützer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und frühe Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, für das grossartige Abenteuer im schönen Tal von Glarus.
Bist du interessiert?
\n\nKontaktiere uns:
\n\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\n 567As we announced in our , Digital Glarus hosted its first jazz concert at our first coworking space, Digital Chalet Schwanden. For those who couldn't be at our great music night, or for us who wants to revisit the great moments we had, here are some of the highlights of Saturday! Of course, pictures don't do the justice for our handsome jazzmen and their great performance.Â
\n\n\n\n\n\n\n\n\n\nHere is the super talented FivePastEight getting ready before the concert. We have to confess that overhearing them (and also stalk them a bit through the whole afternoon for the excuse of photos) over their rehearsing was as cool as their real concert later. In this picture we can see our drummer Dominique, Nicolas on piano, Joel with the guitar, Philipp with Saxophone, Pascal trumpet. Yves (who has his back on this photo) will be later seen in photos with his Trombone, and Sven (hidden next to Dominique in this photo) with the bass.
\n\nAnd here are the concert moments!
\n\nÂ
\n\nÂ
\n\n\n\nIt was too full for everybody to be seated, but it didn't stop some of us dancing with the music at the stairs and the corridor!
\n\n\n\n\n\n\n\nAren't they great? :D You can follow them on their , or visit their .
\n\nWe thank everybody who came to our concert and kindly donated their money for our ! And, a huge thanks to the band FivePastEight!Â
\n\n\n\nhas 28 days left until its end! The campaign works on All or Nothing basis, means if we don't reach the designated amount of 20,000CHF all the donations will be annuled.
\n\nBe our Santa and help us today! Â
\n\n\n 677Dear our blog followers and readers, we are very pleased to announce that our 100 days of crowdfunding campaign ended with a big success. From generous donations of our supporters we reached our goal amount of 20,000 Swiss Francs, and not only we reached the goal, our campaign ended up by 111.1% funded! Yay! Thank you for all the support and attention you have given us during the campaign.Â
\n\n\n\n
This post is long overdue as it has been already a week since our crowdfunding campaign finished, but our team has been too much occupied responding to phone calls and emails with congratulations and good wishes, from opensource software community, coworking space community, local and national businesses, and our friends.
\n\n\n\nAnd we shouldn't forget to mention that in the meantime we made it to the cover of the newspaper.Â
\n\n\n\nHave we already said how cool it was to see our project leader on the front page of the newspaper, talking about our success? In case we haven't, it was really, really cool. As our team member Dominique would put it, it was "mega cool."Â
\n\n\n\n\n\n..And it was also super cool to see our coworking space renovation project being covered by the evening news at 6pm. If this is how success feels like, we can get used to it very fast! Â
\n\nEven though the campaign has ended we have a lot of work in front of us, or, the real work only begins now. The crowdfunding campaign was only the beginning of a marathon, and we're in for a long run now. According to the campaign platform 100-days.net, we'll receive the fund in 2 months : we will try to be as transparent as possible regarding the use of the fund in the course of coworking space transformation. Our goodies for supporters such as postcards and T-shirts are under production, and renovation of the space will start in the spring. Not because we want to wait any longer for renovating the coworking space, but only because...
\n\n\n\n...because we are in Switzerland and the weather is like this here now. The whole town will stay under the snow for some more months, not ideal weather for opening the roof let alone the windows. We will plan in the meantime, and will start the work under the better weather when the spring comes.
\n\nWe can not thank enough our supporters for this success, we know that nothing could have been possible without our supporters who listened to our ideas and encouraged our vision. We would like to express once more how grateful and excited we are for the love and support we have received.Â
\n\n\n\nIf you haven't seen it yet, we have put a nice timeline slider on our project Digital Glarus on our bilingual . The slider is a nice simple visual aid for watching our growth so far from a simple inspiration to a crowdfunding success.
\n\nFor those who didn't get to donate on our crowdfunding campaign in time, our donation channel is still open and by contribution you can have your name as a virtual supporter of project Digital Glarus on our website. You can contact us at info@digitalglarus.ch for more information. We might be a little bit biased, but we must confess that this is a really fun and cool project to be a part of.
\n\nLast but not least, happy new year everyone. Keep watching us grow in 2016 : We heard it is the right year to start coworking in Digital Glarus!Â
\n 155While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.
\n\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\n\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in Switzerland are more orientated on living healthy, which is exactly what Glarnerland can provide.
\n 178Telefon: +41 (0) 44 534 66 22
\n\nEmail: digitalglarus@ungleich.ch
\n\nAnschrift: In Der Au 7, Â 8762 Schwanden Switzerland
\n 568At the moment we at ungleich are talking to authorities and sponsors. It is crucial to build up some basic infrastructure and attract early adopters. Building a community (meetup alike) can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\n\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\n\nHave you become interested in the project?
\n\nContact us at
\n
\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
Â
\n 209This gigant workshop, featuring OpenNebula, Openstack and Cloudstack technologies is happening this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.
\n\nThe first time in Switzerland (and maybe world wide) for a friendly meeting of cloud provider experts.
\n\n\n\nParticipants will learn what are the possibilities and advantages of every system and have the opportunity to discuss with the experts in the evening.
\n\nÂ
\n\n\n\nNico Schottelius, CEO of ungleich GmbH (Linux infrastructure & application hosting company based in Switzerland) will give an advanced workshop on cloud management with OpenNebula for DevOps.
\n\nSchottelius, the author of the innovative configuration management system "cdist", is a judge of the Open Source Awards in Switzerland.
\n\nSchottelius also teaches computer science at the university of applied sciences ZHAW.
\n 156The thing about team ungleich is that we all have serious passion not only in our work. Some of us juggle, some of us Jiu-Jitsu, some of us paint, some of us...
\n\nJazz!
\n\nEver since we found out about the secret double life of our ungleich team member Dominique, one as we know as a super smart system engineer, and the other, as a cool jazzman, we did NOT stop bothering him until he said yes for coming to Digital Glarus to play jazz. And after some mojitos in Barcelona, he said yes. Yes! he is coming! And he is bringing all his ! All the way from Fribourg! Â
\n\n\n\nDominique's Jazz band FivePastEight is having a concert at our coworking space, Digital Chalet! Just between us, rumors are that this band is really good. Really, really good. If you are a jazz fan especially the old classic numbers from Armstrong, Fitzerland, etc, you don't want to miss it!Â
\n\nThe concert is happening on the first Saturday of December ; December 5. Door opens at 7pm. It is an open-house, free-entry event, so feel free to bring your music-loving(or, coworking-loving) friends along!Â
\n\nWe are inviting all our crowdfunding supporters to join our party to enjoy great jazz, to meet each other, to find out how great all of us are, and, to have a great time!Â
\n\nThe concert venue, Digital Chalet needs your help for its successful renovation into a modern coworking space. We have 41 days left, until the campaign ends. Help us reach the goal!
\n\nVisit our crowdfunding campaign onÂ
\n\n\n\nhttp://www.100-days.net/en/projekt/start-digital-glarus
\n\nÂ
\n\nOh, and here's a small tip : you get a free drink at the concert venue if you RSVP on our  page.
\n\nÂ
\n\nWe can't wait St.Nicholas bringing great jazz and Gluehwein to Digital Chalet! Â
\n\nSee you soon in Schwanden, Glarus!
\n\nÂ
\n 392Some of you might remember one of our first blog posts, "" from last May. Wow, time goes fast when you're busy making things happen.Â
\n\nThe 3rd OpenNebulaConference 2015 was held in sunny Barcelona, on 20-22 October. This time team ungleich was there to support OpenNebula as a gold sponsor : It was fantastic, we didn't even have time to blog about it while we were there.  For those who couldn't make it to beautiful Barcelona, here are some highlights of the OpenNebulaConf 2015.Â
\n\nÂ
\n\n\n\nBarcelo Sants hotel, where the OpenNebulaConf 2015 was held, had a modern atmosphere with a futuristic touch.Â
\n\nÂ
\n\nAnd there we are - at the entrance of the OpenNebulaConf 2015, just next to the ungleich booth, ready to welcome conference attendees.
\n\n\n\nTeam ungleich who flew all the way to Barcelona from Switzerland for OpenNebulaConf, although with a very little sleep but with full of excitement for supporting OpenNebula. :) Â
\n\nÂ
\n\n\n\nA close-up to ungleich booth at OpenNebulaConf with our for 2 kinds of laptops : for Macbooks and Thinkpads.Â
\n\n\n\nBuild OpenNebula with cdist! How to build OpenNebula clusters with the configuration management system cdist was presented at an OpenNebulaConf talk by Nico Schottelius.
\n\nÂ
\n\n\n\nMany great talks and discussions took place at OpenNebulaConf - from technical to business, from beginners to very advanced, a wide range was covered in intensive talks. We must say, it was a great chance for attendees to really dive into the world of OpenNebula.Â
\n\nÂ
\n\nÂ
\n\n\n\nOpenNebulaConf attendees from every corner of the world, during the coffee break.Â
\n\nÂ
\n\nÂ
\n\n\n\nAnd each night, tapas dinner was organized by the OpenNebulaConf, at interesting parts of Barcelona. attendees had chance to resume passionate talks that continued during the day at the conference, with delicious food and drinks. Great food with great company, everybody couldn't be in better mood.Â
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\nTime flew fast in OpenNebulaConf. It was great time to meet and exchange ideas with like-minded and bright people who all support OpenNebula, especially with team OpenNebula who organized a very successful conference on their own. Great job, OpenNebula! We truly appreciated your hospitality.
\n\nIt was more than just a flight to Barcelona for ungleich. We were inspired by many talks and discussions, which also gave us ideas on our upcoming , happening soon in . Â
\n\nWe must say that we were very proud and happy to support OpenNebula by being their gold sponsor, and, Swiss ambassador : we even met other Swiss attendees who came all the way to Barcelona because of our previous introduction to OpenNebula at other conferences! How exciting it is to influence others for the better (IT) future?Â
\n\nÂ
\n\nAnd..
\n\nÂ
\n\n\n\nÂ
\n\n...did we already mention that the conference was held at Barcelona? In case we didn't, yeah, it did happen in Barcelona. The conference place, Hotel Barcelo Sants, was a bit away from the beach, but that didn't stop team ungleich from finding the sandy beach of Barceloneta, where everything was (still) just like the summer.
\n\nLike we probably (and repeatedly) talked before, we founded our company to have a good work and life balance. That means, our team had a great time in Barcelona. From working at the beach bar with a mojito on one hand to listening to local artists at late night jazz club to exploring small streets of , we had an awesome time in Barcelona.Â
\n\nLong live OpenNebula, and, long live ungleich! :)
\n\nÂ
\n\n\n\nÂ
\n 570 \n 571We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\n 157Wow! That was as an amazing ! Not only happened the friendly meeting of OpenNebula, Openstack and Cloudstack, but also many great discussions about architectures and technologies. We have met people using good old Sendmail to cloud providers who reported about their experiences with Ceph  (thanks a lot !). The OpenNebula workshop was not only great success with a lot of good questions, but also very much fun with an interested audience.
\n\n\n\nFor that reason we plan to make an OpenNebula-Hackday in soon ( to get to know the exact date).
\n\n\n\nAlso much appreciated was the discussion after the workshops with the speakers of the OpenNebula, Openstack and Cloudstack workshops - and again a lot of fun (not much blaming each other, but pointing out what the current status is). Thnaks also goes to the for presenting a lot of interesting ideas as well as helping in the preparation of the joint cloud workshop.
\n\n\n\nAlso very good feedback came towards the new feature of cdist, the installation support. Installation support? Yes! cdist is now officially the first (and only!) configuration management system that officially can configure your computer before the operating system is even installed by using its own PreOS!
\n\nApart from these technical discussions the Apero in the evening was showing many great Swiss based computer scientist who are all together working in the same spirit of Open Source. Thanks a lot to Matthias Günter and for organising this great day!
\n\n\n 158The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\n 202Telefon: +41 (0) 44 534 66 22
\n\nEmail: digitalglarus@ungleich.ch
\n\nAnschrift: In Der Au 7, Â 8762 Schwanden Switzerland
\n 428Juchu! Es ist kalt genug draussen! Wir feiern das mit einem Fondue im neuen Co-Working Space in Schwanden!
\n\nAm 12. Dezember treffen wir uns um 18 Uhr zum Fondueplausch! Wer Lust hat das Glarnerland noch etwas kennenzulernen, der darf auch gerne über Nacht bleiben und am nächsten Tag mit uns die Gegend erkundigen (je nach Wetter sogar Skifahren gehen!)
\n\nDu hast Interesse dazuzustossen? Bitte . Bis dahin: Happy Hacking!
\n 577 \n 578Die alten Fabriken, welche häufig Webmühlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte für IT-Begeisterte
\n\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Gebäude in attraktive Co-Working Spaces verwandeln.
\n\nAber was ist eigentlich reizvoll für einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\n 668Â
\n\nÂ
\n\nÂ
\nWelcome to Digital Chalet Schwanden.Â
\n\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\n\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\n\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\n\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\n\nThe concert is free entrance, please feel free to bring your friends and family.
\n\nExplore our coworking space, meet and connect with other great people with great music.
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\n\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\n\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\n\nWe are pleased to invite you on December 5 at the jazz concert!
\n\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\n\nSee you soon & Let's Jazz in Glarus!
\n\nÂ
\nDigital Glarus, so nennen wir das neue Zuhause für High-Tech Firmen. Im Süden von Zürich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\n\nDie Kombination von wunderschöner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir „Digital Glarus“ nennen.
\n\nDie Landschaft, das „Glarnerland“ hat viele ehemalige Gebäude des Industriegebietes, welche direkt ins Auge fallen.
\n\nGenaugenommen besitzt das Glarnerland über die besterhaltenste Sammlung von antiken Häuser mit Möbeln bester Qualität. (Genau von denen, welche du immer in teuren Läden anschaust, aber nie kaufst – so leben die Leute hier).
\n 583 EINE NEUE REGION.\n 585 WIESO SOLLTE SICH JEMAND FÜR DAS INTERESSIEREN?\n 430Ich, Nico Schottelius, habe innert 2 Jahren das Glarnerland liebgewonnen und möchte nun zusammen mit euch hier einen Co-Working Space aufbauen - und die Renovationen, die nötig sind, mit einer Crowdfunding-Kampagne finanzieren.
\n\nIch befinde mich in einem kleinen Haus im Kanton Glarus, genau genommen in Luchsingen. Der Holzofen brennt, es ist warm, die Sonne scheint, ich schaue auf den Schnee draussen: Ein schöner Ausblick.
\n\nFreunde sind zu Besuch. Zum Jassen. Was sonst macht man im Glarnerland?, fragen zwei Freunde. Arbeiten, sage ich, als Informatiker spielt es keine Rolle von wo aus man arbeitet. Sie schütteln den Kopf und verlieren die Runde.
\n\nGeschäftspartner zu Besuch. Kommt am Bahnhof Luchsingen an, schwärmt von der tollen Zugfahrt. Wunderschöne Aussicht, ein Ort schöner als der andere, eine Landschaft die man auf Postkarten drucken muss, sagt er. Weiss ich, sage ich, und schmunzele.
\n\nErste Wanderung. Auf zum Oberblegisee. Freunde sind am Keuchen, es ist zu steil. Wir sind keine Bergziegen. Ich auch nicht, ich komme aus dem flachen Hannover. Aber Du bist sportlich. Na gut. Dann trage ich euch halt hoch, denke ich. Nach 3 Stunden, viel schimpfen erreichen wir den Oberblegisee. Ruhe. Beeindruckend, sagen sie. Während ich am Notebook sitze und schaue, was in der Firma gelaufen ist. Sie fragen: Du arbeitest hier? Ich: habe ich doch gesagt. Sie schütteln wieder den Kopf.
\n\nVideokonferenz mit Kunden. Kunde ist hässig auf mich. Wie man sich erdreisten kann, bei einer Videokonferenz draussen vor einem Berg zu sitzen und so ein Panorama zu zeigen. Es gibt auch Leute, die im Büro arbeiten müssen. Er hat Recht (der Kunde hat immer Recht!) und ich beginne zu grübeln.
\n\nGrosse Feier im Garten, Freunde und Nachbarn. Wir machen Photos zusamen. Ein schöner Abend. Freunde fragen, wie schnell eigentlich die Internetverbindun hier ist. Fast immer 4G, sage ich stolz, vielleicht sogar bald Glasfaser bei uns im Haus, witzele ich.
\n\nDiejenigen, die geblieben sind wollen mehr sehen. Wandern! Ich schlage vor die Bahn nach Braunwald zu nehmen, als ich an die letzte Wanderung denken muss. Herrliche Aussicht in Braunwald. Gemütlich im Restaurant sitzend frage ich die Wirtin, ob ich Ihr Internet benutzen könne. Freundlich lächelnd reicht sie mir einen Zettel mit dem Passwort für das WLAN und fragt, ob ich hier arbeiten würde. Ich schaue zu meinen Freunden, schaue zu ihr und sage: Ja, das Notebook ist mein mobiles Büro. Aha, sagt sie und richtet den Blick zu meinen Freunden: Wollen Sie hier ebenfalls arbeiten? Ich bin gerade dabei Nein zu sagen, da packt eine Freundin ein Notebook aus. Gerne, sagt sie, grinst zu mir rüber und beginnt die neuesten Designtrends zu recherchieren. Soso, sage ich und lächele, während ich meinen Süssmost trinke. Die Wirtin fragt, ob es für uns normal ist, das wir mit dem Notebook in den Bergen arbeiten. Nicht für alle von uns, möchte ich sagen, doch bevor ich dazu komme sagt meine Freundin: Klar! Und grinst zurück zu mir.
\n\nAuf der Skipiste. Mit Geschäftspartnern. Das Notebook im Rucksack. Heikel, denke ich mir, hätte es an der Station lassen sollen. Bloss nicht das Snowboard verkanten. 3 Stunden später. Im Restaurant. Das Notebook heile. Kein Internet, die Wände vom Haus sind zu dick. Schade. Wir diskutieren, dass es ein guter Ort zum Arbeiten wäre: Skifahren am Morgen, arbeiten am Nachmittag. Statt klassischem Wochenende, das Wochenende auf die Woche verteilen. Gibt es einen Co-Working Space in Glarus, in dem wir nachher arbeiten können, fragen sie. Nicht das ich wüsste, sage ich und denke "aber es wäre schön, wenn es einen hätte". Ich nehme mir vor etwas Nachzuforschen.
\n\nViele Gespräche mit den Bewohnern von Glarus. Beim Wandern, beim Einkaufen, im Restaurant. Was halten Sie von der Idee, in Glarus Arbeitsplätze (wortwörtlich, zum Hinsetzen) mit Internet aufzaubauen? So dass Leute kommen können und an fast jedem Ort im Kanton ihr Notebook aufklappen und arbeiten können? Es braucht Internet, Strom und einen gemütlichen Platz. Die Idee findet grossen Anklang. Ich frage mich, ob wir die Koordination für ein solches Mammut-Projekt übernehmen sollen.
\n\nMeine Neugier ist zu gross. Ich will wissen, ob der Kanton und die Gemeinden die Idee unterstützen möchten und vereinbare Treffen mit allen 3 Gemeindepräsidenten. Sehr beeindruckende Gespräche. Genauso wie die Erfahrung aus der Bevölkerung, sehr offen für die Idee. Finanzen hat man jedoch keine für ein solches Projekt, wird mir gesagt. Schade, denke ich. Ähnlich sieht es beim Kanton aus. Nagut, wer hat traditionell immer angefangen etwas voranzutreiben? Die Wirtschaft! Ein Marketing-Fond für das Kantonsmarketing wäre ein Ansatz, denke ich mir.
\n\nAlso in Glarus kommt das Projekt gut an, aber wie sieht es ausserhalb vom Glarnerland aus? Ich wiederhole mein Experiement von Anfang Jahr und befrage Freunde, Bekannte, Geschäftspartner. "Wo liegt Glarus?" Wirklich?, denke ich. "Verrückte Idee mit Potential." und "Wann kann ich anfangen zu arbeiten und fährt ein Zug nach Glarus?." Sind sehr motivierende Aussagen. Ich stelle fest: Das Glarnerland hat sehr viel Potential, aber die Bekanntheit ausserhalb vom Kanton ist noch nicht sehr gross.
\n\nWir diskutieren bei der ungleich GmbH, wie man am besten das Glarnerland ausserhalb vom Kanton bekanntmachen kann. Unsere Kunden sind hauptsächlich Firmen aus der IT. Die sollten ja im Prinzip am ehesten von jedem Ort aus arbeiten können. Die Entscheidung fällt, dass wir den ersten Glarner Co-Working Space aufbauen wollen, als Prototyp, damit Leute ausserhalb vom Kanton spontan nach Glarus kommen können zum Arbeiten. 1 Tag, 2 Tage, 1 Woche - alles ist möglich im Co-Working Space.
\n\nWir haben ein Haus gefunden für den Co-Working Space! In Schwanden. Das ist super, genau zwischen den beiden Skigebieten und gut erschlossen mit dem Zug. Es ist alt, aber hat Charme. Wow. Wir entscheiden uns, das Haus zu kaufen.
\n\nWir haben den Schlüssel zum Haus bekommen und stellen fest, dass doch noch mehr zu renovieren ist, als wir ursprünglich gedacht haben. Netzwerkverbindungen, Elektrik, Fenster. Wow. Wir brauchen auch noch eine Bank für den Garten. Können wir nicht die Renovationen gemeinsam finanzieren? So wie auch das Marketing vom Kanton? Die Idee mit dem Fond kommt wieder auf. Aber Moment mal, die moderne Form des Zusammenlegens für eine Sache nennt sich Crowdfunding. Das funktioniert via Internet. Ist im Prinzip dasselbe, wie wenn jeder einen 5er (oder mehr) in einen Sack wirft. Allerdings muss man sich vorher ein Ziel stecken und wenn man das Ziel nicht erreicht, dann bekommen alle ihr Geld wieder. Hochgerechnet benötigen wir etwa 20'000 CHF für die Renovation. Das klingt nach viel. Was wenn jeder 50 CHF geben würde? Dann müssten 400 Leute zusammenlegen. 400 Leute. Wow.
\n\nIch sitze im Zug. In der S25. Bin auf dem Weg nach Zürich, zur ETH. Ich schreibe meine Erinnerungen aus den letzten beinahe 2 Jahren nieder. Das Crowdfunding Projekt ist am Laufen, es sind bereits mehr als 2'000 CHF gespendet worden. Digital Glarus ist ein tolles Projekt. Es macht mir jeden Tag Spass, dafür zu arbeiten, zu schreiben, zu reden. Ich sehe einen langen Weg vor mir, den ich gerne gehen möchte. Um meinen Freunden und denjenigen, die ich nicht kenne, zu zeigen, was für ein toller Ort Glarus ist.
\n\nHilf' mir das Projekt zum Erfolg zu führen. Rede über das Projekt. Spende einen Beitrag beim Crowdfunding. Lass uns Glarus zu einer Bekanntheit verhelfen, die seiner Schönheit würdig ist.
\n 460We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\n\nIt is a pretty... old house and needs some love and renovation.
\n\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\n\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\n\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\n\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\nÂ
\n\nÂ
\nSo far most of the mergers I have watched were happening in companies I am not related to, so this one is more interesting and I am giving you some details of what I have experienced so far.
\n\nWhen travelling to the barbeque last Thursday afternoon together with some colleagues, I did not expect such a well organised event to happen in such a short time. And with well organised, I am not only referring to the food and drinks, but much more to what the three speakers, André Born (ex CEO of Born Informatik), Hansjörg Süess (the new CEO) and Peter Walti (Verwaltungsrat) shared with everybody.Â
\n\n\n\nWhen big things like a merger happens, people are usually afraid of changes, especially of loosing their job. However it was very clear that André Born is caring for his employees and it looks like everyone will keep his or her wor place, just working for a different company.
\n\nIt is also interesting to hear that adesso Schweiz AG, who bought Born Informatik, used to employ about 75 people, wheras Born Informatik used to consist of roughly 125 people - so there is a big chance that the spirit of Born will survive within adesso.
\n\nAs a company doing business with Born and now adesso, we look forward to the upcoming changes and wish everyone good new experiences!
\n\n\n\nBy the way - the pictures of the barbecue were taken in Olten - a very fitting place for two companies from Bern (Born) and Zürich (adesso) to celebrate their merger. We wonder, when will we see adesso in ?
\n\nÂ
\n 61If you have followed the story of , you know that we at ungleich are modernising the Canton of Glarus and making it ready for the digital age, because we believe it is a place with a great view and potential.
\n\nToday happened the first meetup of  at which many possible topics to work on were discussed.
\n\nWe discussed various ideas for long time exposure projects (including one for using a boomerang with LEDs on it!), to help each other in home automation (switching lights on when you enter your home at night) to gaming projects.
\n\nWe also discussed various projects that are more suitable for children to get in touch with technology (using for instance the Raspberry Pi).
\n\nIf you do not yet know what the advantages of Digital Glarus are and why we at ungleich are investing here, for updates - we will post more articles about Digital Glarus soon.
\n 59 160At the moment we at ungleich are talking to authorities and sponsors. It is crucial to build up some basic infrastructure and attract early adopters. Building a community (meetup alike) can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\n\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\n\nHave you become interested in the project?
\n\nContact us at
\n
\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
Â
\n 183Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegründet – obwohl, unsere erste Verkörperung lag in Deutschland im Jahre 2000 zurück. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-Köpfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie möglich arbeiten lassen wollen. Wir kennen und teilen die Bedürfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene Lösung, in dem wir einen attraktiven Arbeitsplatz für Technologie-Unternehmen in der Schweiz fanden und zu Verfügung stellen wollen.
\n 586Das momentane de-facto Technik-Zentrum der Schweiz, Zürich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, überbevölkert.
\nUm es genau zu nehmen überfüllt, teuer und laut… Obwohl die hohe Dichte der Personen für Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\nWieso nicht in schönen Gebäuden in Glarus neu beginnen?
\nWir wissen, dass Zeit, Geld und Leidenschaft benötigt wird um reizend für Technik-Unternehmen zu werden, damit diese hier her kommen.
\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegenüber dem Verbleib in einer überfüllten Stadt.
WIESO GLARUS?
\n 587 WO SIND WIR\n 161 \n 588Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten älteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\nWir sind an der Eröffnung der Örtlichkeit für Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen Ämter und Unterstützer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und frühe Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, für das grossartige Abenteuer im schönen Tal von Glarus.
Bist du interessiert?
\n\nKontaktiere uns:
\n\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\n 589 \n 537Â
\n\nÂ
\nWillkommen im Digital Chalet Schwanden.
\n\nÂ
\n\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken können) von Digital Glarus!
\n\nWir möchten einen inspirierenden Co-Working Space aufbauen - für Glarner und für die Glarner Wirtschaft.
\n\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\n\nWir möchten uns bei all unseren Unterstützern (auch zukünftigen) mit einem Jazz-Konzert bedanken, für alle Beiträge und Hilfe, die wir von so vielen Seiten bekommen haben!
\n\nDer Eintritt ist frei und ihr dürft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gemütlicher Musik kennenlernen!
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\nUm die nötigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf findest.
\n\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den schönen alten Charm beibehalten.
\n\nWenn Du Freude hast an charmanten Häusern oder das Projekt gut findest, unterstütze uns heute - die Crowdfunding-Kampagne läuft nicht mehr lange!
\n\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erwähnt, dass jeder, der sich via anmeldet, ein Gratisgetränk bekommt?
\n\nAlso, bis bald & Let's Jazz in Glarus!
\nPhone: +41 (0) 44 534 66 22
\n\nEmail: digitalglarus@ungleich.ch
\n\nAddress:Â In Der Au 7, Â 8762 Schwanden Switzerland
\n\nWow, it was one sunny Sunday in Glarus. One might say it was almost like summer, except the mountains were painted in deep red.Â
\n\n\n\nHow was your Sunday? Ours at Digital Glarus (and ungleich) was full of sun (through the windows), and of collective intellectual curiosity of OpenNebula users.Â
\n\nAt 10a.m., a surprisingly international crowd gathered at our co-working space, Digital Chalet Schwanden. Attendees came all the way from Germany, Italy, Switzerland, and Finland, all from our Digital Glarus group.
\n\nThe OpenNebula workshop today was given by Nico Schottelius, the founder of ungleich and Digital Glarus, and also a proud ambassador of OpenNebula.
\n\n\n\nHere are some moments of today's workshop..
\n\n\n\n\n\n\n\n\n\nÂ
\n\nAnother great day with great people at Digital Glarus!
\n 594 \n 595WIESO GLARUS?
\n 596 WUNDERSCHÖNE LANDSCHAFT \n 597House hacking?
\n\nHacking a house? You may already have heard of this or you may have done it already - without knowing it. A webcam at the door coupled with face recognition to open the door? House hacking! Lights that go on automatically, when you enter the door or when it is dark enough? House hacking! Using your mobile phone to open the doors? Definitely house hacking! Screens that change their content depending on your mood? Well, you get the picture...
\n\nWhich house to hack?
\n\nWe from ungleich are currently looking for a suitable house to buy, renovate and to turn it into the first in . We are talking to investors, banks and potential users to select the right house to start building Digital Glarus.
\n\nWhere is this house?
\n\nIt will be located between Ziegelbrücke and Linthat - the exact location will be revealed soon!
\n\nWhy hack this house?
\n\nAs you may know, the Digital Glarus project is still very young and that also means innovative and dynamic. We want to create a modern Co-Working Space made by Hackers, for Hackers. We believe in the spirit of Open Source Software,
\n\nof Crowdfunding and creating a home for digital nomads. Thus we offer this house to anyone, who would like to hack a house.
\n\nWhat am I allowed to do?
\n\nWe practically allow you to do anything that is improves the house and conforms to the law. In case of doubt, just ask us!
\n\nI want to participate, but don't have any money!
\n\nWe all have been in this situation that we wanted to do something, but did not have the money to realise it. As we believe in building a great Co-Working Space together, we offer financial support for up to 5 projects for up to 500 CHF each.
\n\nIf you want to use this money, just with your project description. We will review all projects and if suitable, take the next step with you. You will hear back from us in any case...
\n\nHow to hack this house?
\n\nIf you are interested in hacking the house, drop us a message via Twitter ()  or .
\n 164Digital Glarus, so nennen wir das neue Zuhause für High-Tech Firmen. Im Süden von Zürich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\n\nDie Kombination von wunderschöner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir „Digital Glarus“ nennen.
\n\nDie Landschaft, das „Glarnerland“ hat viele ehemalige Gebäude des Industriegebietes, welche direkt ins Auge fallen.
\n\nGenaugenommen besitzt das Glarnerland über die besterhaltenste Sammlung von antiken Häuser mit Möbeln bester Qualität. (Genau von denen, welche du immer in teuren Läden anschaust, aber nie kaufst – so leben die Leute hier).
\n 599LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\n\nWir haben ein schönes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu eröffnen!
\n\nEs ist un-glaub-lich schön.. aber auch schön alt und braucht etwas Liebe und Renovationen. Wir möchten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch "richtiges" Internet hast (Kosten: etwa 15'000 CHF).
\n\nWir würden auch gerne ein paar Möbel kaufen, wie Sofas, Stühle und Tische, damit Du gemütlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\n\nFalls noch etwas Geld übrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die Tür mit dem Handy öffnen kannst (2'000 - 20'000 CHF).
\n\nÂ
\n\nÂ
\nÂ
\n\n\nÂ
\nAre you a geek, a maker, a technician or a developer? Are you sometimes very proud of what you have created? Your own "baby" that does something great in its own way?Â
\n\n\n\nWell, we at are a team of DevOps, sysadmin and developers and today we want to share the gems of our current nginx configuration with you.
\n\nThe configuration we show you here is used for our Django based pages, on which we are running for instance .  Our Django application consists of various apps like blog, hosting or , which are all accessible on every domain. However, depending on which domain you access, you are given a different entrance page or redirect.
\n\nLet's see what we gems are in our configuration...
\n\n\n\nIf you ever wondered what is the easiest way to do something for the entry page and something else for the rest of the page, here is an easy answer: Use location = / and location /: The = / block matches only, if the request is /, whereas the second location / matches everything else starting with a /.
\n\n  location = / { Do something for / only }
\n  location / {  Do something for the rest }
For more information about how this works, have a look at the .Â
\n\nÂ
\n\nWe want our user to stay on the root of a specific domain (like in our case), when she requests /, but redirect her to for every other request. We have multiple motivations to treat our users like this:
\n\nGiven the previous distinction of treating / and non / differently, we can easily implement this behaviour by using the following code:
\n\n  location = / {
\n      rewrite ^/$ /$landingpagerewrite/ break;
\n      uwsgi_pass uwsgiapp;
\n  }
\n  location / {
\n    rewrite ^/(.*) https://$ungleich_servername/$1 permanent;
\n  }
Â
\n\nOur original motivation to stay on the domain was because of reason #2 (the adwords problematic), but we want this only to happen for a few vanity domains that we use and not for every domain (indeed, most of our domains are redirecting to a sub url).
\n\nEven though the if directive of nginx , it has a good use case: For testing the definition of variables. We setup the variable $landingpagerewrite, only in the case we want to stay on /. And this is how it looks like:
\n\n  location = / {
\n    if ($landingpagerewrite) {
\n      rewrite ^/$ /$landingpagerewrite/ break;
\n    }
\n  }
There are many more gems that we would like to show you soon - stay tuned! If you have questions, do not hesitate to ask on !
\n\n\n 187Wissen gegen Wissen tauschen - das ist das Motto der Plattform ,
\nhinter der die Firma aus Pfäffikon ZH steht.
\n
\nDas Projekt Digital Glarus () auf der anderen Seite strebt die
\nDigitalisierung des Kantons Glarus an: mit dem Ziel, den bezaubernden und günstigen
\nRaum des Glarnerlandes für IT Firmen attraktiv zu gestalten. Hinter Digital Glarus
\nsteht die Linux-Infrastrukturfirma mit Sitz in Glarus Süd.
\n
\nDie Mitglieder von wissenstausch.ch bieten ihr Wissen im Tausch gegen Wissen an, und wie jeder weiss ist die Informatik ein Beruf, in welchem Wissen eine grosse Rolle spielt. Auf wissenstausch.ch selber finden sich aber auch diverse Kurse aus anderen Themengebieten wie beispielsweise Klettern, Backen, Mathematik und vieles mehr..
\n
\nAus dem Grund haben sich die beiden Projekte zusammen geschlossen, um gemeinsam
\nden Austausch von Wissen anzubieten: Ab dem 1.Dezember sind Kurse von Digital
\nGlarus auch auf wissenstausch.ch verfügbar und wissenstausch.ch kann nun auch in
\nder Region Glarus spannende Kurse anbieten.
\n
\nDie Kurse von Digital Glarus finden im ersten Glarner Co-Working Space, dem
\nDigital Chalet Schwanden statt. Für die Renovation vom Digital Chalet,
\neinem alten Haus in Schwanden, läuft zur Zeit eine Crowdfunding-Kampagne, die
\nauf www.100-days.net/start-digital-glarus zu finden ist.
\n
\nUnd nun: Auf zum Wissenstausch ins Digital Glarus und auf wissenstausch.ch !
\n
\nWissenstausch
\nAnsprechpartner: Michael Raths
\nTelefon: 076 4401 222
\nE-Mail: info@wissenstausch.ch
\nWeb: www.wissenstausch.ch
\nTwitter:
\nFacebook:
\n
\nDigital Glarus
\nAnsprechpartner: Nico Schottelius
\nTelefon: 044 534 66 22
\nE-Mail: wissen@digitalglarus.ch
\nWeb: www.digitalglarus.ch
\nTwitter:
\nFacebook:
Â
\n\nÂ
\nWillkommen im Digital Chalet Schwanden.
\n\nÂ
\n\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken können) von Digital Glarus!
\n\nWir möchten einen inspirierenden Co-Working Space aufbauen - für Glarner und für die Glarner Wirtschaft.
\n\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\n\nWir möchten uns bei all unseren Unterstützern (auch zukünftigen) mit einem Jazz-Konzert bedanken, für alle Beiträge und Hilfe, die wir von so vielen Seiten bekommen haben!
\n\nDer Eintritt ist frei und ihr dürft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gemütlicher Musik kennenlernen!
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\nUm die nötigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf findest.
\n\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den schönen alten Charm beibehalten.
\n\nWenn Du Freude hast an charmanten Häusern oder das Projekt gut findest, unterstütze uns heute - die Crowdfunding-Kampagne läuft nicht mehr lange!
\n\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erwähnt, dass jeder, der sich via anmeldet, ein Gratisgetränk bekommt?
\n\nAlso, bis bald & Let's Jazz in Glarus!
\nDie alten Fabriken, welche häufig Webmühlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte für IT-Begeisterte
\n\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Gebäude in attraktive Co-Working Spaces verwandeln.
\n\nAber was ist eigentlich reizvoll für einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\n 189 \n 555 \n 556 why glarus?\n 557 BEAUTIFUL landscape\n 558We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\n\nIt is a pretty... old house and needs some love and renovation.
\n\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\n\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\n\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\n\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\nÂ
\n\nÂ
\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\n\nWir haben ein schönes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu eröffnen!
\n\nEs ist un-glaub-lich schön.. aber auch schön alt und braucht etwas Liebe und Renovationen. Wir möchten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch "richtiges" Internet hast (Kosten: etwa 15'000 CHF).
\n\nWir würden auch gerne ein paar Möbel kaufen, wie Sofas, Stühle und Tische, damit Du gemütlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\n\nFalls noch etwas Geld übrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die Tür mit dem Handy öffnen kannst (2'000 - 20'000 CHF).
\n\nÂ
\n\nÂ
\nÂ
\n\n\nÂ
\nWir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegründet – obwohl, unsere erste Verkörperung lag in Deutschland im Jahre 2000 zurück. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-Köpfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie möglich arbeiten lassen wollen. Wir kennen und teilen die Bedürfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene Lösung, in dem wir einen attraktiven Arbeitsplatz für Technologie-Unternehmen in der Schweiz fanden und zu Verfügung stellen wollen.
\n 608WIESO GLARUS?
\n 609We and we would like to give you an overview of some more gems that it contains.
\n\nIf you remember gem #2Â , we are using landing pages with http (not https) for some domains like , but use https for every subpage below ungleich.ch (because we like to provide as many sites with ssl as possible).
\n\nWe are using various domain names, however our django app uses only the following allowed hosts:
\n\nALLOWED_HOSTS = [
\n  ".ungleich.ch",
\n]
If a request is received with a different host header, django will refuse to serve the request. As we have to handle the landing pages in nginx, we prefer not to duplicate every domain we add in nginx into our django configuration.
\n\nNowadays nginx ships with a pre-configured set of uwsgi_param directives that you can include using
\n\ninclude uwsgi_params;
\n\nHowever this default setup also forwards the hostname. We had a look at the file and saw that SERVER_NAME is being sent and tried to replace it by using
\n\nuwsgi_param  SERVER_NAME     $ungleich_servername;
\n\n(and we setup $ungleich_servername at a different position - more about this in our next blog post).
\n\nWhen testing this setup using
\n\ncurl -H "Host: digitalglarus.ch" dynamicweb.ungleich.ch
\n\nwe still saw the hostname digitalglarus.ch in the uwsgi app. What happened? Well, reading the python code revealed that before SERVER_NAME the header HTTP_HOST is being checked. But we did not pass this header!
\n\n\n\nIt turns out that by default nginx is forwarding all headers to the uwsgi app - including HTTP_POST. We turned that behaviour off using the following directive:
\n\nuwsgi_pass_request_headers off;
\n\nAnd voila: it works!
\n\n\n\nFor production however, we do not turn off the request headers, but overwrite the HTTP_HOST header as following:
\n\ninclude uwsgi_params;
\nuwsgi_param  SERVER_NAME  $ungleich_servername;
\nuwsgi_param  HTTP_HOST      $ungleich_servername;
This way we can setup the variable $ungleich_servername to a subdomain of and do not need to modify the settings.py for any URL that we add.
\n\n\n 100Yes it is. We planned to release the  Manifesto today, however, so many things have happened in the meantime, we want to give you an overview of where we are.
\n\nThe project Digital Glarus (we were writing it as "Digital.Glarus" in the beginning, you might still find misspellings at some places) started in May 2015Â as a crazy idea...
\n\nTo transform the quiet, beautiful and very green valley of Glarus into a place where computer scientist will love to go to.
\n\nWe, ungleich, moved our headquarter to Luchsingen (a small village in Glarus, which is also in the Alps! Yes, the Alps.) about 2 years ago and guess what changed for our workflow and for our customers?
\nRight! Nothing!
Yes, we are working remotely most of the time (>90%),  and as long as we are visiting our customers regulary, they do not really care where we are.
\n\nHowever, we care and with Glarus we found a place with an breathtaking scenery, great Internet connection and good train connection to Zürich.
\n\nThe valley of Glarus (aka "Glarnerland") is a rather small district with good connections. Glarus offers affordable home and office space, with its great scenery as a backdrop. As the valley is small enough in its size, it is perfect for nesting dots of co-working space in which IT companies can benefit from each other.
\n\nWe had over 50+ (100+?) meetings with various people - from the presidents of the three townships (Glarus Süd, Glarus, Glarus Nord), to banks (various), to IT companies and entrepreneurs in Zürich, to local restaurants and cafes, to people on the street and guess what? All of them are intrigued by the idea of using the resources of Glarus to build Digital Glarus.
\n\nNo, to be honest, we spared the biggest news until here: we searched and found a house in Glarus, or more exact in Schwanden, that will serve as the FIRST CO-WORKING SPACE in Glarus!
\n\nCan you believe this? In only 3 months, we met so many interested parties ; coaches, teachers and IT companies! We have established contacts with them, as many of them share our enthusiasm for this project. Now we are taking this important step of starting the Co-Working Space!
\n\nFirst we have to actually open the co-working space, at the moment we are still going through paperworks. After we clear that stage, we have to clean the actual house up, as there are tons of old stuffs left in the building - from a funky 60s fridge to (genuine) vintage furniture - it's all for our use.
\n\nAfter we tidy things up, we hope to open the doors in November this year.We also plan to rent out some of the rooms to students.
\n\nOf course, we probably need to invest some time and money into renovating the house, as it is well over 100 years old.
\n\nWe plan to start a Kickstarter project for this purpose soon.
\n\nIf you are interested in the Co-Working space or want to help us funding some part of the renovation via kickstarter, - we will keep you updated!
\n 191Phone: +41 (0) 44 534 66 22
\n\nEmail: info@digitalglarus.ch
\n\nAddress:Â In Der Au 7, Â 8762 Schwanden Switzerland
\n\nÂ
\n\nÂ
\n\nÂ
\nWelcome to Digital Chalet Schwanden.Â
\n\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\n\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\n\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\n\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\n\nThe concert is free entrance, please feel free to bring your friends and family.
\n\nExplore our coworking space, meet and connect with other great people with great music.
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\nÂ
\n\n\n\nÂ
\n\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\n\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\n\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\n\nWe are pleased to invite you on December 5 at the jazz concert!
\n\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\n\nSee you soon & Let's Jazz in Glarus!
\n\nÂ
\nGlarus. Glarus is a canton in Switzerland. Compared to most other cantons, it is rather small (685.4 km²). Switzerland, as you may know already, is a country in the middle of Europe : It is also pretty (and) small (41285 km², the 133rd largest country in the world) and it does not belong to the European Union.
\n\n\n\nEven though the canton is small, Glarus has great train connections and very open-minded people. At the end of the valley you find two ski resorts "Braunwald" and "Elm" - your possibility to go skiing during an extended lunch break.
\n\nNot much. To be honest, it is a valley in the middle of the Alps with beautiful scenery and only one main street.
\nThere are a lot of old (and abondoned!) factory halls and houses in Glarus, which can be great use for computer scientists who are in need of working space. To put it digital: Many people here either moved away or have never been here. In fact, the whole canton has less than 40 thousand people who are registered(39'800 by the end of 2014).
We moved our headquarter from Zürich to the canton of Glarus (to be more exact: Luchsingen) in 2014. Our staffs didn't particularly prepare much for this big move, nor was it communicated to our customers in the first few months. What happened?
\n\nNothing.
\n\nNobody recognised that we moved. We work in a distributed team, we work (asynchronously) for our customers, and we coordinate 90% of our work through the Internet (splendid innovation the Internet, but ).
\n\nGiven that we, as a cutting edge IT company, moved away from Zürich without any noticable change to a valley of abandoned houses and a great Internet connection, we think other IT companies could benefit from moving as well.
\nSo we are building the base to allow other IT companies to move without much hassle. Our vision is to attract many IT companies to join us here - creating a large concentration of IT companies, like in Silicon Valley.
Right now we started to build the first Co-Working Space in Glarus : meaning, while you are reading this manifesto, we are about
\nto sign the contract for the house that should serve as the first Co-Working Space. We do have some IT networking events already planned, it is just a question of time until we can open doors.
Mid term, if the concept is successful, we plan to open more Co-Working Spaces, and to collaborate with local restaurants and Cafés. We plan to provide more accessible space to IT nomads and to enhance the (already great) Internet connection (HSPA/LTE is available, however there are not many fiber connections available at the moment).
\n\nLong term, if the project survives, we plan to connect the co-working spaces with self driving electric cars, create locations that are suitable for work, life and entertainment.
\n\nWe do have many other ideas for the far future, therefore we want to gain some more experience with our first prototype.
\n\nYes and no. We are in IT business and have learnt over the years how IT companies work. Our experience is that it is not important to be in the biggest city, it is much more important to have a quiet office. And beautiful scenery. And fast Internet.
\n\nOh, the question was about non-IT companies. In theory, we would support them, however we do not have a lot of experience on how for instance a bakery could profit from moving to Digital Glarus (besides having a lot of hungry IT crowds as customers).
\n\nYou! Join us! There are many opportunities, especially at this stage of the project, you can still form the idea and have influence on how the project develops.
\n\n\n\nWe are especially looking for early adopters and helping hands in marketing and communication - if you are interested in joining us, contact us via e-mail at join@digitalglarus.ch or .
\n\nThanks for reading!
\n\nÂ
\n 710 \n\nThis gigant workshop, featuring OpenNebula, Openstack and Cloudstack technologies is happening this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.
\n\nThe first time in Switzerland (and maybe world wide) for a friendly meeting of cloud provider experts.
\n\n\n\nParticipants will learn what are the possibilities and advantages of every system and have the opportunity to discuss with the experts in the evening.
\n\nÂ
\n\n\n\nNico Schottelius, CEO of ungleich GmbH (Linux infrastructure & application hosting company based in Switzerland) will give an advanced workshop on cloud management with OpenNebula for DevOps.
\n\nSchottelius, the author of the innovative configuration management system "cdist", is a judge of the Open Source Awards in Switzerland.
\n\nSchottelius also teaches computer science at the university of applied sciences ZHAW.
\n \. -- -- Data for Name: easy_thumbnails_source; Type: TABLE DATA; Schema: public; Owner: app -- COPY easy_thumbnails_source (id, storage_hash, name, modified) FROM stdin; 10 f9bde26a1556cd667f742bd34ec7c55e filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg 2015-06-16 21:08:33.057565+00 8 f9bde26a1556cd667f742bd34ec7c55e filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg 2015-06-16 21:08:33.676714+00 7 f9bde26a1556cd667f742bd34ec7c55e filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png 2015-06-16 21:08:34.082247+00 9 f9bde26a1556cd667f742bd34ec7c55e filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png 2015-06-16 21:08:34.345178+00 15 f9bde26a1556cd667f742bd34ec7c55e filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg 2015-06-14 03:17:43.181808+00 16 f9bde26a1556cd667f742bd34ec7c55e filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png 2015-06-14 04:43:08.873186+00 13 f9bde26a1556cd667f742bd34ec7c55e filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png 2015-06-14 04:44:02.157155+00 11 f9bde26a1556cd667f742bd34ec7c55e filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png 2015-06-14 04:44:16.219661+00 12 f9bde26a1556cd667f742bd34ec7c55e filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg 2015-06-14 04:44:29.787597+00 17 f9bde26a1556cd667f742bd34ec7c55e filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg 2015-06-14 04:48:14.739396+00 24 f9bde26a1556cd667f742bd34ec7c55e filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg 2015-06-16 21:16:30.897336+00 25 f9bde26a1556cd667f742bd34ec7c55e filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg 2015-06-16 21:17:32.788986+00 20 f9bde26a1556cd667f742bd34ec7c55e filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg 2015-06-15 20:12:08.451327+00 19 f9bde26a1556cd667f742bd34ec7c55e filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png 2015-06-15 20:12:50.7233+00 21 f9bde26a1556cd667f742bd34ec7c55e filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png 2015-06-15 20:13:15.88796+00 26 f9bde26a1556cd667f742bd34ec7c55e filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg 2015-06-16 21:18:24.302032+00 22 f9bde26a1556cd667f742bd34ec7c55e filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg 2015-06-15 20:24:12.559653+00 18 f9bde26a1556cd667f742bd34ec7c55e filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg 2015-06-16 21:06:55.484897+00 33 f9bde26a1556cd667f742bd34ec7c55e filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg 2015-09-26 23:10:14.933751+00 27 f9bde26a1556cd667f742bd34ec7c55e filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg 2015-06-16 21:19:41.524273+00 28 f9bde26a1556cd667f742bd34ec7c55e filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg 2015-06-16 21:21:05.259349+00 35 f9bde26a1556cd667f742bd34ec7c55e filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png 2015-08-09 20:38:45.75561+00 36 f9bde26a1556cd667f742bd34ec7c55e filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png 2015-08-09 20:39:14.549353+00 29 f9bde26a1556cd667f742bd34ec7c55e filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg 2015-06-22 19:51:39.830479+00 30 f9bde26a1556cd667f742bd34ec7c55e filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg 2015-06-22 21:20:52.87245+00 31 f9bde26a1556cd667f742bd34ec7c55e filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg 2015-06-22 21:28:28.785194+00 47 f9bde26a1556cd667f742bd34ec7c55e filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg 2015-12-28 22:23:49.572485+00 32 f9bde26a1556cd667f742bd34ec7c55e filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg 2015-09-26 23:11:08.408344+00 34 f9bde26a1556cd667f742bd34ec7c55e filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png 2015-08-09 20:30:14.228755+00 37 f9bde26a1556cd667f742bd34ec7c55e filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg 2015-08-09 20:43:04.092286+00 38 f9bde26a1556cd667f742bd34ec7c55e filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg 2015-08-09 20:45:56.194022+00 42 f9bde26a1556cd667f742bd34ec7c55e filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png 2015-08-14 23:25:08.199217+00 39 f9bde26a1556cd667f742bd34ec7c55e filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png 2015-08-14 23:12:24.268967+00 43 f9bde26a1556cd667f742bd34ec7c55e filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png 2015-08-14 23:28:26.642901+00 51 f9bde26a1556cd667f742bd34ec7c55e filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg 2015-08-28 22:26:47.798423+00 44 f9bde26a1556cd667f742bd34ec7c55e filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png 2015-08-14 23:28:58.043253+00 48 f9bde26a1556cd667f742bd34ec7c55e filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png 2015-08-28 16:09:57.087338+00 45 f9bde26a1556cd667f742bd34ec7c55e filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png 2015-08-14 23:31:55.850588+00 46 f9bde26a1556cd667f742bd34ec7c55e filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg 2015-08-28 15:49:55.069814+00 49 f9bde26a1556cd667f742bd34ec7c55e filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg 2015-08-28 16:58:13.769907+00 52 f9bde26a1556cd667f742bd34ec7c55e filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg 2015-08-28 23:40:37.471404+00 55 f9bde26a1556cd667f742bd34ec7c55e filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png 2015-09-02 10:14:03.371631+00 54 f9bde26a1556cd667f742bd34ec7c55e filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png 2015-08-29 13:39:38.596869+00 56 f9bde26a1556cd667f742bd34ec7c55e filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png 2015-09-02 10:15:15.202264+00 57 f9bde26a1556cd667f742bd34ec7c55e filer_public/19/28/192891d9-6161-483c-9b52-c53c3c63cbbb/glarnerwoche-2015-09-02.pdf 2015-09-02 12:26:57.406809+00 58 f9bde26a1556cd667f742bd34ec7c55e filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png 2015-09-02 12:54:01.00061+00 53 f9bde26a1556cd667f742bd34ec7c55e filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png 2015-09-26 23:10:14.348214+00 61 f9bde26a1556cd667f742bd34ec7c55e filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg 2015-09-02 13:56:01.333676+00 62 f9bde26a1556cd667f742bd34ec7c55e filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png 2015-09-02 13:57:45.743437+00 63 f9bde26a1556cd667f742bd34ec7c55e filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png 2015-09-17 19:30:11.128938+00 59 f9bde26a1556cd667f742bd34ec7c55e filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png 2015-09-26 23:10:14.133953+00 81 f9bde26a1556cd667f742bd34ec7c55e filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png 2015-11-03 18:27:10.833783+00 68 f9bde26a1556cd667f742bd34ec7c55e filer_public/45/89/4589a5e7-6df8-4dde-885c-0033ef7e80ba/breakfast_coffee 2015-09-17 19:46:16.478856+00 69 f9bde26a1556cd667f742bd34ec7c55e filer_public/86/d1/86d18426-6967-4877-bf73-683fbb4273b7/breakfast_coffee 2015-09-17 19:47:05.895529+00 92 f9bde26a1556cd667f742bd34ec7c55e filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg 2015-10-27 13:41:18.328183+00 71 f9bde26a1556cd667f742bd34ec7c55e filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg 2015-09-26 23:10:13.110549+00 79 f9bde26a1556cd667f742bd34ec7c55e filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg 2015-11-09 15:32:37.98374+00 82 f9bde26a1556cd667f742bd34ec7c55e filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png 2015-11-03 18:26:02.794081+00 75 f9bde26a1556cd667f742bd34ec7c55e filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg 2015-09-30 04:16:32.821374+00 74 f9bde26a1556cd667f742bd34ec7c55e filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png 2015-09-24 15:10:22.968976+00 76 f9bde26a1556cd667f742bd34ec7c55e filer_public/29/cf/29cf9568-7260-42be-b44f-208a0bc12d72/radio-central-digitalglarus-crowdfunding-2015-09-23.mp3 2015-09-24 15:31:39.064217+00 86 f9bde26a1556cd667f742bd34ec7c55e filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg 2015-11-03 19:06:25.345705+00 84 f9bde26a1556cd667f742bd34ec7c55e filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg 2015-10-27 12:44:06.310184+00 118 f9bde26a1556cd667f742bd34ec7c55e filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg 2015-11-21 17:36:57.330878+00 85 f9bde26a1556cd667f742bd34ec7c55e filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg 2015-10-27 13:15:37.883698+00 80 f9bde26a1556cd667f742bd34ec7c55e filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png 2015-11-03 18:27:12.79754+00 83 f9bde26a1556cd667f742bd34ec7c55e filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png 2015-11-03 18:27:07.512669+00 99 f9bde26a1556cd667f742bd34ec7c55e filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg 2015-10-27 14:41:24.144946+00 117 f9bde26a1556cd667f742bd34ec7c55e filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png 2015-11-03 19:06:43.184011+00 72 f9bde26a1556cd667f742bd34ec7c55e filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png 2015-09-25 14:57:01.644794+00 87 f9bde26a1556cd667f742bd34ec7c55e filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg 2015-10-27 13:20:21.212035+00 96 f9bde26a1556cd667f742bd34ec7c55e filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg 2015-10-27 14:12:13.147484+00 89 f9bde26a1556cd667f742bd34ec7c55e filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg 2015-10-27 13:24:59.795802+00 88 f9bde26a1556cd667f742bd34ec7c55e filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg 2015-10-27 13:25:37.070174+00 93 f9bde26a1556cd667f742bd34ec7c55e filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg 2015-10-27 14:12:30.000056+00 94 f9bde26a1556cd667f742bd34ec7c55e filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg 2015-10-27 14:15:02.167901+00 90 f9bde26a1556cd667f742bd34ec7c55e filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg 2015-10-27 13:35:30.907284+00 91 f9bde26a1556cd667f742bd34ec7c55e filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg 2015-10-27 13:37:43.364847+00 95 f9bde26a1556cd667f742bd34ec7c55e filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg 2015-10-27 14:16:54.352248+00 104 f9bde26a1556cd667f742bd34ec7c55e filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png 2015-11-03 10:17:25.088826+00 97 f9bde26a1556cd667f742bd34ec7c55e filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg 2015-10-27 14:20:28.979649+00 100 f9bde26a1556cd667f742bd34ec7c55e filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg 2015-10-27 16:26:05.884752+00 98 f9bde26a1556cd667f742bd34ec7c55e filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg 2015-10-27 14:26:40.664593+00 101 f9bde26a1556cd667f742bd34ec7c55e filer_public/6a/90/6a90c3c6-2553-449c-bb2b-ae29e9e1c233/ungleich_logo.svg 2015-11-03 10:12:48.270532+00 102 f9bde26a1556cd667f742bd34ec7c55e filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png 2015-11-03 10:15:27.539052+00 107 f9bde26a1556cd667f742bd34ec7c55e filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg 2015-11-03 10:58:35.748062+00 103 f9bde26a1556cd667f742bd34ec7c55e filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png 2015-11-03 10:16:24.623519+00 105 f9bde26a1556cd667f742bd34ec7c55e filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png 2015-11-03 10:31:30.96769+00 106 f9bde26a1556cd667f742bd34ec7c55e filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png 2015-11-03 10:32:04.199738+00 108 f9bde26a1556cd667f742bd34ec7c55e filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg 2015-11-03 11:06:13.970554+00 78 f9bde26a1556cd667f742bd34ec7c55e filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg 2015-11-03 19:05:25.693259+00 115 f9bde26a1556cd667f742bd34ec7c55e filer_public/40/0d/400d5643-2d94-4fb2-a991-8b08c96b8a0a/digitalglarus_scenery_jpg 2015-11-03 13:45:08.562246+00 110 f9bde26a1556cd667f742bd34ec7c55e filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg 2015-11-04 21:25:07.410152+00 73 f9bde26a1556cd667f742bd34ec7c55e filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png 2015-11-03 18:25:51.959692+00 119 f9bde26a1556cd667f742bd34ec7c55e filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png 2015-11-08 20:41:55.882847+00 120 f9bde26a1556cd667f742bd34ec7c55e filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg 2015-11-08 21:09:07.192925+00 70 f9bde26a1556cd667f742bd34ec7c55e filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png 2015-11-09 15:29:29.380602+00 121 f9bde26a1556cd667f742bd34ec7c55e filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png 2015-11-08 21:45:12.975064+00 122 f9bde26a1556cd667f742bd34ec7c55e filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png 2015-11-08 21:46:03.57678+00 137 f9bde26a1556cd667f742bd34ec7c55e filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg 2015-11-09 16:26:10.242834+00 123 f9bde26a1556cd667f742bd34ec7c55e filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg 2015-11-08 21:46:56.160145+00 124 f9bde26a1556cd667f742bd34ec7c55e filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg 2015-11-08 21:47:50.535527+00 148 f9bde26a1556cd667f742bd34ec7c55e filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg 2015-11-09 18:18:32.226276+00 138 f9bde26a1556cd667f742bd34ec7c55e filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg 2015-11-09 16:29:34.282318+00 125 f9bde26a1556cd667f742bd34ec7c55e filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg 2015-11-09 15:30:29.57166+00 126 f9bde26a1556cd667f742bd34ec7c55e filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg 2015-11-09 15:30:32.903764+00 127 f9bde26a1556cd667f742bd34ec7c55e filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png 2015-11-09 15:58:02.031368+00 139 f9bde26a1556cd667f742bd34ec7c55e filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg 2015-11-09 17:54:53.612616+00 129 f9bde26a1556cd667f742bd34ec7c55e filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg 2015-11-09 15:59:36.205544+00 130 f9bde26a1556cd667f742bd34ec7c55e filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg 2015-11-09 16:01:23.814557+00 131 f9bde26a1556cd667f742bd34ec7c55e filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg 2015-11-09 16:05:03.636224+00 140 f9bde26a1556cd667f742bd34ec7c55e filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg 2015-11-09 17:57:43.459503+00 133 f9bde26a1556cd667f742bd34ec7c55e filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png 2015-11-09 16:11:09.591333+00 136 f9bde26a1556cd667f742bd34ec7c55e filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg 2015-11-09 16:17:58.747413+00 149 f9bde26a1556cd667f742bd34ec7c55e filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png 2015-11-09 18:20:16.1057+00 141 f9bde26a1556cd667f742bd34ec7c55e filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg 2015-11-09 17:58:39.134986+00 142 f9bde26a1556cd667f742bd34ec7c55e filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg 2015-11-09 18:03:26.500151+00 143 f9bde26a1556cd667f742bd34ec7c55e filer_public/62/91/6291774f-e59c-44cf-8880-704ea08c7a28/ungleich_logo.svg 2015-11-09 18:06:14.504976+00 144 f9bde26a1556cd667f742bd34ec7c55e filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png 2015-11-09 18:07:01.691161+00 156 f9bde26a1556cd667f742bd34ec7c55e filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png 2015-11-15 14:56:43.657547+00 150 f9bde26a1556cd667f742bd34ec7c55e filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg 2015-11-09 18:57:30.816417+00 151 f9bde26a1556cd667f742bd34ec7c55e filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg 2015-11-13 23:30:53.925425+00 147 f9bde26a1556cd667f742bd34ec7c55e filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png 2015-11-09 18:16:57.29848+00 166 f9bde26a1556cd667f742bd34ec7c55e filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg 2015-12-07 14:02:37.036058+00 163 f9bde26a1556cd667f742bd34ec7c55e filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg 2015-12-07 14:00:49.578945+00 159 f9bde26a1556cd667f742bd34ec7c55e filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg 2015-11-25 19:36:08.887833+00 154 f9bde26a1556cd667f742bd34ec7c55e filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg 2015-11-15 14:51:54.840018+00 155 f9bde26a1556cd667f742bd34ec7c55e filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg 2015-11-15 14:54:30.293224+00 157 f9bde26a1556cd667f742bd34ec7c55e filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png 2015-11-21 17:32:38.814091+00 152 f9bde26a1556cd667f742bd34ec7c55e filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg 2015-11-21 17:34:58.202726+00 160 f9bde26a1556cd667f742bd34ec7c55e filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png 2015-11-25 19:48:31.490861+00 158 f9bde26a1556cd667f742bd34ec7c55e filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png 2015-11-25 07:03:39.993201+00 161 f9bde26a1556cd667f742bd34ec7c55e filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg 2015-12-07 13:32:11.509172+00 128 f9bde26a1556cd667f742bd34ec7c55e filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png 2016-01-06 13:48:37.462543+00 165 f9bde26a1556cd667f742bd34ec7c55e filer_public/28/00/28007b1f-af48-4a29-9684-79c2dcd4b041/digitalglarus_jazz_concert_coupons 2015-12-07 14:01:57.698239+00 167 f9bde26a1556cd667f742bd34ec7c55e filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg 2015-12-07 14:03:39.27182+00 168 f9bde26a1556cd667f742bd34ec7c55e filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg 2015-12-07 14:04:34.536865+00 169 f9bde26a1556cd667f742bd34ec7c55e filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg 2015-12-07 14:14:42.492825+00 170 f9bde26a1556cd667f742bd34ec7c55e filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg 2015-12-07 14:22:10.013294+00 171 f9bde26a1556cd667f742bd34ec7c55e filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg 2015-12-07 14:30:41.945018+00 172 f9bde26a1556cd667f742bd34ec7c55e filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg 2015-12-07 14:31:12.640635+00 162 f9bde26a1556cd667f742bd34ec7c55e filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg 2015-12-07 16:29:46.596592+00 173 f9bde26a1556cd667f742bd34ec7c55e filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg 2015-12-07 15:44:05.9612+00 183 f9bde26a1556cd667f742bd34ec7c55e filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png 2016-01-13 21:46:40.567522+00 174 f9bde26a1556cd667f742bd34ec7c55e filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg 2015-12-07 15:54:35.152493+00 184 f9bde26a1556cd667f742bd34ec7c55e filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png 2016-01-13 21:47:00.838274+00 176 f9bde26a1556cd667f742bd34ec7c55e filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg 2015-12-07 16:07:55.964201+00 178 f9bde26a1556cd667f742bd34ec7c55e filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg 2016-01-06 14:01:44.132743+00 181 f9bde26a1556cd667f742bd34ec7c55e filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg 2016-01-14 16:05:52.551052+00 190 f9bde26a1556cd667f742bd34ec7c55e filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg 2016-01-15 15:32:11.72767+00 191 f9bde26a1556cd667f742bd34ec7c55e filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png 2016-01-15 15:33:02.702542+00 188 f9bde26a1556cd667f742bd34ec7c55e filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png 2016-01-15 15:38:29.246794+00 185 f9bde26a1556cd667f742bd34ec7c55e filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg 2016-01-06 18:06:31.242877+00 189 f9bde26a1556cd667f742bd34ec7c55e filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png 2016-01-28 17:05:52.912692+00 187 f9bde26a1556cd667f742bd34ec7c55e filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg 2016-01-08 10:32:25.929231+00 186 f9bde26a1556cd667f742bd34ec7c55e filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png 2016-01-13 21:40:42.939214+00 179 f9bde26a1556cd667f742bd34ec7c55e filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg 2016-01-13 21:43:10.838663+00 \. -- -- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('easy_thumbnails_source_id_seq', 191, true); -- -- Data for Name: easy_thumbnails_thumbnail; Type: TABLE DATA; Schema: public; Owner: app -- COPY easy_thumbnails_thumbnail (id, storage_hash, name, modified, source_id) FROM stdin; 1 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:43.961325+00 11 2 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:44.023362+00 11 3 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:44.079781+00 11 4 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:44.139663+00 11 5 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.152985+00 12 6 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.220742+00 12 7 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.288801+00 12 8 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.353659+00 12 9 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.561718+00 13 10 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.612733+00 13 11 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.670574+00 13 12 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:10:46.719497+00 13 17 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:17:43.27573+00 15 18 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:17:43.393008+00 15 19 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:17:43.508375+00 15 20 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 03:17:43.623966+00 15 21 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:43:01.171023+00 16 22 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:43:01.31511+00 16 23 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:43:01.49873+00 16 24 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:43:01.6384+00 16 25 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__736x423_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:43:09.044936+00 16 26 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__800x159_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:44:02.317213+00 13 27 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:44:16.300511+00 11 28 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__935x514_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:44:29.86618+00 12 29 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:48:14.835315+00 17 30 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:48:15.066752+00 17 31 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:48:15.303436+00 17 32 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:48:15.49941+00 17 33 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:55:52.356094+00 18 34 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:55:52.425013+00 18 35 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:55:52.488416+00 18 36 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 04:55:52.556872+00 18 37 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:25:46.25435+00 19 38 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:25:46.309709+00 19 39 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:25:46.358701+00 19 40 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:25:46.408904+00 19 41 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:27:15.654185+00 20 42 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:27:15.720538+00 20 43 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:27:15.782946+00 20 44 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-14 21:27:15.850812+00 20 45 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__64x64_q85_crop_subsampling-2_upscale.png 2015-06-14 21:27:31.292214+00 21 46 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__48x48_q85_crop_subsampling-2_upscale.png 2015-06-14 21:27:31.354218+00 21 47 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__16x16_q85_crop_subsampling-2_upscale.png 2015-06-14 21:27:31.411128+00 21 48 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__32x32_q85_crop_subsampling-2_upscale.png 2015-06-14 21:27:31.470584+00 21 49 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__210x10000_q85_subsampling-2.jpg 2015-06-14 21:28:13.298951+00 19 50 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__210x10000_q85_subsampling-2.jpg 2015-06-15 20:11:09.388276+00 20 51 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__960x641_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:12:08.590677+00 20 52 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__800x252_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:12:50.767564+00 19 53 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__210x10000_q85_subsampling-2.png 2015-06-15 20:13:05.526767+00 21 54 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__800x288_q85_crop_subsampling-2_upscale.png 2015-06-15 20:13:15.930445+00 21 55 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:24:05.357088+00 22 56 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:24:05.415309+00 22 57 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:24:05.472846+00 22 58 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:24:05.531672+00 22 59 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__690x389_q85_crop_subsampling-2_upscale.jpg 2015-06-15 20:24:12.607442+00 22 64 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__210x10000_q85_subsampling-2.jpg 2015-06-16 21:06:55.601461+00 18 65 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.111065+00 10 66 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.2118+00 10 67 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.319165+00 10 68 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.573659+00 10 69 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.728271+00 8 70 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.789503+00 8 71 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.848783+00 8 72 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:33.990015+00 8 73 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.125277+00 7 74 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.17716+00 7 75 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.228274+00 7 76 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.283648+00 7 77 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.389678+00 9 78 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.438894+00 9 79 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.493014+00 9 80 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:08:34.606158+00 9 81 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:16:23.042746+00 24 82 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:16:23.150794+00 24 83 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:16:23.296046+00 24 84 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:16:23.390157+00 24 85 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__1333x944_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:16:30.989038+00 24 86 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:17:26.757978+00 25 87 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:17:26.83992+00 25 88 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:17:26.96659+00 25 89 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:17:27.082646+00 25 90 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__1323x963_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:17:32.833987+00 25 91 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:18:17.443333+00 26 92 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:18:17.52545+00 26 93 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:18:17.610127+00 26 94 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:18:17.69473+00 26 95 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__1419x741_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:18:24.347333+00 26 96 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:19:06.540844+00 27 97 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:19:06.627898+00 27 98 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:19:06.715347+00 27 99 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:19:06.809056+00 27 100 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__1074x805_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:19:41.605519+00 27 101 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:21:05.30086+00 28 102 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:21:05.402203+00 28 103 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:21:05.504426+00 28 104 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-16 21:21:05.609315+00 28 105 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:34.873265+00 29 106 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:35.035657+00 29 107 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:35.183649+00 29 108 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:35.291145+00 29 109 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:55.716104+00 30 110 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:55.830007+00 30 111 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:55.95397+00 30 112 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:54:56.065427+00 30 113 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:55:53.935068+00 31 114 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:55:54.067736+00 31 115 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:55:54.190421+00 31 116 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-06-22 13:55:54.311992+00 31 117 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg 2015-06-22 19:51:39.946491+00 29 118 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg 2015-06-22 21:20:52.922031+00 30 119 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__1200x914_q85_crop_subsampling-2_upscale.jpg 2015-06-22 21:28:28.832968+00 31 120 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-07-20 19:15:00.018825+00 32 121 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-07-20 19:15:00.152683+00 32 122 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-07-20 19:15:00.251685+00 32 123 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-07-20 19:15:00.333203+00 32 124 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-07-26 22:38:02.818644+00 33 125 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-07-26 22:38:03.03443+00 33 126 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-07-26 22:38:03.355143+00 33 127 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-07-26 22:38:03.580138+00 33 128 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:29:58.99141+00 34 129 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:29:59.111519+00 34 130 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:29:59.195456+00 34 131 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:29:59.27732+00 34 132 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__1800x900_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:30:14.275581+00 34 133 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:28.544015+00 35 134 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:28.635614+00 35 135 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:28.68936+00 35 136 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:28.746514+00 35 137 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:30.621575+00 36 138 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:30.681813+00 36 139 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:30.740621+00 36 140 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:30.797929+00 36 141 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__690x389_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:38:45.804991+00 35 142 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__690x356_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:39:14.588384+00 36 143 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:42:58.313358+00 37 144 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:42:58.447639+00 37 145 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:42:58.498768+00 37 146 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:42:58.61445+00 37 147 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__500x333_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:43:04.130622+00 37 148 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:45:49.476405+00 38 149 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:45:49.637722+00 38 150 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:45:49.761531+00 38 151 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:45:49.878456+00 38 152 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__950x680_q85_crop_subsampling-2_upscale.jpg 2015-08-09 20:45:56.236667+00 38 153 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:07:38.90187+00 39 154 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:07:39.004754+00 39 155 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:07:39.073056+00 39 156 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:07:39.145761+00 39 157 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__1280x711_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:07:45.946582+00 39 158 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__210x10000_q85_subsampling-2.jpg 2015-08-14 23:12:24.334673+00 39 172 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:25:01.885315+00 42 173 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:25:01.951902+00 42 174 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:25:02.019219+00 42 175 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:25:02.084743+00 42 176 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__1280x602_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:25:08.236745+00 42 177 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:26.683673+00 43 178 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:26.741965+00 43 179 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:26.863597+00 43 180 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:26.937438+00 43 181 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:51.80082+00 44 182 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:51.898035+00 44 183 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:51.948474+00 44 184 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:51.997196+00 44 185 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__690x389_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:28:58.081347+00 44 186 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:31:51.147835+00 45 187 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:31:51.215487+00 45 188 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:31:51.283038+00 45 189 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:31:51.348765+00 45 190 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__1200x740_q85_crop_subsampling-2_upscale.jpg 2015-08-14 23:31:55.889759+00 45 191 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-24 22:12:52.073211+00 46 192 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-24 22:12:52.431389+00 46 193 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-24 22:12:52.633863+00 46 194 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-24 22:12:52.807555+00 46 195 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__210x10000_q85_subsampling-2.jpg 2015-08-28 15:49:55.286005+00 46 196 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-28 15:50:20.532217+00 47 197 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-28 15:50:20.696569+00 47 198 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-28 15:50:20.882138+00 47 199 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-28 15:50:21.027999+00 47 200 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__16x16_q85_crop_subsampling-2_upscale.png 2015-08-28 16:09:51.352997+00 48 201 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__32x32_q85_crop_subsampling-2_upscale.png 2015-08-28 16:09:51.455651+00 48 202 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__64x64_q85_crop_subsampling-2_upscale.png 2015-08-28 16:09:51.535494+00 48 203 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__48x48_q85_crop_subsampling-2_upscale.png 2015-08-28 16:09:51.658886+00 48 204 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__896x443_q85_crop_subsampling-2_upscale.png 2015-08-28 16:09:57.128726+00 48 205 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-28 16:57:26.989368+00 49 206 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-28 16:57:27.053022+00 49 207 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-28 16:57:27.119355+00 49 208 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-28 16:57:27.186796+00 49 209 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__800x531_q85_crop_subsampling-2_upscale.jpg 2015-08-28 16:58:13.814734+00 49 214 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-28 22:26:38.988543+00 51 215 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-28 22:26:39.057853+00 51 216 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-28 22:26:39.116755+00 51 217 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-28 22:26:39.17481+00 51 218 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__600x429_q85_crop_subsampling-2_upscale.jpg 2015-08-28 22:26:47.838828+00 51 219 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:40:37.590895+00 52 220 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:40:38.618842+00 52 221 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:40:39.567302+00 52 222 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:40:40.535663+00 52 223 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:43:26.325488+00 53 224 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:43:26.43663+00 53 225 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:43:26.580183+00 53 226 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-08-28 23:43:26.685397+00 53 227 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__16x16_q85_crop_subsampling-2_upscale.png 2015-08-29 13:39:32.131821+00 54 228 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__32x32_q85_crop_subsampling-2_upscale.png 2015-08-29 13:39:32.340129+00 54 229 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__64x64_q85_crop_subsampling-2_upscale.png 2015-08-29 13:39:32.484097+00 54 230 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__48x48_q85_crop_subsampling-2_upscale.png 2015-08-29 13:39:32.665533+00 54 231 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__1791x886_q85_crop_subsampling-2_upscale.png 2015-08-29 13:39:38.674184+00 54 232 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:14:03.419068+00 55 233 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:14:03.564818+00 55 234 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:14:03.708255+00 55 235 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:14:03.856854+00 55 236 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:15:09.144915+00 56 237 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:15:09.242024+00 56 238 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:15:09.320546+00 56 239 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:15:09.387131+00 56 240 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__1011x792_q85_crop_subsampling-2_upscale.jpg 2015-09-02 10:15:15.245245+00 56 241 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 12:54:01.053331+00 58 242 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 12:54:01.20104+00 58 243 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 12:54:01.278334+00 58 244 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 12:54:01.35247+00 58 245 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:46:01.159959+00 59 246 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:46:01.245219+00 59 247 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:46:01.356407+00 59 248 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:46:01.422652+00 59 253 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:56:01.391372+00 61 254 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:56:01.46926+00 61 255 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:56:01.553898+00 61 256 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:56:01.636733+00 61 257 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:57:36.667386+00 62 258 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:57:36.724361+00 62 259 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:57:36.775194+00 62 260 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:57:36.824808+00 62 261 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg 2015-09-02 13:57:45.817646+00 62 262 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__48x48_q85_crop_subsampling-2_upscale.png 2015-09-17 19:17:54.172893+00 63 263 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__32x32_q85_crop_subsampling-2_upscale.png 2015-09-17 19:17:54.364746+00 63 264 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__64x64_q85_crop_subsampling-2_upscale.png 2015-09-17 19:17:54.498265+00 63 265 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__16x16_q85_crop_subsampling-2_upscale.png 2015-09-17 19:17:54.624763+00 63 266 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__859x1320_q85_crop_subsampling-2_upscale.png 2015-09-17 19:18:13.99836+00 63 267 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__210x10000_q85_subsampling-2.png 2015-09-17 19:30:11.190303+00 63 276 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-17 19:47:55.534943+00 70 277 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-17 19:47:55.699711+00 70 278 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-17 19:47:55.806207+00 70 279 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-17 19:47:55.959314+00 70 280 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:00:49.273932+00 71 281 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:00:49.37246+00 71 282 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:00:49.430623+00 71 283 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:00:49.488404+00 71 284 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:10:45.538413+00 72 285 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:10:45.71737+00 72 286 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:10:45.848778+00 72 287 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:10:45.97033+00 72 288 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__2204x1482_q85_crop_subsampling-2_upscale.jpg 2015-09-24 14:11:19.448821+00 72 289 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__16x16_q85_crop_subsampling-2_upscale.png 2015-09-24 14:15:34.926662+00 73 290 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__48x48_q85_crop_subsampling-2_upscale.png 2015-09-24 14:15:34.990617+00 73 291 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__64x64_q85_crop_subsampling-2_upscale.png 2015-09-24 14:15:35.074888+00 73 292 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__32x32_q85_crop_subsampling-2_upscale.png 2015-09-24 14:15:35.130971+00 73 293 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png 2015-09-24 14:15:40.377748+00 73 294 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__16x16_q85_crop_subsampling-2_upscale.png 2015-09-24 15:09:48.505906+00 74 295 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__48x48_q85_crop_subsampling-2_upscale.png 2015-09-24 15:09:48.658255+00 74 296 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__64x64_q85_crop_subsampling-2_upscale.png 2015-09-24 15:09:48.742427+00 74 297 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__32x32_q85_crop_subsampling-2_upscale.png 2015-09-24 15:09:48.823275+00 74 298 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-24 15:10:00.914278+00 75 299 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-24 15:10:01.039688+00 75 300 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-24 15:10:01.153399+00 75 301 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-24 15:10:01.255094+00 75 302 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__1327x603_q85_crop_subsampling-2_upscale.png 2015-09-24 15:10:23.055323+00 74 303 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__1600x844_q85_crop_subsampling-2_upscale.jpg 2015-09-24 15:11:10.784443+00 75 308 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:08:32.8826+00 78 309 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:08:33.006211+00 78 310 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:08:33.114802+00 78 311 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:08:33.184872+00 78 312 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:11:37.937715+00 79 313 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:11:38.291259+00 79 314 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:11:38.699557+00 79 315 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:11:38.987386+00 79 316 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__3456x2056_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:11:46.648075+00 79 317 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:25:44.552787+00 80 318 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:25:44.824066+00 80 319 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:25:45.093988+00 80 320 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:25:45.356858+00 80 321 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__3648x2056_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:25:51.337892+00 80 322 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:29:31.898674+00 81 323 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:29:32.151463+00 81 324 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:29:32.397025+00 81 325 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:29:32.696828+00 81 326 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__3648x2056_q85_crop_subsampling-2_upscale.jpg 2015-09-25 13:29:57.057641+00 81 327 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:06:34.404912+00 82 328 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:06:34.699186+00 82 329 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:06:35.010195+00 82 330 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:06:35.362333+00 82 331 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__3256x3059_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:06:51.094017+00 82 332 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:25:34.60776+00 83 333 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:25:34.886806+00 83 334 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:25:35.11886+00 83 335 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:25:35.344187+00 83 336 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__800x537_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:56:45.076049+00 72 337 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__700x470_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:56:53.867379+00 72 338 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__600x403_q85_crop_subsampling-2_upscale.jpg 2015-09-25 14:57:01.73719+00 72 339 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:08:06.744451+00 83 340 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:13.524533+00 71 341 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:14.047875+00 70 342 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:14.192669+00 59 343 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:14.455241+00 53 344 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:14.722836+00 47 345 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:10:15.018314+00 33 346 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__640x120_q85_crop_subsampling-2.jpg 2015-09-26 23:11:08.600535+00 32 347 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__200x250_q85_crop_subsampling-2_upscale.jpg 2015-09-30 04:12:09.228309+00 75 348 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__250x250_q85_crop_subsampling-2_upscale.jpg 2015-09-30 04:12:19.75141+00 75 349 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__100x100_q85_crop_subsampling-2_upscale.jpg 2015-09-30 04:16:32.867651+00 75 350 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 12:44:06.385705+00 84 351 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 12:44:06.663819+00 84 352 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 12:44:06.800154+00 84 353 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 12:44:06.941304+00 84 354 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:15:37.922593+00 85 355 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:15:38.239154+00 85 356 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:15:38.533864+00 85 357 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:15:38.880282+00 85 358 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:16:16.998027+00 86 359 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:16:17.171333+00 86 360 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:16:17.278357+00 86 361 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:16:17.390674+00 86 362 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:16:23.649421+00 86 363 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:20:16.196452+00 87 364 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:20:16.344832+00 87 365 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:20:16.506645+00 87 366 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:20:16.623715+00 87 367 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:20:21.256753+00 87 368 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:49.809013+00 88 369 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:49.932696+00 88 370 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:50.04485+00 88 371 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:50.154626+00 88 372 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:50.959037+00 89 373 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:51.128391+00 89 374 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:51.237024+00 89 375 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:51.343137+00 89 376 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__1724x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:24:59.83465+00 89 377 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:25:37.109244+00 88 378 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:34:51.246895+00 90 379 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:34:51.391756+00 90 380 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:34:51.504324+00 90 381 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:34:51.620163+00 90 382 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:35:11.171822+00 91 383 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:35:11.304094+00 91 384 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:35:11.415943+00 91 385 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:35:11.582664+00 91 386 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__1878x1056_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:35:30.949584+00 90 387 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:37:43.431371+00 91 388 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:41:12.451273+00 92 389 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:41:12.615083+00 92 390 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:41:12.742784+00 92 391 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:41:12.906063+00 92 392 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 13:41:18.36835+00 92 393 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:13.107519+00 93 394 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:13.234795+00 93 395 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:13.363189+00 93 396 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:13.470714+00 93 397 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:26.865434+00 94 398 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:26.981352+00 94 399 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:27.088324+00 94 400 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:27.198075+00 94 401 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:43.447161+00 95 402 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:43.560339+00 95 403 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:43.670586+00 95 404 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:11:43.782991+00 95 405 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:12:13.188625+00 96 406 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:12:13.310192+00 96 407 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:12:13.413112+00 96 408 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:12:13.515989+00 96 409 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__1806x992_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:12:30.04245+00 93 410 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:15:02.211753+00 94 411 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:16:54.395488+00 95 412 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:20:23.817955+00 97 413 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:20:23.933518+00 97 414 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:20:24.037316+00 97 415 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:20:24.148402+00 97 416 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__1680x934_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:20:29.026522+00 97 417 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:26:35.334572+00 98 418 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:26:35.438778+00 98 419 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:26:35.543448+00 98 420 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:26:35.712918+00 98 421 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__962x1650_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:26:40.792542+00 98 422 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:41:18.533022+00 99 423 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:41:18.724468+00 99 424 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:41:18.913212+00 99 425 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:41:19.126794+00 99 426 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__2579x1648_q85_crop_subsampling-2_upscale.jpg 2015-10-27 14:41:24.199998+00 99 427 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-10-27 16:25:59.324678+00 100 428 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-10-27 16:25:59.482009+00 100 429 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-10-27 16:25:59.682124+00 100 430 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-10-27 16:25:59.914865+00 100 431 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__1806x1496_q85_crop_subsampling-2_upscale.jpg 2015-10-27 16:26:05.92925+00 100 432 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-03 10:15:22.087712+00 102 433 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-03 10:15:22.297938+00 102 434 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-03 10:15:22.362966+00 102 435 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-03 10:15:22.432447+00 102 436 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__210x10000_q85_subsampling-2.png 2015-11-03 10:15:27.617507+00 102 437 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-03 10:16:12.478121+00 103 438 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-03 10:16:12.664909+00 103 439 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-03 10:16:12.709574+00 103 440 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-03 10:16:12.752741+00 103 441 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__210x10000_q85_subsampling-2.png 2015-11-03 10:16:24.703947+00 103 442 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-03 10:17:18.023267+00 104 443 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-03 10:17:18.139645+00 104 444 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-03 10:17:18.187124+00 104 445 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-03 10:17:18.235636+00 104 446 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__210x10000_q85_subsampling-2.png 2015-11-03 10:17:25.181624+00 104 447 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-03 10:26:09.806968+00 105 448 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-03 10:26:09.923414+00 105 449 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-03 10:26:10.005201+00 105 450 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-03 10:26:10.092741+00 105 451 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-03 10:28:52.945025+00 106 452 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-03 10:28:53.004342+00 106 453 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-03 10:28:53.055042+00 106 454 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-03 10:28:53.117392+00 106 455 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__210x10000_q85_subsampling-2.png 2015-11-03 10:31:31.039961+00 105 456 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__210x10000_q85_subsampling-2.png 2015-11-03 10:32:04.290844+00 106 457 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-03 10:58:20.692819+00 107 458 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-03 10:58:21.351317+00 107 459 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-03 10:58:21.998096+00 107 460 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-03 10:58:22.6933+00 107 461 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__210x10000_q85_subsampling-2.jpg 2015-11-03 10:58:35.802096+00 107 462 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:05:47.815857+00 108 463 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:05:47.941074+00 108 464 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:05:48.035305+00 108 465 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:05:48.16388+00 108 466 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__210x10000_q85_subsampling-2.jpg 2015-11-03 11:06:14.026176+00 108 471 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:14:03.88573+00 110 472 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:14:03.994411+00 110 473 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:14:04.078887+00 110 474 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-03 11:14:04.226192+00 110 484 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-03 18:15:42.122421+00 117 485 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-03 18:15:42.210876+00 117 486 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-03 18:15:42.319047+00 117 487 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-03 18:15:42.406552+00 117 488 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__210x10000_q85_subsampling-2.png 2015-11-03 18:25:52.003869+00 73 489 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__210x10000_q85_subsampling-2.jpg 2015-11-03 18:26:02.853894+00 82 490 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__210x10000_q85_subsampling-2.jpg 2015-11-03 18:27:07.650571+00 83 491 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__210x10000_q85_subsampling-2.jpg 2015-11-03 18:27:10.883747+00 81 492 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__210x10000_q85_subsampling-2.jpg 2015-11-03 18:27:12.858677+00 80 493 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__210x10000_q85_subsampling-2.jpg 2015-11-03 18:27:15.475463+00 110 494 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__210x10000_q85_subsampling-2.jpg 2015-11-03 19:05:25.762433+00 78 495 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__210x10000_q85_subsampling-2.jpg 2015-11-03 19:06:25.413901+00 86 496 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__210x10000_q85_subsampling-2.jpg 2015-11-03 19:06:43.30665+00 117 497 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__640x120_q85_crop_subsampling-2.jpg 2015-11-04 21:25:07.528995+00 110 498 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 20:38:27.863292+00 118 499 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 20:38:28.017382+00 118 500 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 20:38:28.109678+00 118 501 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 20:38:28.203044+00 118 502 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-08 20:41:47.934766+00 119 503 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-08 20:41:48.132444+00 119 504 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-08 20:41:48.359335+00 119 505 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-08 20:41:48.554628+00 119 506 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__1824x1028_q85_crop_subsampling-2_upscale.png 2015-11-08 20:41:55.959281+00 119 507 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:09:00.12113+00 120 508 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:09:00.187417+00 120 509 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:09:00.243655+00 120 510 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:09:00.31144+00 120 511 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__600x449_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:09:07.346487+00 120 512 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:05.799947+00 121 513 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:06.049107+00 121 514 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:06.245399+00 121 515 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:06.512964+00 121 516 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__1824x1028_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:13.020387+00 121 517 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:54.460281+00 122 518 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:54.649947+00 122 519 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:54.826673+00 122 520 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-08 21:45:55.10704+00 122 521 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__1824x896_q85_crop_subsampling-2_upscale.png 2015-11-08 21:46:03.671722+00 122 522 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:46:50.328718+00 123 523 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:46:50.422721+00 123 524 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:46:50.511864+00 123 525 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:46:50.597407+00 123 526 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__1216x740_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:46:56.204135+00 123 811 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-08 10:32:22.391038+00 187 527 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:47:50.582839+00 124 528 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:47:50.671904+00 124 529 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:47:50.753245+00 124 530 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:47:50.843762+00 124 531 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:49:57.741574+00 125 532 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:49:57.886944+00 125 533 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:49:57.990229+00 125 534 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:49:58.11553+00 125 535 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__1804x888_q85_crop_subsampling-2_upscale.jpg 2015-11-08 21:50:05.918897+00 125 536 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-08 22:30:09.619464+00 126 537 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-08 22:30:09.855872+00 126 538 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-08 22:30:09.967275+00 126 539 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-08 22:30:10.086389+00 126 540 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__1804x888_q85_crop_subsampling-2_upscale.jpg 2015-11-08 22:30:15.719797+00 126 541 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__210x10000_q85_subsampling-2.jpg 2015-11-09 15:29:29.50021+00 70 542 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 15:30:29.635707+00 125 543 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 15:30:33.000607+00 126 544 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 15:32:38.081001+00 79 545 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:04.099204+00 127 546 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:04.192062+00 127 612 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 18:07:01.906214+00 144 547 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:04.300952+00 127 548 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:04.406157+00 127 549 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:56.455228+00 128 550 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:56.651916+00 128 551 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:56.820432+00 128 552 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 15:57:57.011646+00 128 553 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__210x10000_q85_subsampling-2.png 2015-11-09 15:58:02.133392+00 127 554 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 15:59:31.056909+00 129 555 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 15:59:31.421903+00 129 556 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 15:59:31.740561+00 129 557 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 15:59:32.116632+00 129 558 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 15:59:36.261173+00 129 559 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:01:18.171444+00 130 560 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:01:18.391589+00 130 561 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:01:18.591709+00 130 562 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:01:18.792651+00 130 563 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 16:01:23.955264+00 130 564 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:04:59.952079+00 131 565 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:05:00.029105+00 131 566 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:05:00.111898+00 131 567 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:05:00.211727+00 131 568 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 16:05:03.685719+00 131 569 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 16:08:02.01978+00 133 570 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 16:08:02.172724+00 133 571 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 16:08:02.326658+00 133 572 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 16:08:02.466676+00 133 573 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__210x10000_q85_subsampling-2.png 2015-11-09 16:11:09.652821+00 133 574 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:17:49.640756+00 136 575 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:17:49.852253+00 136 576 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:17:50.03751+00 136 577 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:17:50.225091+00 136 578 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 16:17:58.824352+00 136 579 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:19:51.673162+00 137 580 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:19:52.605748+00 137 581 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:19:53.546624+00 137 582 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:19:54.514238+00 137 583 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 16:26:10.360718+00 137 584 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:29:30.136033+00 138 585 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:29:30.326426+00 138 586 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:29:30.478178+00 138 587 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 16:29:30.650987+00 138 588 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 16:29:34.365605+00 138 589 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:54:48.197596+00 139 590 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:54:48.266648+00 139 591 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:54:48.332021+00 139 592 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:54:48.397101+00 139 593 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 17:54:53.681098+00 139 594 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:57:37.097532+00 140 595 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:57:37.189751+00 140 596 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:57:37.279442+00 140 597 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:57:37.36245+00 140 598 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 17:57:43.514654+00 140 599 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:58:35.550631+00 141 600 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:58:35.674898+00 141 601 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:58:35.788723+00 141 602 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 17:58:35.907245+00 141 603 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 17:58:39.209149+00 141 604 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:03:19.294296+00 142 605 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:03:19.526207+00 142 606 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:03:19.74903+00 142 607 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:03:19.978781+00 142 608 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 18:03:26.569617+00 142 609 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 18:07:01.733814+00 144 610 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 18:07:01.792518+00 144 611 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 18:07:01.847569+00 144 623 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 18:16:52.325419+00 147 624 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 18:16:52.391874+00 147 625 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 18:16:52.439619+00 147 626 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 18:16:52.490219+00 147 627 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__210x10000_q85_subsampling-2.png 2015-11-09 18:16:57.367452+00 147 628 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:18:28.356184+00 148 629 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:18:28.466224+00 148 630 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:18:28.617415+00 148 631 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:18:28.719307+00 148 632 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__210x10000_q85_subsampling-2.jpg 2015-11-09 18:18:32.369853+00 148 633 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-09 18:20:13.013157+00 149 634 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-09 18:20:13.071259+00 149 635 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-09 18:20:13.118964+00 149 636 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-09 18:20:13.169884+00 149 637 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__210x10000_q85_subsampling-2.png 2015-11-09 18:20:16.171496+00 149 638 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:57:26.023393+00 150 639 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:57:26.089092+00 150 640 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:57:26.157181+00 150 641 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:57:26.247072+00 150 642 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__998x514_q85_crop_subsampling-2_upscale.jpg 2015-11-09 18:57:30.85673+00 150 643 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:28:49.746151+00 151 644 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:28:49.841168+00 151 645 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:28:49.904005+00 151 646 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:28:49.970716+00 151 647 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__210x10000_q85_subsampling-2.jpg 2015-11-13 23:30:53.986162+00 151 648 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:31:18.319159+00 152 649 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:31:18.4574+00 152 650 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:31:18.533125+00 152 651 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-13 23:31:18.614126+00 152 656 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:51:50.446523+00 154 657 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:51:50.559473+00 154 658 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:51:50.654195+00 154 659 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:51:50.751465+00 154 660 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__210x10000_q85_subsampling-2.jpg 2015-11-15 14:51:54.886343+00 154 661 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:54:26.567802+00 155 662 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:54:26.664818+00 155 663 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:54:26.75839+00 155 664 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-15 14:54:26.858769+00 155 665 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__210x10000_q85_subsampling-2.jpg 2015-11-15 14:54:30.385984+00 155 666 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-15 14:56:38.976009+00 156 667 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-15 14:56:39.139243+00 156 668 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-15 14:56:39.293582+00 156 669 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-15 14:56:39.438673+00 156 670 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__210x10000_q85_subsampling-2.png 2015-11-15 14:56:43.700954+00 156 671 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-19 20:53:02.257119+00 157 672 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-19 20:53:02.471504+00 157 673 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-19 20:53:02.588582+00 157 674 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-19 20:53:02.674963+00 157 675 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__1701x2404_q85_crop_subsampling-2_upscale.png 2015-11-19 21:10:30.08639+00 128 676 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__640x120_q85_crop_subsampling-2.png 2015-11-21 17:32:38.967086+00 157 677 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__640x120_q85_crop_subsampling-2.jpg 2015-11-21 17:34:58.270434+00 152 678 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__640x120_q85_crop_subsampling-2.jpg 2015-11-21 17:36:57.487426+00 118 679 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__48x48_q85_crop_subsampling-2_upscale.png 2015-11-25 06:54:11.203608+00 158 680 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__16x16_q85_crop_subsampling-2_upscale.png 2015-11-25 06:54:11.321053+00 158 681 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__32x32_q85_crop_subsampling-2_upscale.png 2015-11-25 06:54:11.41392+00 158 682 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__64x64_q85_crop_subsampling-2_upscale.png 2015-11-25 06:54:11.507739+00 158 683 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__1502x505_q85_crop_subsampling-2_upscale.png 2015-11-25 06:54:45.395271+00 158 684 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__200x67_q85_crop_subsampling-2_upscale.png 2015-11-25 06:56:19.981209+00 158 685 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__200x67_q85_subsampling-2.png 2015-11-25 06:59:50.632527+00 158 686 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__210x10000_q85_subsampling-2.png 2015-11-25 07:03:40.116188+00 158 687 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:26:30.712028+00 159 688 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:26:30.810659+00 159 689 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:26:30.873837+00 159 690 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:26:30.941268+00 159 691 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__1153x351_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:26:36.055402+00 159 692 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__200x60_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:28:30.556491+00 159 693 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__210x10000_q85_subsampling-2.jpg 2015-11-25 19:36:08.989245+00 159 694 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__48x48_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:48:23.58872+00 160 695 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__16x16_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:48:23.682303+00 160 696 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__32x32_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:48:23.732539+00 160 697 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__64x64_q85_crop_subsampling-2_upscale.jpg 2015-11-25 19:48:23.793337+00 160 698 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__210x10000_q85_subsampling-2.jpg 2015-11-25 19:48:31.548475+00 160 699 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:32:11.583774+00 161 700 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:32:11.706894+00 161 701 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:32:11.765691+00 161 702 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:32:11.823483+00 161 703 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:34:53.36862+00 162 704 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:34:53.499443+00 162 705 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:34:53.579675+00 162 706 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 13:34:53.640152+00 162 707 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:00:41.969662+00 163 708 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:00:42.053545+00 163 709 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:00:42.148765+00 163 710 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:00:42.205877+00 163 711 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__434x528_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:00:49.62432+00 163 712 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:02:31.22891+00 166 713 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:02:31.405986+00 166 714 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:02:31.48871+00 166 715 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:02:31.628006+00 166 716 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__679x411_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:02:37.088172+00 166 717 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:03:39.329931+00 167 718 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:03:39.642659+00 167 719 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:03:39.958905+00 167 720 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:03:40.374194+00 167 721 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:04:25.991927+00 168 722 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:04:26.100596+00 168 723 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:04:26.163309+00 168 724 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:04:26.21618+00 168 725 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__600x411_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:04:34.583775+00 168 726 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:14:36.839413+00 169 727 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:14:36.90907+00 169 728 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:14:36.975924+00 169 729 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:14:37.044731+00 169 730 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__736x491_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:14:42.535465+00 169 731 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:22:02.953555+00 170 732 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:22:03.031859+00 170 733 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:22:03.085572+00 170 734 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:22:03.151505+00 170 735 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__730x411_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:22:10.062415+00 170 736 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:30:36.849066+00 171 737 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:30:36.923825+00 171 738 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:30:36.981523+00 171 739 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:30:37.134069+00 171 740 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__730x411_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:30:41.990446+00 171 741 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:07.517729+00 172 742 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:07.607404+00 172 743 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:07.834612+00 172 744 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:07.905555+00 172 745 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__730x366_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:12.685231+00 172 813 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-08 10:32:22.553058+00 187 746 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:43.974268+00 173 747 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:44.027706+00 173 748 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:44.085796+00 173 749 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:44.135146+00 173 750 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__342x614_q85_crop_subsampling-2_upscale.jpg 2015-12-07 14:31:49.15792+00 173 751 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__342x614_q85_subsampling-2.jpg 2015-12-07 15:44:06.031582+00 173 752 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 15:54:30.290285+00 174 753 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 15:54:30.368766+00 174 754 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 15:54:30.433708+00 174 755 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 15:54:30.516485+00 174 756 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__736x491_q85_crop_subsampling-2_upscale.jpg 2015-12-07 15:54:35.203077+00 174 757 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2015-12-07 16:07:50.930949+00 176 758 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2015-12-07 16:07:51.027964+00 176 759 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2015-12-07 16:07:51.159967+00 176 760 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2015-12-07 16:07:51.246764+00 176 761 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__528x434_q85_crop_subsampling-2_upscale.jpg 2015-12-07 16:07:56.006764+00 176 762 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__640x120_q85_crop_subsampling-2.jpg 2015-12-07 16:29:46.644624+00 162 763 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__210x10000_q85_subsampling-2.jpg 2015-12-28 22:23:49.639605+00 47 764 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__210x10000_q85_subsampling-2.png 2016-01-06 13:48:37.583426+00 128 770 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-06 14:01:40.430782+00 178 771 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-06 14:01:40.502537+00 178 772 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-06 14:01:40.594577+00 178 773 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-06 14:01:40.688769+00 178 774 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__210x10000_q85_subsampling-2.jpg 2016-01-06 14:01:44.173116+00 178 775 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:32:43.745275+00 179 776 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:32:43.838887+00 179 777 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:32:43.896463+00 179 778 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:32:43.956915+00 179 779 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__210x10000_q85_subsampling-2.jpg 2016-01-06 16:32:47.81631+00 179 780 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:57:56.378899+00 181 781 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:57:56.44699+00 181 782 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:57:56.495966+00 181 783 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-06 16:57:56.546127+00 181 784 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__210x10000_q85_subsampling-2.jpg 2016-01-06 16:57:59.742329+00 181 790 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__48x48_q85_crop_subsampling-2_upscale.png 2016-01-06 17:33:27.239377+00 183 791 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__64x64_q85_crop_subsampling-2_upscale.png 2016-01-06 17:33:27.341967+00 183 792 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__32x32_q85_crop_subsampling-2_upscale.png 2016-01-06 17:33:27.409568+00 183 793 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__16x16_q85_crop_subsampling-2_upscale.png 2016-01-06 17:33:27.524761+00 183 794 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__210x10000_q85_subsampling-2.png 2016-01-06 17:33:32.723212+00 183 795 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__48x48_q85_crop_subsampling-2_upscale.png 2016-01-06 18:02:49.352679+00 184 796 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__64x64_q85_crop_subsampling-2_upscale.png 2016-01-06 18:02:49.441224+00 184 797 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__32x32_q85_crop_subsampling-2_upscale.png 2016-01-06 18:02:49.522567+00 184 798 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__16x16_q85_crop_subsampling-2_upscale.png 2016-01-06 18:02:49.603772+00 184 799 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__210x10000_q85_subsampling-2.png 2016-01-06 18:02:54.619466+00 184 800 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-06 18:06:27.757191+00 185 801 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-06 18:06:27.863519+00 185 802 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-06 18:06:27.946431+00 185 803 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-06 18:06:28.029194+00 185 804 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__210x10000_q85_subsampling-2.jpg 2016-01-06 18:06:31.315854+00 185 805 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__48x48_q85_crop_subsampling-2_upscale.png 2016-01-08 10:29:42.061088+00 186 806 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__64x64_q85_crop_subsampling-2_upscale.png 2016-01-08 10:29:42.258912+00 186 807 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__32x32_q85_crop_subsampling-2_upscale.png 2016-01-08 10:29:42.364043+00 186 808 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__16x16_q85_crop_subsampling-2_upscale.png 2016-01-08 10:29:42.464819+00 186 809 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__210x10000_q85_subsampling-2.png 2016-01-08 10:29:47.942943+00 186 810 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-08 10:32:22.314095+00 187 812 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-08 10:32:22.497508+00 187 814 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__210x10000_q85_subsampling-2.jpg 2016-01-08 10:32:26.000095+00 187 815 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__48x48_q85_crop_subsampling-2_upscale.png 2016-01-13 21:21:27.613617+00 188 816 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__64x64_q85_crop_subsampling-2_upscale.png 2016-01-13 21:21:27.733311+00 188 817 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__32x32_q85_crop_subsampling-2_upscale.png 2016-01-13 21:21:27.838071+00 188 818 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__16x16_q85_crop_subsampling-2_upscale.png 2016-01-13 21:21:27.944427+00 188 819 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__48x48_q85_crop_subsampling-2_upscale.png 2016-01-13 21:23:52.686477+00 189 820 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__64x64_q85_crop_subsampling-2_upscale.png 2016-01-13 21:23:52.800576+00 189 821 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__32x32_q85_crop_subsampling-2_upscale.png 2016-01-13 21:23:52.986475+00 189 822 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__16x16_q85_crop_subsampling-2_upscale.png 2016-01-13 21:23:53.092776+00 189 823 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png 2016-01-13 21:40:43.027088+00 186 824 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__632x346_q85_crop_subsampling-2_upscale.jpg 2016-01-13 21:43:10.885611+00 179 825 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__768x406_q85_crop_subsampling-2_upscale.png 2016-01-13 21:46:40.632187+00 183 826 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__768x421_q85_crop_subsampling-2_upscale.png 2016-01-13 21:47:00.877001+00 184 827 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-14 15:56:21.65715+00 190 828 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-14 15:56:21.833253+00 190 829 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-14 15:56:21.898566+00 190 830 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-14 15:56:21.956652+00 190 831 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__730x411_q85_crop_subsampling-2_upscale.jpg 2016-01-14 15:56:29.088858+00 190 832 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__590x300_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:05:52.602371+00 181 833 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__48x48_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:38:35.134041+00 191 834 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__64x64_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:38:35.187221+00 191 835 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__32x32_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:38:35.236621+00 191 836 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__16x16_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:38:35.311265+00 191 837 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__493x335_q85_crop_subsampling-2_upscale.jpg 2016-01-14 16:38:40.157595+00 191 838 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__210x10000_q85_subsampling-2.jpg 2016-01-15 15:32:11.989185+00 190 839 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__210x10000_q85_subsampling-2.jpg 2016-01-15 15:33:02.773744+00 191 840 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png 2016-01-15 15:38:29.360856+00 188 841 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__210x10000_q85_subsampling-2.png 2016-01-15 15:46:48.263936+00 189 842 f9bde26a1556cd667f742bd34ec7c55e filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__640x120_q85_crop_subsampling-2.png 2016-01-28 17:05:54.262143+00 189 \. -- -- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('easy_thumbnails_thumbnail_id_seq', 842, true); -- -- Data for Name: easy_thumbnails_thumbnaildimensions; Type: TABLE DATA; Schema: public; Owner: app -- COPY easy_thumbnails_thumbnaildimensions (id, thumbnail_id, width, height) FROM stdin; \. -- -- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('easy_thumbnails_thumbnaildimensions_id_seq', 1, false); -- -- Data for Name: filer_clipboard; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_clipboard (id, user_id) FROM stdin; 1 1 \. -- -- Name: filer_clipboard_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('filer_clipboard_id_seq', 1, true); -- -- Data for Name: filer_clipboarditem; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_clipboarditem (id, clipboard_id, file_id) FROM stdin; \. -- -- Name: filer_clipboarditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('filer_clipboarditem_id_seq', 192, true); -- -- Data for Name: filer_file; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_file (id, file, _file_size, sha1, has_all_mandatory_data, original_filename, name, description, uploaded_at, modified_at, is_public, folder_id, owner_id, polymorphic_ctype_id) FROM stdin; 7 filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png 13607 1421132c5c81f413fee6f0b4a1052ede907d36d0 f cdist.png \N 2015-06-14 02:53:59.732313+00 2015-06-14 02:53:59.732344+00 t \N 1 41 8 filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg 116194 8de95580b0443f51498f6752186baf1fd035e19a f barcelona_1.jpg \N 2015-06-14 02:54:01.900735+00 2015-06-14 02:54:01.900768+00 t \N 1 41 9 filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png 41002 d9309921e2948a4cb1a883cf6b3221a8050f2397 f opennebulaplusungleich.png \N 2015-06-14 02:54:02.095606+00 2015-06-14 02:54:02.095636+00 t \N 1 41 10 filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg 451277 d279f4d8ded8e53aba697f9fa1b24c960a3c4593 f 14473379828_84376f1229_h.jpg \N 2015-06-14 02:54:07.40675+00 2015-06-14 02:54:07.406781+00 t \N 1 41 84 filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg 1279216 5959a767d393085f39db2e6ebc8974ee4a15cfe0 f opennebulaconf_ungleich_barcelosants.jpg \N 2015-10-27 13:15:37.566586+00 2015-10-27 13:15:37.566617+00 t \N 1 41 11 filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png 13607 1421132c5c81f413fee6f0b4a1052ede907d36d0 f cdist.png \N 2015-06-14 03:10:43.757178+00 2015-06-14 03:10:54.32416+00 t 4 1 41 12 filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg 116194 8de95580b0443f51498f6752186baf1fd035e19a f barcelona_1.jpg \N 2015-06-14 03:10:45.825564+00 2015-06-14 03:10:54.397181+00 t 4 1 41 13 filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png 41002 d9309921e2948a4cb1a883cf6b3221a8050f2397 f opennebulaplusungleich.png \N 2015-06-14 03:10:46.426921+00 2015-06-14 03:10:54.438285+00 t 4 1 41 15 filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg 150546 ae848e2019c0f2a0a9484ecb23d6a849a6c4aa3d f 14473379828_84376f1229_h.jpg \N 2015-06-14 03:17:42.6697+00 2015-06-14 03:17:45.053143+00 t 4 1 41 16 filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png 448065 26845e9dd5c4b23f4fafe408ffff0f65acb0615a f 2015-06-13-220853_736x423_scrot.png \N 2015-06-14 04:43:00.30159+00 2015-06-14 04:43:03.513933+00 t 4 1 41 17 filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg 194160 5fcc2aed3e17bbfc207f8ff3ccd68182fe77525d f header-bg.jpg \N 2015-06-14 04:48:14.423315+00 2015-06-14 04:48:17.067798+00 t 6 1 41 18 filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg 164669 93c59e2645fdcbdd199c1da54b45cedc941f5cb0 f 16494988669_f4c6d00da4_b.jpg \N 2015-06-14 04:55:52.099926+00 2015-06-14 04:55:53.927318+00 t 7 1 41 21 filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png 65786 483033ff28f1627a269b91abbce6c7a920c25e38 f opennebulareferene.png \N 2015-06-14 21:27:31.078751+00 2015-06-14 21:27:32.672429+00 t 3 1 41 19 filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png 15947 d4580f70c49a22dce6534bb0051cfecb18e58b1f f opencloudday.png 2015-06-14 21:25:45.923609+00 2015-06-14 21:28:20.835789+00 t 3 1 41 20 filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg 170541 1d4797ae9f8f8d485d149ac2539a062e1d7e2e37 f magical-bern-switzerland.jpg 2015-06-14 21:27:15.461432+00 2015-06-15 20:11:52.857108+00 t 3 1 41 22 filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg 403313 98b2361cd39c4b67df007f7185a410ca7783f6ff f bernbanner.jpg \N 2015-06-15 20:24:05.161659+00 2015-06-15 20:24:07.530492+00 t 3 1 41 24 filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg 841973 733325ad687125847304a8478c62c2f13e43c11e f DSC_4958 copy.jpg-small.jpg \N 2015-06-16 21:16:22.841897+00 2015-06-16 21:16:25.541953+00 t 2 1 41 25 filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg 168401 210ec718736ce86b5e93882c12c2e63544a7de2a f DSC_4986.png-small.jpg \N 2015-06-16 21:17:26.357118+00 2015-06-16 21:17:28.473102+00 t 2 1 41 26 filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg 152539 f0fe53ee8adc145d902c2437673c677eefeb99e5 f DSC_5055.png-small.jpg \N 2015-06-16 21:18:17.264158+00 2015-06-16 21:18:19.560696+00 t 2 1 41 27 filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg 647922 9bfe441317db5db1d45a24734c9ebc641f4165d0 f DSC_5064.jpg-small.jpg \N 2015-06-16 21:19:06.235821+00 2015-06-16 21:19:08.193688+00 t 2 1 41 28 filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg 401587 1095bcff34d2c3ae89ca2d0b1d6b8e8a82ac526b f DSC_4967-small2.jpg \N 2015-06-16 21:21:05.074717+00 2015-06-16 21:21:06.960703+00 t 2 1 41 29 filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg 681091 916b30de4e4c5d375679d7e3a2b67cf59bbf2723 f born_1.jpg \N 2015-06-22 13:54:34.545928+00 2015-06-22 13:54:37.645561+00 t 9 1 41 30 filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg 632959 7ab7249eeeb6f4fdb15e9f322e1d18dca311aefb f born_2.jpg \N 2015-06-22 13:54:55.525878+00 2015-06-22 13:55:30.786995+00 t 9 1 41 31 filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg 932382 73d323d3e6bed64f970eaa18146497d6df6ef385 f born_3.jpg \N 2015-06-22 13:55:53.724322+00 2015-06-22 13:57:15.785345+00 t 9 1 41 32 filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg 291801 ee012845d35032c91f09b606386cf53bb2bdf9e3 f glarus-meetup.jpg \N 2015-07-20 19:14:58.755465+00 2015-07-20 19:15:02.937024+00 t 2 1 41 33 filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg 643106 b3c14eac4a44257a213f80faf9aab5901c9228d0 f rackfromtop.jpg \N 2015-07-26 22:38:02.08007+00 2015-07-26 22:38:04.487834+00 t 2 1 41 34 filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png 389263 3fa3ac239c75d7d1367ca1ffe81a12ec0ff7db31 f gems.png \N 2015-08-09 20:29:58.687711+00 2015-08-09 20:30:00.85177+00 t 2 1 41 35 filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png 213995 fd163d28b20771a4939c70a3f1446f1af4a9a05d f gems.png \N 2015-08-09 20:38:28.318442+00 2015-08-09 20:38:34.874025+00 t 2 1 41 36 filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png 446449 15fd04f8eba7cb3ef3e44cedb44d8b39a7c1fb78 f morejems.png \N 2015-08-09 20:38:30.432698+00 2015-08-09 20:38:35.378663+00 t 2 1 41 37 filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg 187939 f2988f988fcccef6f4cd5eee45e1d924929b039d f Computer-Geek.jpg \N 2015-08-09 20:42:58.136334+00 2015-08-09 20:43:00.201202+00 t 2 1 41 38 filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg 54665 ef02d1e1a6a64af94043a9fa4d4fb40f4eb38bfa f shooting-star.jpg \N 2015-08-09 20:45:49.275874+00 2015-08-09 20:45:51.769524+00 t 2 1 41 39 filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png 390442 447c5e7167afb85d712c59796e08b59c98b2c88d f digital_glurs.png \N 2015-08-14 23:07:38.463518+00 2015-08-14 23:07:40.7446+00 t 2 1 41 42 filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png 335985 1289609d93a7d663527955ece04b0fe49054006b f ungleich.png \N 2015-08-14 23:25:01.710782+00 2015-08-14 23:25:03.228474+00 t 2 1 41 43 filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png 56782 e3a7cc1889c7429b099e3dd8100f300568ef2c5f f puzzle.png \N 2015-08-14 23:28:26.513937+00 2015-08-14 23:28:27.793664+00 t 2 1 41 44 filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png 56782 e3a7cc1889c7429b099e3dd8100f300568ef2c5f f puzzle.png \N 2015-08-14 23:28:51.632102+00 2015-08-14 23:28:53.348065+00 t 2 1 41 45 filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png 193506 d88907a14af88ad1fced63bc75adbb8ae4fdf26c f dice.png \N 2015-08-14 23:31:50.970782+00 2015-08-14 23:31:52.361778+00 t 2 1 41 46 filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg 500277 c523ef80cac98cb979a3cee97597508f36e790f1 f steam-train-small.jpg 2015-08-24 22:12:51.482633+00 2015-08-28 15:50:19.962735+00 t 2 1 41 70 filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg 107988 fb70c7ed6f53997ad69a9b7c922565598be9efe6 f radio-mic-mike.jpg \N 2015-09-24 14:00:48.046031+00 2015-09-24 14:00:50.294663+00 t 1 1 41 47 filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png 458808 ed4fd013ad0629f639adba832f9906628b283e94 f glarus map.png \N 2015-08-28 16:09:51.142145+00 2015-08-28 16:09:52.522766+00 t 2 1 41 71 filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png 900204 6b2ebb0b443afd6106232411ad22b44b67d3ad5c f digitalglarus_interview_nicoschottelius_radio.png \N 2015-09-24 14:10:45.298573+00 2015-09-24 14:10:47.106791+00 t 1 1 41 48 filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg 176261 3670d3d6103b1ca89afc0014fe66187757de8993 f diesbach_01.jpg \N 2015-08-28 16:57:26.749286+00 2015-08-28 16:57:28.272252+00 t 2 1 41 72 filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png 18368 d3d322518f4a627e616815c97085156c75979bd8 f banner_100days_resized.png \N 2015-09-24 14:15:34.728449+00 2015-09-24 14:15:36.292759+00 t 1 1 41 73 filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png 1905641 e640d5ff58d03551bfe883734ebaab7957c94d30 f digitalglarus_whynotzurich.png \N 2015-09-24 15:09:48.330143+00 2015-09-24 15:09:51.745055+00 t 10 1 41 74 filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg 1413195 26fb4986bed213632ae0a221fba193ce82855458 f digitalglarus_glarus.jpg \N 2015-09-24 15:10:00.687515+00 2015-09-24 15:10:14.91902+00 t 10 1 41 50 filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg 185298 458b518bcc2e7b018aa9de6b7f4fd803b2157a13 f weneedyou.jpg \N 2015-08-28 22:26:38.708391+00 2015-08-28 22:26:40.2977+00 t 2 1 41 51 filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg 4080552 2059af73ef90aa6b5c25bf983589b265736aca58 f DSC_5397.jpg \N 2015-08-28 23:40:36.476107+00 2015-08-28 23:40:36.476135+00 t \N 1 41 52 filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png 727471 0725821f0cda1fd83de3fb2e15156e8793f84e44 f manifesto.png \N 2015-08-28 23:43:26.034004+00 2015-08-28 23:43:28.764691+00 t 2 1 41 75 filer_public/29/cf/29cf9568-7260-42be-b44f-208a0bc12d72/radio-central-digitalglarus-crowdfunding-2015-09-23.mp3 4258560 399f1f5f00597bd0512b5e9e62917911268f9276 f radio-central-digitalglarus-crowdfunding-2015-09-23.mp3 Radio Central - Digital Glarus - Crowdfunding 20150923 2015-09-24 15:31:39.06772+00 2015-09-24 15:34:03.419251+00 t 10 1 38 53 filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png 727765 ad0eb5b1b93d571401896bb0e490821381b15700 f glarus map.png \N 2015-08-29 13:39:31.72359+00 2015-08-29 13:39:33.913782+00 t 2 1 41 54 filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png 1667714 872eafc2659416b414c069200d4a5d5bf8e38e1c f Glarnerwoche2015_09_02_crop_small.png \N 2015-09-02 10:14:03.100997+00 2015-09-02 10:14:03.101033+00 t \N 1 41 55 filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png 493600 b1f080106245fe620446fbb28d189af62cb35c47 f Glarnerwoche2015_09_02_crop_small.png \N 2015-09-02 10:15:08.817177+00 2015-09-02 10:15:10.483781+00 t 2 1 41 77 filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg 294010 f372837bcbc5b457d33e58ef55a48e318de58276 f thumb_DSC00605_1024.jpg \N 2015-09-25 13:08:32.47249+00 2015-09-25 13:08:34.306842+00 t 1 1 41 56 filer_public/19/28/192891d9-6161-483c-9b52-c53c3c63cbbb/glarnerwoche-2015-09-02.pdf 403719 6d5f4dd167ad743240775a4c6531168c1c31caf7 f glarnerwoche-2015-09-02.pdf \N 2015-09-02 12:26:57.410665+00 2015-09-02 12:26:59.07031+00 t 2 1 38 78 filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg 3634629 38ff0728783b4d1382cf7b01bfe5ad10e1a858bf f digitalglarus_meeting_luchsingen.jpg \N 2015-09-25 13:11:37.501155+00 2015-09-25 13:11:40.734378+00 t 1 1 41 57 filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png 533207 9c363e708efcaabd427385744dfd48e76aad8c33 f glarussudfrontpage.png \N 2015-09-02 12:54:00.827796+00 2015-09-02 12:54:02.338717+00 t 2 1 41 79 filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png 2370805 cf5a696f34453a58f8a61fae8d3a70efd579dd13 f digitalglarus_meeting_prep.png \N 2015-09-25 13:25:44.173391+00 2015-09-25 13:25:46.302845+00 t 1 1 41 58 filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png 368213 565b0f5d8612d734ede4b84c46f7d34842f63e8d f newspaperboy.png \N 2015-09-02 13:46:00.949498+00 2015-09-02 13:46:02.547511+00 t 2 1 41 80 filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png 2334152 626920dcff1864cb038eabf42c5d9b0dce4f9e01 f digitalglarus_meeting_luchsingen_nicoshottelius.png \N 2015-09-25 13:29:31.504695+00 2015-09-25 13:29:33.954213+00 t 1 1 41 81 filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png 2981386 86913987caeb903832020d2fe90ae84609f0395a f digitalglarus_meeting.png \N 2015-09-25 14:06:33.96413+00 2015-09-25 14:06:46.631567+00 t 1 1 41 82 filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png 2391540 c193629ca8402139753fb8d4fb54ebf50b8d5b53 f digitalglarus_meeting_luchsingen_nicoshottelius_.png \N 2015-09-25 14:25:34.145557+00 2015-09-25 14:25:36.251826+00 t 1 1 41 60 filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg 516806 4c6936b5173cd61edfb3424d6dd6ad821664af48 f connectivity.jpg \N 2015-09-02 13:56:01.172606+00 2015-09-02 13:56:02.362662+00 t 2 1 41 83 filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg 1058168 44f59598a11a0d71b8545ced79da5e2938876fb9 f opennebulaconf_nicoschottelius_speech_cdist.jpg \N 2015-10-27 12:44:05.615644+00 2015-10-27 12:44:22.932406+00 t 1 1 41 61 filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png 13607 1421132c5c81f413fee6f0b4a1052ede907d36d0 f cdist.png \N 2015-09-02 13:57:36.512705+00 2015-09-02 13:57:38.476075+00 t 2 1 41 62 filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png 283035 9fc78a85524f3243a371d751cc8988075b2d1c03 f newspaper.png 2015-09-17 19:17:53.545241+00 2015-09-17 19:30:18.483346+00 t 1 1 41 85 filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg 1003229 166c54396d0c0755a0a428e12c73256ae77425ee f opennebulaconf_ungleich_barcelosants.jpg \N 2015-10-27 13:16:16.707021+00 2015-10-27 13:16:18.135843+00 t 1 1 41 100 filer_public/6a/90/6a90c3c6-2553-449c-bb2b-ae29e9e1c233/ungleich_logo.svg 6784 c8caca44549684e2b9cc4ff93e819c89e906599b f ungleich_logo.svg logo-black ungleich logo in black.\r\nvector file. 2015-11-03 10:12:48.336129+00 2015-11-03 10:13:55.780952+00 t 13 1 38 147 filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png 9038 246dae8d02f90c3edb42597bb6afac754c7ccdf1 f logo_white copy.png \N 2015-11-09 18:20:12.770214+00 2015-11-09 18:20:14.265402+00 t 1 1 41 67 filer_public/45/89/4589a5e7-6df8-4dde-885c-0033ef7e80ba/breakfast_coffee 853032 48c08940a0b5eb23d21eca80f57bd4e0c9694c95 f breakfast_coffee \N 2015-09-17 19:46:16.481097+00 2015-09-17 19:46:16.481125+00 t \N 1 38 68 filer_public/86/d1/86d18426-6967-4877-bf73-683fbb4273b7/breakfast_coffee 853032 48c08940a0b5eb23d21eca80f57bd4e0c9694c95 f breakfast_coffee \N 2015-09-17 19:47:05.946457+00 2015-09-17 19:47:05.946486+00 t \N 1 38 69 filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png 853100 ceabbccfdcef44a75756ddf8458ec76f28125e53 f breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png \N 2015-09-17 19:47:55.243148+00 2015-09-17 19:47:57.244413+00 t 1 1 41 86 filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg 1340766 322a142537de2f8cfbbc41420baf6ffd9f974743 f OpenNebulaConf2015_barcelonsants.jpg \N 2015-10-27 13:20:15.955123+00 2015-10-27 13:20:17.544293+00 t 1 1 41 134 filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg 3261916 a396c77b1fd47d3319d5ec5d3acd1b4cfc278959 f newspaper_background.jpg \N 2015-11-09 16:17:49.332527+00 2015-11-09 16:17:55.902332+00 t 1 1 41 87 filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg 1235047 d29fd16e3bf0188b174bcaff35c102952307c495 f opennebulaconf_ungleich_entrance.jpg \N 2015-10-27 13:24:49.436563+00 2015-10-27 13:24:52.145771+00 t 1 1 41 88 filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg 1195925 ab7f5b00e0984c00c787f5328e3b8e522a5fd5ef f opennebulaconf_ungleich.jpg \N 2015-10-27 13:24:50.66817+00 2015-10-27 13:24:52.236215+00 t 1 1 41 136 filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg 2088477 8708da5185328b9251c25f8999d350231da16311 f digitalglarus_coworkers_nico_chalet.jpg \N 2015-11-09 16:29:29.797665+00 2015-11-09 16:29:31.469174+00 t 1 1 41 89 filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg 1449261 b8b92fd424821db18d5cbe75963a428de457e4d4 f opennebulaconf_ungleich_team_booth.jpg \N 2015-10-27 13:34:51.013816+00 2015-10-27 13:34:56.353334+00 t 1 1 41 90 filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg 1233615 caa6e3240456b7ae598397a594df55cc9b265b26 f opennebulaconf_ungleich_booth.jpg \N 2015-10-27 13:35:10.932371+00 2015-10-27 13:35:12.394748+00 t 1 1 41 138 filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg 803640 ef3d53eaa98040511cc7dcb16d7724bec606dc1a f digitalglarus_vision_background_nico.jpg \N 2015-11-09 17:57:36.903065+00 2015-11-09 17:57:38.744337+00 t 1 1 41 91 filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg 1118583 471dcfe227c1706851b8e203fb8c3e22a6dcfef7 f build_opennebula_cdist_banner.jpg \N 2015-10-27 13:41:12.180387+00 2015-10-27 13:41:13.88315+00 t 1 1 41 140 filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg 1627574 c0c192609880c616454b0bdfae87e09ef03eb8df f mountain.JPG \N 2015-11-09 18:03:18.920942+00 2015-11-09 18:03:24.132121+00 t 1 1 41 92 filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg 1294215 ede0b179c51059652294c19e7c30340cdd308e84 f opennebulaconf_talk_nicoschottelius.jpg \N 2015-10-27 14:11:12.63688+00 2015-10-27 14:11:14.352606+00 t 1 1 41 142 filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png 11822 96dde3104d4369a0e6fbf93858082777072de8d6 f ungleich logo.png \N 2015-11-09 18:07:01.555641+00 2015-11-09 18:07:03.982535+00 t 1 1 41 93 filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg 964075 221d8d3da22b8b1dd5d68e946027d111088ea860 f opennebula_cdist_ungleich_nicoschottelius.jpg \N 2015-10-27 14:11:26.528054+00 2015-10-27 14:11:28.186496+00 t 1 1 41 94 filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg 1339396 697d1f39704900bd5062fad941225bc7d92aa981 f opennebulaconf_2015_ungleich_.jpg \N 2015-10-27 14:11:43.116666+00 2015-10-27 14:11:44.96303+00 t 1 1 41 95 filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg 1040545 b2f836ac135ec03b1e44455af385aedfb0444a19 f opennebulaconf_ungleich_2015_nico.jpg \N 2015-10-27 14:12:12.763745+00 2015-10-27 14:12:14.570505+00 t 1 1 41 146 filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg 554311 b23cb180d649a0cb9f4a518be17f17dc2f910587 f pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg \N 2015-11-09 18:18:27.950826+00 2015-11-09 18:18:29.293367+00 t 1 1 41 96 filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg 1321994 abf5549e912a8118d7696d00c968898bfcebe780 f opennebulaconf_tapas_night_ungleich.jpg \N 2015-10-27 14:20:23.563786+00 2015-10-27 14:20:24.925744+00 t 1 1 41 97 filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg 1096247 3f810b819dd7b8a7b076b70ba7f3b857158e7502 f opennebula_conf_2015_ungleich.jpg \N 2015-10-27 14:26:35.115125+00 2015-10-27 14:26:36.61502+00 t 1 1 41 148 filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg 366659 4d03d0382191b81e873f6ca762a10b4b4ab4f7fa f digitalglarus_opennebula_workshop_bw_.jpg \N 2015-11-09 18:57:25.835212+00 2015-11-09 18:57:26.96204+00 t 1 1 41 98 filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg 2566065 f129e17091ea53abce4024b966911ac8d0be6b0c f opennebula_barcelona_beach.jpg \N 2015-10-27 14:41:18.084793+00 2015-10-27 14:41:19.925988+00 t 1 1 41 99 filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg 2624469 398f6c5f689746deb24fea2b4881965ea91ac3d2 f opennebula_collage_ungleich_barcelona.jpg \N 2015-10-27 16:25:59.069866+00 2015-10-27 16:26:01.170181+00 t 1 1 41 149 filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg 121621 7d5127c0abfceb1b62ca5fe6a27f31cf9fe2393f f wissen.jpg 2015-11-13 23:28:49.038909+00 2015-11-13 23:31:05.877317+00 t 1 1 41 151 filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg 827849 09db2e4b63e8395a709fc347df4ad2188b497861 f newspaper.jpg \N 2015-11-15 14:51:50.237625+00 2015-11-15 14:51:51.598211+00 t 1 1 41 152 filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg 1150960 448f2da207f9f976fc43a34bd70fcd499daad3fc f newspaper.jpg \N 2015-11-15 14:54:26.371783+00 2015-11-15 14:54:27.827966+00 t 1 1 41 153 filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png 1627521 acb0bffb1bf812e6c9abecd1c172e3dea208fedd f newspaper.png \N 2015-11-15 14:56:38.730397+00 2015-11-15 14:56:40.176414+00 t 1 1 41 154 filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png 105925 c1dcc0763aa5060d50eb6c7b38cbf08bb690b92a f jazz_background.png \N 2015-11-19 20:53:01.81851+00 2015-11-19 20:53:06.025715+00 t 1 1 41 155 filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png 107132 68a09d401dc56ebcd21da7d19ac55a06fde31450 f blog_digitalglarus_concert_jazz.png \N 2015-11-25 06:54:10.958837+00 2015-11-25 06:54:22.368731+00 t 15 1 41 156 filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg 257594 413af09fea9eb926cd8854e72339aa2a53ad503f f fivepasteight_band.jpg \N 2015-11-25 19:26:30.459343+00 2015-11-25 19:26:32.070551+00 t 1 1 41 157 filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png 17455 06cbb2c6fda69bd8c3c5892ea194c96722741d6e f banner_100days_1062x274.png \N 2015-11-25 19:48:23.376895+00 2015-11-25 19:48:25.354758+00 t 1 1 41 158 filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg 200672 4a950ea06ecc22f265bf7a58332cd043f19bdea7 f digitalglarus_jazz_concert_band_audience.jpg \N 2015-12-07 13:32:10.751425+00 2015-12-07 13:32:13.987152+00 t 1 1 41 159 filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg 341873 852c244c999db356d93b36255277397a3d5490c1 f digitalglarus_jazz_concert_theband.jpg \N 2015-12-07 13:34:53.167444+00 2015-12-07 13:34:54.919582+00 t 1 1 41 160 filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg 268019 633d2585d5d970e6dd73b1ac3cdb87d60daec742 f digitalglarus_jazz_concert_flyers.jpg \N 2015-12-07 14:00:41.629306+00 2015-12-07 14:00:43.481295+00 t 1 1 41 101 filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png 3190 8ae98e1566b35740889fa86c6a5f165040c4443f t ungleich_logo_black.png ungleich-logo-black-png ungleich black logo.\r\npng file. 2015-11-03 10:15:21.772584+00 2015-11-03 10:16:11.955146+00 t 13 1 41 102 filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png 447 5bf78212fb5080843658b5ec8f8cce0924596372 t g3477.png ungleich-symbol-black-small ungleich small symbol on black 2015-11-03 10:17:17.655208+00 2015-11-03 10:18:00.622742+00 t 13 1 41 135 filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg 11131129 9003b435947c7cd46612aeada2128cf6fc548427 f digitalglarus_digitalchalet_coworkers_nico.jpg \N 2015-11-09 16:19:50.078495+00 2015-11-09 16:26:06.842777+00 t 1 1 41 103 filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png 200071 105a4c72a3867d8cadf1886e76dabbc23d3e6ce8 t jazz_party.png digitalglarus-banner-jazz-concert 2015-11-03 10:26:09.592195+00 2015-11-03 10:32:00.131349+00 t 15 1 41 104 filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png 26754 17e1c634a4b77591a45b4dd6e9dc8e6a186560ee t grand_opening.png digitalglarus-banner-opening 2015-11-03 10:28:52.751158+00 2015-11-03 10:46:50.56515+00 t 15 1 41 137 filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg 506575 c619d107fc9163be59d9163de479ba123be413c3 f digitalglarus_digitalchalet_schwanden_interior_small.jpg \N 2015-11-09 17:54:47.939458+00 2015-11-09 17:54:50.208981+00 t 1 1 41 105 filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg 794075 c4be1704163e12f9182cd9c5aca15db40cff758c t digitalglarus_digitalchalet_schwanden_ungleich.jpg digital-glarus-first-chalet-exterior 2015-11-03 10:58:18.370077+00 2015-11-03 10:58:55.678595+00 t 16 1 41 106 filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg 515192 e87e6c6de172273a444f42bd3c1d7f2e540dddae t newspaper-digitalglarus-diesudo.jpg newspaper-13092015-dontknowthename 2015-11-03 11:05:47.579175+00 2015-11-03 11:06:49.462199+00 t 17 1 41 139 filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg 1780521 f18215301c230006f125013fcdd7bcc1fccf47f9 f digitalglarus_scenery.jpg \N 2015-11-09 17:58:35.339915+00 2015-11-09 17:58:36.784249+00 t 1 1 41 141 filer_public/62/91/6291774f-e59c-44cf-8880-704ea08c7a28/ungleich_logo.svg 6784 c8caca44549684e2b9cc4ff93e819c89e906599b f ungleich_logo.svg \N 2015-11-09 18:06:14.508235+00 2015-11-09 18:06:15.783909+00 t 1 1 38 108 filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg 803640 ef3d53eaa98040511cc7dcb16d7724bec606dc1a f digitalglarus_vision_background_nico.jpg \N 2015-11-03 11:14:03.662848+00 2015-11-03 11:14:19.967043+00 t 1 1 41 145 filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png 5659 cc78344cbb0ac932410f4e51435c0d16b69f6cec f logo_white.png \N 2015-11-09 18:16:52.082666+00 2015-11-09 18:16:55.088552+00 t 1 1 41 113 filer_public/40/0d/400d5643-2d94-4fb2-a991-8b08c96b8a0a/digitalglarus_scenery_jpg 1340055 9a93b869236da8094161e949da2d280f11c0da0e f digitalglarus_scenery_jpg \N 2015-11-03 13:45:08.56538+00 2015-11-03 13:45:09.694233+00 t 1 1 38 115 filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png 843808 d035b8d446eb41819da50ec5ff97b317a5f607ca f fondue.png \N 2015-11-03 18:15:41.888683+00 2015-11-03 18:15:43.654339+00 t 1 1 41 116 filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg 518461 139ed375c211a05b8840505eb9886b6639491735 f digitalglarus_opennebula_workshop_nico_back.jpg \N 2015-11-08 20:38:27.148687+00 2015-11-08 20:39:13.128533+00 t 1 1 41 117 filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png 2879204 010a0d132ff93b075c0d2d39e32eb51f90c39512 f digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png \N 2015-11-08 20:41:47.563059+00 2015-11-08 20:41:49.922385+00 t 1 1 41 118 filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg 424523 ea9ce8df090ea42d27157db78b658f540ffddd4b f glarus_autumn copy.jpg \N 2015-11-08 21:08:59.962374+00 2015-11-08 21:09:01.232524+00 t 1 1 41 119 filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png 2879204 010a0d132ff93b075c0d2d39e32eb51f90c39512 f digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png \N 2015-11-08 21:45:05.376201+00 2015-11-08 21:45:07.554976+00 t 1 1 41 120 filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png 2525246 8fbacbdc3b0b799b5589cdc24d7ebb3f616a7a72 f digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png \N 2015-11-08 21:45:54.187266+00 2015-11-08 21:45:58.671515+00 t 1 1 41 121 filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg 625533 5cd19273614380568be51458c0642d83adbb4aa6 f digitalglarus_opennebula_workshop_nico_.jpg \N 2015-11-08 21:46:50.130335+00 2015-11-08 21:46:51.570154+00 t 1 1 41 162 filer_public/28/00/28007b1f-af48-4a29-9684-79c2dcd4b041/digitalglarus_jazz_concert_coupons 310699 fd9df2a7c96d7c128eba64f381c4fd4b582e0d2a f digitalglarus_jazz_concert_coupons \N 2015-12-07 14:01:57.700865+00 2015-12-07 14:01:57.700898+00 t \N 1 38 122 filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg 625533 5cd19273614380568be51458c0642d83adbb4aa6 f digitalglarus_opennebula_workshop_nico_.jpg \N 2015-11-08 21:47:50.386976+00 2015-11-08 21:48:04.032112+00 t 1 1 41 123 filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg 914306 53104d29059809ac8407c7cc3526a6474b107cae f digitalglarus_opennebula_workshop_nico_schwanden_.jpg \N 2015-11-08 21:49:57.410576+00 2015-11-08 21:50:00.913553+00 t 1 1 41 124 filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg 914306 53104d29059809ac8407c7cc3526a6474b107cae f digitalglarus_opennebula_workshop_nico_schwanden_.jpg \N 2015-11-08 22:30:09.372896+00 2015-11-08 22:30:11.540818+00 t 1 1 41 125 filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png 37731 bfcc4054b5c5aa0346602afbfd942de68ff1c1a2 f a1_poster_jazz_digitalglarus_half.png \N 2015-11-09 15:57:03.810017+00 2015-11-09 15:57:06.05442+00 t 1 1 41 126 filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png 93675 c20a39f1db04cb9f00e21f29cbfd2db38c711b06 f a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png \N 2015-11-09 15:57:56.109691+00 2015-11-09 15:57:58.420471+00 t 1 1 41 127 filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg 3306459 55bc506f8f955b7f473addd61f98a10653a89c1a f digitalglarus_openingparty_digitalchalet_schwanden.jpg \N 2015-11-09 15:59:30.577157+00 2015-11-09 15:59:33.249147+00 t 1 1 41 128 filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg 2191896 00c7b064e2c3f0be07de71a76e97d1e5d499f7d2 f crowdfunding_background.jpg \N 2015-11-09 16:01:17.752451+00 2015-11-09 16:01:20.57875+00 t 1 1 41 129 filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg 132031 5522a35baee2177dfa9671daf07293a801a0eadd f crowdfunding_20reached_background.jpg \N 2015-11-09 16:04:59.557024+00 2015-11-09 16:05:01.04099+00 t 1 1 41 131 filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png 1674327 9ff5986a80daa2c291b44f9b854bdc1a82ebacbe f digitalglarus_tv_nico_suedostschweiz copy.png \N 2015-11-09 16:08:01.763558+00 2015-11-09 16:10:07.953274+00 t 1 1 41 163 filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg 318233 fa79ff786fdb198462b9da0659d9261b952c32bf f digitalglarus_jazz_concert_coupons.jpg \N 2015-12-07 14:02:30.82595+00 2015-12-07 14:02:32.401207+00 t 1 1 41 164 filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg 3558293 2fc3a1d9954464d570825d0c161f7a61b6abe463 f digitalglarus_jazz_concert_program.jpg \N 2015-12-07 14:03:38.75209+00 2015-12-07 14:03:38.752133+00 t \N 1 41 165 filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg 271742 e2c5a237e49a2ba9b995ff192007ba3d7cef4017 f digitalglarus_jazz_concert_program.jpg \N 2015-12-07 14:04:25.723805+00 2015-12-07 14:04:27.0177+00 t 1 1 41 166 filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg 393603 f785bba7d671537ed4dd6bab6527a9a3e6e20bcc f digitalglarus_jazz_concert_band_rehearsal.jpg \N 2015-12-07 14:14:36.62346+00 2015-12-07 14:14:38.381338+00 t 1 1 41 167 filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg 289667 147fd86606131f5d130791873e3dd3d7cc29bdcd f digitalglarus_jazz_concert_audiene_schwanden.jpg \N 2015-12-07 14:22:02.709456+00 2015-12-07 14:22:04.925859+00 t 1 1 41 168 filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg 304420 56bb7b7ff52a0ddf34170d10d17d4dfa9a7174b7 f digitalglarus_jazz_concert_audience_room.jpg \N 2015-12-07 14:30:36.695874+00 2015-12-07 14:30:38.12575+00 t 1 1 41 169 filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg 210284 ba11579470eb6f866b802e932055a5cba35454d6 f digitalglarus_jazz_concert_band_brass.jpg \N 2015-12-07 14:31:07.152124+00 2015-12-07 14:31:09.434282+00 t 1 1 41 170 filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg 141961 528d4b7373f83e02cacd2daced8f6d569381fd2c f digitalglarus_jazz_concert_fullhouse.jpg \N 2015-12-07 14:31:43.784768+00 2015-12-07 14:31:45.295355+00 t 1 1 41 171 filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg 335565 2348ab89727bbe0dcc52608b63b317f58146bd74 f digitalglarus_jazz_concert_donation.jpg \N 2015-12-07 15:54:30.094564+00 2015-12-07 15:54:31.413176+00 t 1 1 41 173 filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg 275327 a3a54388140eedec8b1cb74c8000486775c9a0f4 f digitalglarus_jazz_concert_flyers.jpg \N 2015-12-07 16:07:50.78093+00 2015-12-07 16:07:52.236825+00 t 1 1 41 175 filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg 59783 3509455e28f7c35f6f3624be4d9fd12a1d082cb3 f gold_pack_preview_image.jpg \N 2016-01-06 14:01:40.218995+00 2016-01-06 14:01:41.548974+00 t 1 1 41 182 filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg 115307 97519ff54570705a16ba7188e2c24a054a5d7ba6 f top-50-2012.jpg \N 2016-01-06 18:06:27.340842+00 2016-01-06 18:06:28.854939+00 t 1 1 41 184 filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg 275033 33be22d9bc88f757922a907a9e756069e566d4da f Confetti.jpg \N 2016-01-08 10:32:22.118568+00 2016-01-08 10:32:23.299081+00 t 1 1 41 185 filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png 570764 32ae64f6f08041a87b3032ae11b4fc61a9afc14b f twitter_header_thankyou_confetti.png \N 2016-01-13 21:21:26.825489+00 2016-01-13 21:21:29.61522+00 t 1 1 41 176 filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg 287081 69c740349cb86fff88953e30ae7ed6df9498ad45 f nico_schottelius_frontpage_newspaper_2016_01_06_.jpg 2016-01-06 16:32:43.505079+00 2016-01-15 15:31:32.265617+00 t 1 1 41 180 filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png 328878 8dd654c2ad95c08f6f37734ae7a870c6585d5386 f nico_schottelius_tv_2016-01-06_.png 2016-01-06 17:33:27.030164+00 2016-01-15 15:31:54.199636+00 t 1 1 41 181 filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png 356749 536e01c0c3df05072a23887b7cf90a657be2b0fb f nico_schottelius_tv_interview_2016-01-06_.png 2016-01-06 18:02:49.031364+00 2016-01-15 15:32:02.297211+00 t 1 1 41 183 filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png 570764 32ae64f6f08041a87b3032ae11b4fc61a9afc14b f twitter_header_thankyou_confetti.png 2016-01-08 10:29:41.810532+00 2016-01-15 15:32:52.742688+00 t 1 1 41 188 filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png 242962 29807ac376019394eafc0ab0ce20448f84c2975d f too-many-emails.png 2016-01-14 16:38:34.959758+00 2016-01-15 15:33:04.485442+00 t 1 1 41 178 filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg 146471 be4b324bc7d1866584d3fc8fd4932a1d7176b0a0 f 20000.jpg 2016-01-06 16:57:55.893398+00 2016-01-15 15:35:17.030217+00 t 1 1 41 187 filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg 297709 731e5a030ead2041637f28efce2d2dae3bb7a893 f snow_luchsingen_small.jpg 2016-01-14 15:56:21.23522+00 2016-01-15 15:37:55.260209+00 t 1 1 41 186 filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png 518808 441c4f74b112b289c6e0e592823f994f261d760d f twitter_header_thankyou_confetti_dark.png 2016-01-13 21:23:52.452915+00 2016-01-15 15:46:51.460603+00 t 1 1 41 \. -- -- Name: filer_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('filer_file_id_seq', 188, true); -- -- Data for Name: filer_folder; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_folder (id, name, uploaded_at, created_at, modified_at, lft, rght, tree_id, level, owner_id, parent_id) FROM stdin; 4 13062015_Conf2015 2015-06-13 17:44:50.116189+00 2015-06-13 17:44:50.116239+00 2015-06-13 17:44:50.116262+00 4 5 1 3 1 3 5 ungleich_pages 2015-06-14 04:47:41.720159+00 2015-06-14 04:47:41.720207+00 2015-06-14 04:47:41.720231+00 1 4 2 0 1 \N 6 blog_page 2015-06-14 04:47:55.541517+00 2015-06-14 04:47:55.541567+00 2015-06-14 04:47:55.54159+00 2 3 2 1 1 5 7 ungleich_blog_launched 2015-06-14 04:55:41.136704+00 2015-06-14 04:55:41.136754+00 2015-06-14 04:55:41.136778+00 6 7 1 3 1 3 8 openclouddaybern2015 2015-06-16 21:21:25.670405+00 2015-06-16 21:21:25.670455+00 2015-06-16 21:21:25.670477+00 11 12 1 2 1 2 3 img 2015-06-13 17:44:24.018499+00 2015-06-13 17:44:24.018549+00 2015-06-14 03:10:32.32511+00 3 10 1 2 1 2 9 born_bbq_2015_06_18 2015-06-22 13:39:41.706736+00 2015-06-22 13:39:41.706787+00 2015-06-22 13:39:41.70681+00 8 9 1 3 1 3 1 ungleich_blog 2015-06-12 21:10:27.076932+00 2015-06-12 21:10:27.076969+00 2015-06-12 21:10:27.07699+00 1 16 1 0 1 \N 2 articles 2015-06-13 17:44:13.866219+00 2015-06-13 17:44:13.866266+00 2015-06-14 02:53:32.802057+00 2 15 1 1 1 1 10 digitalglarus 2015-09-24 15:09:29.161924+00 2015-09-24 15:09:29.16197+00 2015-09-24 15:09:29.161991+00 13 14 1 2 1 2 12 ungleich 2015-11-03 10:12:19.54929+00 2015-11-03 10:12:19.549334+00 2015-11-03 10:12:19.549355+00 2 5 3 1 1 11 13 logo 2015-11-03 10:12:29.099472+00 2015-11-03 10:12:29.099519+00 2015-11-03 10:12:29.099541+00 3 4 3 2 1 12 15 banners 2015-11-03 10:25:53.247917+00 2015-11-03 10:25:53.247962+00 2015-11-03 10:25:53.247984+00 7 8 3 2 1 14 16 first_chalet 2015-11-03 10:56:20.372221+00 2015-11-03 10:56:20.372296+00 2015-11-03 10:56:20.372322+00 9 10 3 2 1 14 14 digitalglarus 2015-11-03 10:25:38.736617+00 2015-11-03 10:25:38.736665+00 2015-11-03 10:25:38.736686+00 6 13 3 1 1 11 11 image_repo 2015-11-03 10:00:13.785617+00 2015-11-03 10:00:13.785664+00 2015-11-03 10:00:13.785686+00 1 14 3 0 1 \N 17 press 2015-11-03 11:05:29.249246+00 2015-11-03 11:05:29.249294+00 2015-11-03 11:05:29.249316+00 11 12 3 2 1 14 \. -- -- Name: filer_folder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('filer_folder_id_seq', 17, true); -- -- Data for Name: filer_folderpermission; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_folderpermission (id, type, everybody, can_edit, can_read, can_add_children, folder_id, group_id, user_id) FROM stdin; \. -- -- Name: filer_folderpermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('filer_folderpermission_id_seq', 1, false); -- -- Data for Name: filer_image; Type: TABLE DATA; Schema: public; Owner: app -- COPY filer_image (file_ptr_id, _height, _width, date_taken, default_alt_text, default_caption, author, must_always_publish_author_credit, must_always_publish_copyright, subject_location) FROM stdin; 53 886 1791 2015-08-29 13:39:31.707846+00 \N \N \N f f \N 54 1584 2022 2015-09-02 10:14:03.066772+00 \N \N \N f f \N 55 792 1011 2015-09-02 10:15:08.809174+00 \N \N \N f f \N 57 857 1272 2015-09-02 12:54:00.819294+00 \N \N \N f f \N 7 159 800 2015-06-14 02:53:59.722929+00 \N \N \N f f \N 8 514 935 2015-06-14 02:54:01.896409+00 \N \N \N f f \N 9 159 800 2015-06-14 02:54:02.09203+00 \N \N \N f f \N 10 1067 1600 2015-06-14 02:54:07.401576+00 \N \N \N f f \N 11 159 800 2015-06-14 03:10:43.712913+00 \N \N \N f f \N 12 514 935 2015-06-14 03:10:45.821758+00 \N \N \N f f \N 13 159 800 2015-06-14 03:10:46.423519+00 \N \N \N f f \N 15 1067 1600 2015-06-14 03:17:42.660506+00 \N \N \N f f \N 16 423 736 2015-06-14 04:43:00.088274+00 \N \N \N f f \N 17 1250 1900 2015-06-14 04:48:14.418306+00 \N \N \N f f \N 18 683 1024 2015-06-14 04:55:52.095523+00 \N \N \N f f \N 58 704 1058 2015-09-02 13:46:00.943723+00 \N \N \N f f \N 60 768 1280 2015-09-02 13:56:01.166783+00 \N \N \N f f \N 21 288 800 2015-06-14 21:27:31.074765+00 \N \N \N f f \N 19 252 800 2015-06-14 21:25:45.91285+00 f f 61 159 800 2015-09-02 13:57:36.509738+00 \N \N \N f f \N 20 641 960 2015-06-14 21:27:15.456539+00 f f 22 389 690 2015-06-15 20:24:05.15334+00 \N \N \N f f \N 92 992 1806 2015-10-27 14:11:12.628143+00 \N \N \N f f \N 24 944 1333 2015-06-16 21:16:22.831995+00 \N \N \N f f \N 25 963 1323 2015-06-16 21:17:26.352781+00 \N \N \N f f \N 26 741 1419 2015-06-16 21:18:17.259021+00 \N \N \N f f \N 27 805 1074 2015-06-16 21:19:06.228144+00 \N \N \N f f \N 28 868 1300 2015-06-16 21:21:05.068513+00 \N \N \N f f \N 29 900 1200 2015-06-22 13:54:34.466453+00 \N \N \N f f \N 30 900 1200 2015-06-22 13:54:55.519425+00 \N \N \N f f \N 31 914 1200 2015-06-22 13:55:53.715811+00 \N \N \N f f \N 32 801 1200 2015-07-20 19:14:58.380045+00 \N \N \N f f \N 33 1667 2500 2015-07-26 22:38:01.84918+00 \N \N \N f f \N 34 900 1800 2015-08-09 20:29:58.534639+00 \N \N \N f f \N 35 389 690 2015-08-09 20:38:28.182383+00 \N \N \N f f \N 36 356 690 2015-08-09 20:38:30.426884+00 \N \N \N f f \N 37 333 500 2015-08-09 20:42:58.033279+00 \N \N \N f f \N 38 680 950 2015-08-09 20:45:48.988876+00 \N \N \N f f \N 39 711 1280 2015-08-14 23:07:37.837454+00 \N \N \N f f \N 62 1320 859 2015-09-17 19:17:53.332834+00 f f 42 602 1280 2015-08-14 23:25:01.705929+00 \N \N \N f f \N 43 389 690 2015-08-14 23:28:26.464093+00 \N \N \N f f \N 44 389 690 2015-08-14 23:28:51.628373+00 \N \N \N f f \N 45 740 1200 2015-08-14 23:31:50.913374+00 \N \N \N f f \N 46 1276 1920 2015-08-24 22:12:51.387795+00 f f 47 443 896 2015-08-28 16:09:51.13417+00 \N \N \N f f \N 48 531 800 2015-08-28 16:57:26.744572+00 \N \N \N f f \N 50 429 600 2015-08-28 22:26:38.702198+00 \N \N \N f f \N 51 4912 7360 2015-08-28 23:40:36.456292+00 \N \N \N f f \N 52 1131 2000 2015-08-28 23:43:26.025348+00 \N \N \N f f \N 93 1028 1824 2015-10-27 14:11:26.520313+00 \N \N \N f f \N 69 1080 1920 2015-09-17 19:47:55.236613+00 \N \N \N f f \N 70 389 663 2015-09-24 14:00:47.579698+00 \N \N \N f f \N 71 1482 2204 2015-09-24 14:10:45.289206+00 \N \N \N f f \N 72 274 1062 2015-09-24 14:15:34.653944+00 \N \N \N f f \N 73 603 1327 2015-09-24 15:09:48.31731+00 \N \N \N f f \N 74 844 1600 2015-09-24 15:10:00.678959+00 \N \N \N f f \N 77 665 1180 2015-09-25 13:08:32.466259+00 \N \N \N f f \N 78 2056 3456 2015-09-25 13:11:37.480992+00 \N \N \N f f \N 79 2056 3648 2015-09-25 13:25:44.150577+00 \N \N \N f f \N 80 2056 3648 2015-09-25 13:29:31.488823+00 \N \N \N f f \N 81 3059 3256 2015-09-25 14:06:33.936216+00 \N \N \N f f \N 82 2056 3648 2015-09-25 14:25:34.112527+00 \N \N \N f f \N 83 992 1806 2015-10-27 12:44:05.164732+00 \N \N \N f f \N 84 2056 3648 2015-10-27 13:15:37.482664+00 \N \N \N f f \N 85 1028 1824 2015-10-27 13:16:16.624074+00 \N \N \N f f \N 86 1028 1824 2015-10-27 13:20:15.946619+00 \N \N \N f f \N 87 1028 1824 2015-10-27 13:24:49.427371+00 \N \N \N f f \N 88 1028 1724 2015-10-27 13:24:50.660404+00 \N \N \N f f \N 89 1056 1878 2015-10-27 13:34:51.0037+00 \N \N \N f f \N 90 1028 1824 2015-10-27 13:35:10.923875+00 \N \N \N f f \N 91 1028 1824 2015-10-27 13:41:12.043732+00 \N \N \N f f \N 94 1028 1824 2015-10-27 14:11:43.108386+00 \N \N \N f f \N 95 879 1803 2015-10-27 14:12:12.755732+00 \N \N \N f f \N 96 934 1680 2015-10-27 14:20:23.55419+00 \N \N \N f f \N 97 1650 962 2015-10-27 14:26:35.050008+00 \N \N \N f f \N 98 1648 2579 2015-10-27 14:41:18.070768+00 \N \N \N f f \N 99 1496 1806 2015-10-27 16:25:59.052991+00 \N \N \N f f \N 119 1028 1824 2015-11-08 21:45:05.351842+00 \N \N \N f f \N 101 49 187 2015-11-03 10:15:21.698509+00 f f 102 16 19 2015-11-03 10:17:17.635558+00 f f 108 832 1373 2015-11-03 11:14:03.656359+00 \N \N \N f f \N 103 1024 725 2015-11-03 10:26:09.573795+00 f f 104 596 421 2015-11-03 10:28:52.655543+00 f f 105 3080 5472 2015-11-03 10:58:18.33552+00 f f 106 1320 859 2015-11-03 11:05:47.5709+00 f f 120 896 1824 2015-11-08 21:45:54.172437+00 \N \N \N f f \N 121 740 1216 2015-11-08 21:46:50.09766+00 \N \N \N f f \N 115 722 969 2015-11-03 18:15:41.878625+00 \N \N \N f f \N 116 832 1440 2015-11-08 20:38:26.906171+00 \N \N \N f f \N 117 1028 1824 2015-11-08 20:41:47.541342+00 \N \N \N f f \N 118 449 600 2015-11-08 21:08:59.953894+00 \N \N \N f f \N 122 740 1216 2015-11-08 21:47:50.38111+00 \N \N \N f f \N 123 888 1804 2015-11-08 21:49:57.401945+00 \N \N \N f f \N 124 888 1804 2015-11-08 22:30:09.364118+00 \N \N \N f f \N 125 812 1701 2015-11-09 15:57:03.766928+00 \N \N \N f f \N 126 2404 1701 2015-11-09 15:57:56.092655+00 \N \N \N f f \N 127 2056 3648 2015-11-09 15:59:30.539491+00 \N \N \N f f \N 128 1810 2716 2015-11-09 16:01:17.660564+00 \N \N \N f f \N 129 349 580 2015-11-09 16:04:59.550425+00 \N \N \N f f \N 131 911 1264 2015-11-09 16:08:01.753341+00 \N \N \N f f \N 134 1704 2272 2015-11-09 16:17:49.25798+00 \N \N \N f f \N 135 4322 6839 2015-11-09 16:19:49.985533+00 \N \N \N f f \N 136 1474 2208 2015-11-09 16:29:29.785155+00 \N \N \N f f \N 137 491 736 2015-11-09 17:54:47.924222+00 \N \N \N f f \N 138 832 1373 2015-11-09 17:57:36.895966+00 \N \N \N f f \N 139 1200 1600 2015-11-09 17:58:35.329687+00 \N \N \N f f \N 140 2176 3264 2015-11-09 18:03:18.911176+00 \N \N \N f f \N 142 256 985 2015-11-09 18:07:01.524867+00 \N \N \N f f \N 145 139 535 2015-11-09 18:16:52.078916+00 \N \N \N f f \N 146 1080 1920 2015-11-09 18:18:27.944005+00 \N \N \N f f \N 147 139 535 2015-11-09 18:20:12.744891+00 \N \N \N f f \N 148 514 998 2015-11-09 18:57:25.793391+00 \N \N \N f f \N 149 732 1134 2015-11-13 23:28:48.838922+00 f f 151 816 1074 2015-11-15 14:51:50.206383+00 \N \N \N f f \N 152 1030 1432 2015-11-15 14:54:26.363341+00 \N \N \N f f \N 153 1030 1432 2015-11-15 14:56:38.720616+00 \N \N \N f f \N 154 476 1388 2015-11-19 20:53:01.64521+00 \N \N \N f f \N 155 505 1502 2015-11-25 06:54:10.794353+00 \N \N \N f f \N 156 351 1153 2015-11-25 19:26:30.436498+00 \N \N \N f f \N 157 274 1062 2015-11-25 19:48:23.355422+00 \N \N \N f f \N 158 411 730 2015-12-07 13:32:10.12742+00 \N \N \N f f \N 159 516 960 2015-12-07 13:34:53.139238+00 \N \N \N f f \N 160 528 434 2015-12-07 14:00:41.554263+00 \N \N \N f f \N 163 411 679 2015-12-07 14:02:30.819912+00 \N \N \N f f \N 164 2056 3000 2015-12-07 14:03:38.695144+00 \N \N \N f f \N 165 411 600 2015-12-07 14:04:25.717992+00 \N \N \N f f \N 166 491 736 2015-12-07 14:14:36.594232+00 \N \N \N f f \N 167 411 730 2015-12-07 14:22:02.702397+00 \N \N \N f f \N 168 411 730 2015-12-07 14:30:36.664529+00 \N \N \N f f \N 169 366 730 2015-12-07 14:31:07.145437+00 \N \N \N f f \N 170 614 342 2015-12-07 14:31:43.779266+00 \N \N \N f f \N 171 491 736 2015-12-07 15:54:30.072715+00 \N \N \N f f \N 173 434 528 2015-12-07 16:07:50.770571+00 \N \N \N f f \N 175 300 590 2016-01-06 14:01:40.099233+00 \N \N \N f f \N 182 877 1500 2016-01-06 18:06:27.319942+00 \N \N \N f f \N 184 282 425 2016-01-08 10:32:21.999025+00 \N \N \N f f \N 185 550 1627 2016-01-13 21:21:26.570016+00 \N \N \N f f \N 176 346 632 2016-01-06 16:32:43.495447+00 f f 180 406 768 2016-01-06 17:33:27.013519+00 f f 181 421 768 2016-01-06 18:02:49.017239+00 f f 183 550 1627 2016-01-08 10:29:41.714794+00 f f 188 335 493 2016-01-14 16:38:34.950801+00 f f 178 300 590 2016-01-06 16:57:55.887243+00 f f 187 411 730 2016-01-14 15:56:21.200397+00 f f 186 550 1627 2016-01-13 21:23:52.425701+00 f f \. -- -- Data for Name: hosting_railsbetauser; Type: TABLE DATA; Schema: public; Owner: app -- COPY hosting_railsbetauser (id, email, received_date) FROM stdin; \. -- -- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('hosting_railsbetauser_id_seq', 1, false); -- -- Data for Name: menus_cachekey; Type: TABLE DATA; Schema: public; Owner: app -- COPY menus_cachekey (id, language, site, key) FROM stdin; 647 en-us 1 menu_cache_menu_nodes_en-us_1_5_user 648 en-us 1 menu_cache_menu_nodes_en-us_1 649 de 1 menu_cache_menu_nodes_de_1 650 en-us 1 menu_cache_menu_nodes_en-us_1_1_user \. -- -- Name: menus_cachekey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('menus_cachekey_id_seq', 650, true); -- -- Data for Name: railshosting_railsbetauser; Type: TABLE DATA; Schema: public; Owner: app -- COPY railshosting_railsbetauser (id, email, received_date) FROM stdin; 1 info@renuo.ch 2015-06-24 22:34:03.436018+00 2 babedream312@gmx.de 2015-07-23 10:46:59+00 \. -- -- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('railshosting_railsbetauser_id_seq', 2, true); -- -- Data for Name: reversion_revision; Type: TABLE DATA; Schema: public; Owner: app -- COPY reversion_revision (id, manager_slug, date_created, comment, user_id) FROM stdin; 1 default 2015-06-12 16:53:01.637515+00 Initial version. 1 2 default 2015-06-12 17:05:57.126279+00 Initial version. 1 4 default 2015-06-12 17:14:13.048438+00 Changed template and xframe_options. 1 119 default 2015-10-04 17:59:12.292473+00 Text plugin edited at position 0 in digitalglarus_why_glarus_affordable_price 1 6 default 2015-06-12 20:03:12.514876+00 Changed page_title. 1 120 default 2015-10-04 17:59:41.370007+00 Text plugin edited at position 0 in digitalglarus_why_glarus_direct_connection_zurich 1 8 default 2015-06-12 20:06:13.563737+00 Changed menu_title and page_title. 1 9 default 2015-06-12 20:06:55.930234+00 Changed page_title. 1 121 default 2015-10-04 18:00:02.492971+00 Text plugin edited at position 0 in digitalglarus_why_glarus 1 11 default 2015-06-12 20:17:24.401903+00 Changed page_title. 1 122 default 2015-10-04 18:01:41.398138+00 Changed xframe_options. 1 13 default 2015-06-13 13:08:13.293802+00 Template changed to Blog 1 123 default 2015-10-04 18:05:38.229734+00 Initial version. 1 17 default 2015-06-14 03:14:35.039665+00 Changed meta_description. 1 262 default 2015-11-15 00:56:41.442053+00 Text plugin edited at position 0 in digitalglarus_why_us 1 19 default 2015-06-14 03:43:15.812565+00 Changed xframe_options. 1 20 default 2015-06-14 03:43:22.048074+00 No fields changed. 1 264 default 2015-11-15 01:04:49.983036+00 Text plugin edited at position 0 in digitalglarus_why_us 1 266 default 2015-11-15 01:21:47.099657+00 Text plugin edited at position 0 in digitalglarus_why_us 1 23 default 2015-06-15 13:54:36.304988+00 Publish 1 24 default 2015-06-15 14:05:44.501874+00 Publish 1 25 default 2015-06-16 08:02:34.802098+00 Publish 1 26 default 2015-06-16 08:09:30.848891+00 Publish 1 27 default 2015-06-16 08:21:40.899986+00 Publish 1 28 default 2015-09-30 03:28:35.597671+00 Publish 1 29 default 2015-10-04 16:53:42.54729+00 Initial version. 1 268 default 2015-11-15 01:22:15.361325+00 Publish 1 270 default 2015-11-15 01:23:21.0296+00 Publish 1 272 default 2015-11-15 01:24:40.921427+00 Text plugin edited at position 0 in digitalglarus_why_us 1 274 default 2015-11-21 16:33:52.214317+00 Text plugin edited at position 0 in digitalglarus_why_us 1 276 default 2015-11-21 16:34:43.41704+00 Text plugin edited at position 0 in digitalglarus_why_us 1 278 default 2015-11-21 16:36:27.387661+00 Text plugin edited at position 0 in digitalglarus_why_us 1 280 default 2015-11-25 06:19:53.782368+00 Initial version. 1 372 default 2015-11-25 20:15:59.738817+00 Text plugin edited at position 0 in digitalglarus_why_us 1 374 default 2015-11-25 20:17:13.392532+00 Text plugin edited at position 0 in digitalglarus_why_us 1 376 default 2015-11-25 20:18:11.430701+00 Text plugin edited at position 0 in digitalglarus_why_us 1 378 default 2015-11-25 20:19:39.206631+00 Link plugin added to digitalglarus_why_us 1 380 default 2015-11-29 14:55:24.830429+00 Text plugin edited at position 0 in digital_glarus_legend 1 146 default 2015-10-04 18:15:40.604136+00 Text plugin edited at position 0 in digital_glarus_contact 1 147 default 2015-10-04 18:16:04.985583+00 Text plugin added to digital_glarus_contact_content 1 148 default 2015-10-04 18:16:13.636627+00 Text plugin edited at position 0 in digital_glarus_contact_content 1 149 default 2015-10-04 18:16:23.137603+00 Text plugin added to digital_glarus_contact_information 1 150 default 2015-10-04 18:17:05.846299+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 151 default 2015-10-04 18:17:33.905948+00 Text plugin edited at position 0 in digital_glarus_contact_content 1 152 default 2015-10-04 18:54:49.273959+00 Initial version. 1 382 default 2015-11-29 14:55:56.993361+00 Text plugin edited at position 0 in digital_glarus_legend 1 384 default 2015-11-29 14:56:35.774616+00 Text plugin edited at position 0 in digital_glarus_legend 1 386 default 2015-11-29 14:57:26.570865+00 Publish 1 388 default 2015-11-29 18:45:41.47572+00 Text plugin edited at position 0 in digital_glarus_legend 1 390 default 2015-11-29 18:47:44.99648+00 Text plugin edited at position 0 in digital_glarus_legend 1 392 default 2015-11-29 18:48:18.037565+00 Publish 1 394 default 2015-11-29 18:48:45.266076+00 Publish 1 64 default 2015-10-04 17:26:43.236708+00 template und xframe_options geändert. 1 65 default 2015-10-04 17:27:18.644442+00 Template changed to Blog 1 66 default 2015-10-04 17:27:41.637288+00 Publish 1 396 default 2015-11-29 18:49:11.080574+00 Publish 1 398 default 2015-12-01 23:40:41.87119+00 Publish 1 400 default 2015-12-01 23:41:08.361578+00 Publish 1 402 default 2015-12-01 23:41:49.754746+00 Publish 1 404 default 2015-12-01 23:43:34.320764+00 Changed slug. 1 406 default 2015-12-01 23:43:53.264396+00 Publish 1 408 default 2015-12-02 04:09:11.01606+00 Text plugin edited at position 0 in digitalglarus_why_us 1 410 default 2015-12-15 15:18:12.878405+00 Publish 1 412 default 2016-01-29 19:50:41.146912+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 80 default 2015-10-04 17:45:05.490228+00 Initial version. 1 113 default 2015-10-04 17:56:45.585573+00 Text plugin at position 0 in digitalglarus_why_glarus_affordable_price was deleted. 1 114 default 2015-10-04 17:57:08.359461+00 Text plugin edited at position 0 in digitalglarus_why_us 1 115 default 2015-10-04 17:57:24.923974+00 Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape 1 116 default 2015-10-04 17:57:41.619984+00 Text plugin edited at position 0 in digitalglarus_why_glarus_affordable_price 1 117 default 2015-10-04 17:58:09.158189+00 Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape 1 118 default 2015-10-04 17:58:54.913184+00 Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape 1 261 default 2015-11-15 00:55:56.851277+00 Text plugin edited at position 0 in digitalglarus_why_us 1 263 default 2015-11-15 00:57:39.220029+00 Publish 1 265 default 2015-11-15 01:21:17.541396+00 Text plugin edited at position 0 in digitalglarus_why_us 1 267 default 2015-11-15 01:22:00.939147+00 Text plugin edited at position 0 in digitalglarus_why_us 1 269 default 2015-11-15 01:23:07.39537+00 Text plugin edited at position 0 in digitalglarus_why_us 1 271 default 2015-11-15 01:24:09.458824+00 Text plugin edited at position 0 in digitalglarus_why_us 1 273 default 2015-11-15 01:24:50.028463+00 Publish 1 275 default 2015-11-21 16:34:09.930657+00 Publish 1 277 default 2015-11-21 16:34:48.928339+00 Publish 1 279 default 2015-11-21 16:36:50.919289+00 Publish 1 371 default 2015-11-25 20:15:47.066741+00 Link plugin edited at position 0 in digitalglarus_why_us 1 373 default 2015-11-25 20:16:53.359283+00 Text plugin edited at position 0 in digitalglarus_why_us 1 375 default 2015-11-25 20:17:31.677838+00 Text plugin edited at position 0 in digitalglarus_why_us 1 377 default 2015-11-25 20:18:38.284986+00 Text plugin edited at position 0 in digitalglarus_why_us 1 381 default 2015-11-29 14:55:34.787686+00 Publish 1 383 default 2015-11-29 14:56:18.33418+00 Text plugin edited at position 0 in digital_glarus_legend 1 385 default 2015-11-29 14:57:13.664845+00 Publish 1 387 default 2015-11-29 18:45:25.450976+00 Text plugin edited at position 0 in digital_glarus_legend 1 389 default 2015-11-29 18:47:28.751752+00 Text plugin edited at position 0 in digital_glarus_legend 1 187 default 2015-10-04 22:43:26.189751+00 Initial version. 1 188 default 2015-10-04 22:43:48.045386+00 Changed template and xframe_options. 1 189 default 2015-10-04 22:44:36.003855+00 Changed overwrite_url and xframe_options. 1 192 default 2015-10-04 23:27:27.203111+00 Publish 1 193 default 2015-10-04 23:27:38.638013+00 Publish 1 391 default 2015-11-29 18:47:55.297528+00 Publish 1 195 default 2015-10-04 23:28:36.652854+00 Changed menu_title. 1 196 default 2015-10-04 23:28:50.068387+00 Changed menu_title. 1 393 default 2015-11-29 18:48:33.921586+00 Publish 1 198 default 2015-10-04 23:29:24.882138+00 Changed title and menu_title. 1 199 default 2015-10-04 23:29:34.205404+00 Publish 1 200 default 2015-10-04 23:29:41.599102+00 Publish 1 201 default 2015-10-04 23:29:48.659227+00 Publish 1 395 default 2015-11-29 18:48:56.77275+00 Publish 1 203 default 2015-10-04 23:34:04.66536+00 Changed overwrite_url and xframe_options. 1 204 default 2015-10-04 23:34:15.705006+00 Publish 1 205 default 2015-10-04 23:35:54.28939+00 Changed soft_root and xframe_options. 1 206 default 2015-10-04 23:36:02.077944+00 Publish 1 207 default 2015-10-04 23:38:38.715906+00 No fields changed. 1 208 default 2015-10-04 23:38:41.592333+00 Publish 1 209 default 2015-10-04 23:39:11.977482+00 Changed menu_title. 1 210 default 2015-10-04 23:39:22.611441+00 Publish 1 211 default 2015-10-04 23:39:40.10288+00 Changed menu_title. 1 212 default 2015-10-04 23:39:51.490206+00 Publish 1 397 default 2015-12-01 23:40:23.680434+00 Changed slug. 1 399 default 2015-12-01 23:40:47.533127+00 Publish 1 215 default 2015-10-04 23:41:01.848038+00 Changed xframe_options. 1 216 default 2015-10-04 23:41:10.055288+00 Publish 1 217 default 2015-10-04 23:47:25.951277+00 Changed slug. 1 218 default 2015-10-04 23:47:36.097248+00 Changed slug. 1 219 default 2015-10-04 23:56:07.400299+00 Changed reverse_id and xframe_options. 1 220 default 2015-10-04 23:56:15.692361+00 Publish 1 221 default 2015-10-04 23:56:23.080917+00 Publish 1 222 default 2015-10-05 01:46:26.261965+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 223 default 2015-10-05 01:46:46.135426+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 224 default 2015-10-05 01:46:51.293912+00 Publish 1 225 default 2015-10-05 01:47:21.792916+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 226 default 2015-10-05 01:47:27.459774+00 Publish 1 227 default 2015-10-05 01:48:02.427355+00 Text plugin edited at position 0 in digital_glarus_contact_information 1 228 default 2015-10-05 01:48:08.190395+00 Publish 1 229 default 2015-10-10 19:00:40.64888+00 Changed soft_root and xframe_options. 1 230 default 2015-10-13 13:34:07.730893+00 Changed overwrite_url and xframe_options. 1 231 default 2015-10-13 13:34:45.173513+00 Publish 1 232 default 2015-10-13 13:35:07.368795+00 Changed slug. 1 233 default 2015-10-13 13:35:27.472797+00 Publish 1 234 default 2015-10-13 13:35:55.892039+00 Changed xframe_options. 1 235 default 2015-10-13 13:36:40.956878+00 Changed slug. 1 236 default 2015-10-13 13:36:49.627718+00 Publish 1 401 default 2015-12-01 23:41:38.499468+00 Changed slug. 1 403 default 2015-12-01 23:43:25.209859+00 Changed slug. 1 239 default 2015-10-13 13:59:35.314182+00 Text plugin edited at position 0 in digital_glarus_build_a_tech_valley_content 1 240 default 2015-10-13 14:02:20.016954+00 Text plugin edited at position 0 in digital_glarus_build_a_tech_valley_content 1 241 default 2015-10-27 19:12:29.333974+00 Publish 1 242 default 2015-11-04 21:54:05.950142+00 Changed title, slug, menu_title and page_title. 1 243 default 2015-11-04 21:54:19.699074+00 Changed meta_description. 1 244 default 2015-11-04 21:54:23.123864+00 No fields changed. 1 405 default 2015-12-01 23:43:41.786663+00 No fields changed. 1 407 default 2015-12-01 23:44:05.581628+00 Publish 1 409 default 2015-12-02 04:09:19.498186+00 Publish 1 411 default 2015-12-15 15:18:47.585519+00 Publish 1 255 default 2015-11-15 00:43:27.297689+00 Publish 1 413 default 2016-02-28 15:08:34.439401+00 Initial version. 1 414 default 2016-02-28 15:12:18.382316+00 Initial version. 1 \. -- -- Name: reversion_revision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app -- SELECT pg_catalog.setval('reversion_revision_id_seq', 414, true); -- -- Data for Name: reversion_version; Type: TABLE DATA; Schema: public; Owner: app -- COPY reversion_version (id, object_id, object_id_int, format, serialized_data, object_repr, content_type_id, revision_id) FROM stdin; 1 1 1 json [{"model": "cms.page", "fields": {"placeholders": [], "languages": "en-us", "changed_date": "2015-06-12T16:53:01.585Z", "revision_id": 0, "depth": 1, "soft_root": false, "login_required": false, "path": "0001", "in_navigation": true, "publication_date": "2015-06-12T16:53:01.463Z", "xframe_options": 0, "creation_date": "2015-06-12T16:53:01.363Z", "navigation_extenders": null, "application_urls": null, "publication_end_date": null, "limit_visibility_in_menu": null, "is_home": true, "application_namespace": null, "reverse_id": null, "changed_by": "ungleich", "created_by": "ungleich", "parent": null, "template": "INHERIT", "numchild": 0, "site": 1}, "pk": 1}] Home 11 1 2 1 1 json [{"model": "cms.title", "fields": {"page": 1, "meta_description": "", "language": "en-us", "published": true, "creation_date": "2015-06-12T16:53:01.422Z", "path": "", "redirect": null, "slug": "home", "page_title": "", "menu_title": "", "title": "Home", "has_url_overwrite": false}, "pk": 1}] Home (home, en-us) 16 1 3 3 3 json [{"model": "cms.title", "pk": 3, "fields": {"creation_date": "2015-06-12T17:05:57.066Z", "redirect": null, "language": "en-us", "path": "blog", "menu_title": "", "page_title": "", "slug": "blog", "has_url_overwrite": false, "title": "Blog", "meta_description": "", "page": 3, "published": false}}] Blog (blog, en-us) 16 2 4 3 3 json [{"model": "cms.page", "pk": 3, "fields": {"depth": 1, "path": "0003", "revision_id": 0, "application_urls": null, "xframe_options": 0, "placeholders": [6], "site": 1, "soft_root": false, "languages": "en-us", "limit_visibility_in_menu": null, "changed_date": "2015-06-12T17:05:57.068Z", "publication_date": null, "reverse_id": null, "is_home": false, "changed_by": "ungleich", "publication_end_date": null, "creation_date": "2015-06-12T17:05:57.028Z", "login_required": false, "parent": null, "template": "INHERIT", "application_namespace": null, "navigation_extenders": null, "in_navigation": true, "created_by": "ungleich", "numchild": 0}}] Blog 11 2 5 6 6 json [{"model": "cms.placeholder", "pk": 6, "fields": {"default_width": null, "slot": "page_content"}}] page_content 9 2 7885 203 203 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n.
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 272 7894 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 272 2915 179 179 json [{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}] 179 10 119 7895 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nThe current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 217 5822 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:47:25.866Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] home 11 217 5823 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 217 5824 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 217 5825 162 162 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}] The Swiss IT... 35 217 7562 203 203 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}] 203 10 264 7563 204 204 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 204}] The Swiss IT... 35 264 7564 205 205 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}] 205 10 264 7565 206 206 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 264 7566 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 264 7567 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 265 7607 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 265 7608 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 217 5828 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 217 5829 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 217 5830 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 217 5831 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 217 5832 156 156 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 217 5839 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 217 5840 159 159 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 219 5920 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 219 5921 162 162 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}] The Swiss IT... 35 219 5922 163 163 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}] 163 10 219 5923 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 219 5924 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 219 5925 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 219 5926 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 219 5927 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 219 5928 156 156 json [{"fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 207 5397 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 207 5398 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 207 5399 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 207 5400 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 207 5401 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 207 5402 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 207 5404 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:38:38.634Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] home 11 207 5857 171 171 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}] 171 10 218 5941 160 160 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}] 160 10 219 5405 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 207 5406 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 207 5430 163 163 json [{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}] DIE ERSCHAFFUNG EINES... 35 207 5408 163 163 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}] 163 10 207 5409 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 207 5410 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 207 5411 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 207 5412 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 207 5413 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 207 5414 156 156 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 207 5421 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 207 5422 159 159 json [{"fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 218 5863 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 218 985 3 3 json [{"model": "cms.title", "fields": {"path": "blog", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-06-12T17:05:57.066Z", "page": 3, "language": "en-us", "page_title": "ungleich Blog", "menu_title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "slug": "blog", "title": "Blog"}, "pk": 3}] Blog (blog, en-us) 16 64 986 3 3 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "BlogApp", "publication_date": "2015-06-12T17:17:49.261Z", "path": "0003", "changed_by": "ungleich", "template": "cms/ungleichch/blog.html", "changed_date": "2015-10-04T17:26:42.920Z", "placeholders": [6], "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": "djangocms_blog", "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 3}] Blog 11 64 987 6 6 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "page_content"}, "pk": 6}] page_content 9 64 5439 34 34 json [{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}] digital_glarus_a_new_area_content 9 208 5440 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:38:41.495Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] Startseite 11 208 5454 160 160 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}] 160 10 208 5441 6 6 json [{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": null, "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}] Digital Glarus - Startseite (digital-glarus-startseite, de) 16 208 5442 172 172 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}] 172 10 208 5443 5 5 json [{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}] Digital Glarus - Welcome (digital-glarus-home, en-us) 16 208 5444 173 173 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}] 173 10 208 5445 171 171 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}] 171 10 208 5446 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 208 5447 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 208 5448 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 208 5453 159 159 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 208 5467 157 157 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 208 5469 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 208 5470 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 208 5471 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 208 5472 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 208 5473 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 208 5474 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 208 5475 162 162 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}] 162 10 208 5476 163 163 json [{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}] DIE ERSCHAFFUNG EINES... 35 208 5477 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 208 5478 159 159 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}] 159 10 208 5479 37 37 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}] digital_glarus_where_we_are 9 208 5480 165 165 json [{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}] EINE NEUE REGION. 35 208 5481 32 32 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}] digital_glarus_build_a_tech_valley_content 9 208 5482 33 33 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}] digital_glarus_a_new_area 9 208 5483 157 157 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}] 157 10 208 5951 170 170 json [{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}] WIESO SOLLTE SICH... 35 219 5484 166 166 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}] 166 10 208 5485 170 170 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}] 170 10 208 5486 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 208 5864 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 218 5865 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 218 5866 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 218 5867 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 218 5868 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 218 5870 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:47:36.016Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] home 11 218 5871 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 218 5872 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 218 5873 162 162 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}] The Swiss IT... 35 218 5874 163 163 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}] 163 10 218 5945 164 164 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}] 164 10 219 6678 5 5 json [{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:36:49.657Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}] home 11 239 6679 6 6 json [{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus-startseite", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus-startseite"}}] Digital Glarus - Startseite (digitalglarus-startseite, de) 16 239 6680 172 172 json [{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}] 172 10 239 6681 5 5 json [{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}] Digital Glarus - Welcome (digitalglarus-home, en-us) 16 239 6682 173 173 json [{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}] 173 10 239 6683 171 171 json [{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}] 171 10 239 6684 153 153 json [{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-13T13:59:35.065Z", "position": 0, "numchild": 0, "depth": 1}}] 153 10 239 6685 153 153 json [{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n"}}] Digital Glarus, this... 35 239 6686 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 239 6691 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 239 6705 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 239 6707 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 239 6708 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 239 6709 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 239 6710 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 239 6711 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 239 6712 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 239 6713 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 239 6714 163 163 json [{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}] DIE ERSCHAFFUNG EINES... 35 239 7599 207 207 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT \\n"}, "pk": 207}] WUNDERSCHÖNE LANDSCHAFT 35 265 6715 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 239 6716 159 159 json [{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}] 159 10 239 6717 37 37 json [{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}] digital_glarus_where_we_are 9 239 6718 165 165 json [{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}] EINE NEUE REGION. 35 239 6719 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 239 6720 33 33 json [{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}] digital_glarus_a_new_area 9 239 6721 157 157 json [{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}] 157 10 239 5804 33 33 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}] digital_glarus_a_new_area 9 216 6723 170 170 json [{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}] 170 10 239 6724 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 239 10096 537 537 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nDigital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n\\n"}}] Digital Glarus, this... 35 240 6734 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 240 6739 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 240 6753 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 240 6755 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 240 6756 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 240 6757 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 240 6758 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 240 6759 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 240 6760 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 240 6761 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 240 6762 163 163 json [{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}] DIE ERSCHAFFUNG EINES... 35 240 7639 203 203 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 240 6764 159 159 json [{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}] 159 10 240 6765 37 37 json [{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}] digital_glarus_where_we_are 9 240 6766 165 165 json [{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}] EINE NEUE REGION. 35 240 6767 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 240 6768 33 33 json [{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}] digital_glarus_a_new_area 9 240 6769 157 157 json [{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}] 157 10 240 11137 183 183 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}] digital_glarus_legend 9 404 6772 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 240 10098 537 537 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:15:59.537Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}] 537 10 374 10099 26 26 json [{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}] Let's Jazz in Glarus (lets-jazz-glarus, de) 16 374 10100 542 542 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}] Jazzband FivePastEight 30 374 10101 544 544 json [{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}] 544 10 374 10102 551 551 json [{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}] 551 10 374 10103 551 551 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}] meetup.com 30 374 10104 175 175 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}] digital_glarus_build_a_tech_valley 9 374 10105 176 176 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}] digital_glarus_build_a_tech_valley_content 9 374 10106 177 177 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}] digital_glarus_a_new_area 9 374 5487 179 179 json [{"fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n.
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 396 10908 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 396 10909 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 262 7484 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 262 7485 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}] We, the ungleich... 35 209 5495 180 180 json [{"fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 115 2745 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 115 7929 201 201 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}] 201 10 273 7930 202 202 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 273 7935 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 273 7936 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 113 2653 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT
\\n"}, "pk": 188}] PREISWERT 35 115 2656 180 180 json [{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}] 180 10 113 2916 6 6 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:58:54.984Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}] digital.glarus.about 11 119 7951 97 97 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}] digitalglarus_why_glarus_direct_connection_zurich 9 273 2657 181 181 json [{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}] 181 10 113 2658 182 182 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?
\\n"}, "pk": 182}] WIESO WIR? 35 113 2659 183 183 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 113 2660 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 113 2661 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT
\\n"}, "pk": 185}] WUNDERSCHÖNE LANDSCHAFT 35 113 2662 58 58 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}] digital_glarus_build_a_tech_valley 9 113 2663 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 113 2664 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 113 2665 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 113 2666 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 113 2667 181 181 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 181}] The Swiss IT... 35 113 2668 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 113 2669 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 113 2670 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 113 2671 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 113 2672 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 113 2673 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 113 2674 70 70 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}] digitalglarus_why_glarus_beautiful_landscape 9 113 5509 184 184 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}] WIESO GLARUS? 35 209 2675 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 113 2676 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 113 2677 183 183 json [{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}] 183 10 113 2678 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}] 184 10 113 2679 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:55:29.967Z", "position": 0}, "pk": 185}] 185 10 113 10924 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 396 2680 182 182 json [{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:52:43.940Z", "position": 0}, "pk": 182}] 182 10 113 2681 187 187 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 113 2682 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT
\\n"}, "pk": 188}] PREISWERT 35 113 5510 185 185 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}] 185 10 209 5511 58 58 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}] digital_glarus_build_a_tech_valley 9 209 7496 90 90 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}] digital_glarus_why_be_interested_content 9 262 2683 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 113 2684 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 113 2751 183 183 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 115 2752 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 115 2753 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT\\n"}, "pk": 185}] WUNDERSCHÖNE LANDSCHAFT 35 115 2754 58 58 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}] digital_glarus_build_a_tech_valley 9 115 2755 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 115 2756 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 115 2757 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 115 2758 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 115 2759 181 181 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 181}] The Swiss IT... 35 115 2760 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 115 2761 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 115 2762 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 115 2763 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 115 2764 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 115 2765 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 115 2766 70 70 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}] digitalglarus_why_glarus_beautiful_landscape 9 115 2767 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 115 2768 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 115 2769 183 183 json [{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}] 183 10 115 2770 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}] 184 10 115 2771 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:57:24.745Z", "position": 0}, "pk": 185}] 185 10 115 2772 182 182 json [{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}] 182 10 115 2775 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 115 2776 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 115 2783 175 175 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}] Wir, die ungleich... 35 209 5527 184 184 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}] 184 10 209 5528 185 185 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 218 5876 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 218 5877 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 218 5878 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 218 7497 94 94 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}] digitalglarus_why_glarus 9 262 5533 179 179 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}] 179 10 210 5534 6 6 json [{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:39:22.543Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}] Ãœber uns 11 210 5535 7 7 json [{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 210 5536 8 8 json [{"fields": {"language": "de", "menu_title": "\\u00dcber uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}] Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de) 16 210 5537 188 188 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}] 188 10 210 5538 174 174 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}] 174 10 210 5539 175 175 json [{"fields": {"body": "We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 274 7976 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 274 7977 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n.
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 275 8017 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 275 2685 179 179 json [{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}] 179 10 114 2686 6 6 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:56:45.692Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}] digital.glarus.about 11 114 2997 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 120 8020 461 461 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 114 2699 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 114 2706 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 114 2707 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT
\\n"}, "pk": 185}] WUNDERSCHÖNE LANDSCHAFT 35 114 2708 58 58 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}] digital_glarus_build_a_tech_valley 9 114 2709 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 114 2710 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 114 2711 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 114 2712 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 114 2713 181 181 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 181}] The Swiss IT... 35 114 2714 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 114 2715 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 114 2716 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 114 2717 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 114 2718 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 114 2719 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 114 2720 70 70 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}] digitalglarus_why_glarus_beautiful_landscape 9 114 7519 201 201 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}] 201 10 263 2917 7 7 json [{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 119 2918 8 8 json [{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}] Digital Glarus - Über uns (digital-glarus-uber-uns, de) 16 119 2919 188 188 json [{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:59:12.135Z", "position": 0}, "pk": 188}] 188 10 119 2920 174 174 json [{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}] 174 10 119 2921 175 175 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 119 2929 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 119 2936 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 119 2937 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 119 2958 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 120 2975 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 120 2982 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 120 2983 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 121 3021 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 150 3027 183 183 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 121 3028 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 121 3029 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&ie=UTF8&ll=46.969959,9.039001&spn=56.506174,79.013672&t=m&z=12&output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"></iframe>
\\n"}, "pk": 198}] <iframe scrolling="no" marginheight="0"... 35 150 3053 179 179 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 122 3061 180 180 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 122 3076 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}] 185 10 122 3077 58 58 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}] digital_glarus_build_a_tech_valley 9 122 3078 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 122 3079 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 122 3080 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 122 3081 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 122 3082 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 122 3083 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 122 3084 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 122 3085 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 122 3086 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 122 3087 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 122 3088 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 122 3089 181 181 json [{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}] 181 10 122 3090 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 122 3091 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 122 3703 191 191 json [{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}] 191 10 150 3704 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] The Swiss IT... 35 150 3705 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 150 3092 183 183 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 122 3093 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T18:00:01.920Z", "position": 0}, "pk": 184}] 184 10 122 3094 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 151 3726 197 197 json [{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}] 197 10 151 3727 198 198 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": ""}, "pk": 198}] 35 151 3728 199 199 json [{"model": "cms.cmsplugin", "fields": {"path": "001Y", "depth": 1, "placeholder": 84, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0}, "pk": 199}] 199 10 151 3729 189 189 json [{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}] 189 10 151 3730 10 10 json [{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 151 3731 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 151 3732 190 190 json [{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}] 190 10 151 3733 9 9 json [{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 151 3734 191 191 json [{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}] 191 10 151 3735 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] The Swiss IT... 35 151 3736 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 151 3737 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}] We, the ungleich... 35 210 5547 177 177 json [{"fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}] Wir, die ungleich... 35 210 5554 184 184 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}] WIESO GLARUS? 35 210 5555 185 185 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 276 8058 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 276 8059 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}] Telefon: +41 (0)... 35 211 5598 197 197 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}] 197 10 211 5599 198 198 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}] 198 10 211 5600 199 199 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}] 199 10 211 5601 189 189 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}] The Swiss IT... 35 211 5602 83 83 json [{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}] digital_glarus_contact_content 9 211 5603 74 74 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}] digital_glarus_build_a_tech_valley_content 9 211 5604 190 190 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}] 190 10 211 5605 73 73 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}] digital_glarus_build_a_tech_valley 9 211 5606 191 191 json [{"fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}] Telefon: +41 (0)... 35 212 5629 197 197 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}] 197 10 212 5630 198 198 json [{"fields": {"body": ""}, "model": "djangocms_text_ckeditor.text", "pk": 198}] 35 212 5631 199 199 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}] 199 10 212 5632 189 189 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}] 189 10 212 10144 532 532 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:17:13.166Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}] 532 10 376 10145 533 533 json [{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}] 533 10 376 10146 537 537 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nPhone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nDas momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 218 5887 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 218 5888 159 159 json [{"fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nDas momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n.
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nDer erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 219 5911 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 219 5912 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 219 5913 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 219 5914 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 219 5915 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 219 5916 154 154 json [{"fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 215 5719 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 215 2723 183 183 json [{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}] 183 10 114 2724 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}] 184 10 114 5720 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 215 5721 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 215 5722 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 215 5723 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 215 5724 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 215 5726 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:41:01.763Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] home 11 215 7521 203 203 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}] 203 10 263 5727 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 215 5728 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 215 5729 162 162 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}] The Swiss IT... 35 215 5730 163 163 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}] 163 10 215 5731 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 215 2721 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 114 2722 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 114 2798 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 116 2725 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:55:29.967Z", "position": 0}, "pk": 185}] 185 10 114 2726 182 182 json [{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}] 182 10 114 2727 187 187 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 114 2728 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT
\\n"}, "pk": 188}] PREISWERT 35 114 2729 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 114 2730 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 114 2778 6 6 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:57:25.000Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}] digital.glarus.about 11 116 2779 7 7 json [{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 116 2780 8 8 json [{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}] Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de) 16 116 2787 178 178 json [{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}] 178 10 116 2788 174 174 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 174}] The Swiss IT... 35 116 2789 175 175 json [{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}] 175 10 116 2790 176 176 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 116 2791 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 116 2801 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 116 2802 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 116 2803 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 116 2804 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 116 2805 181 181 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 181}] The Swiss IT... 35 116 2806 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 116 2807 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 116 2808 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 116 2809 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 116 2810 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 116 2811 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 116 2812 70 70 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}] digitalglarus_why_glarus_beautiful_landscape 9 116 2813 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 116 2814 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 116 2815 183 183 json [{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}] 183 10 116 2816 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}] 184 10 116 2817 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:57:24.745Z", "position": 0}, "pk": 185}] 185 10 116 2818 182 182 json [{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}] 182 10 116 2819 187 187 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 116 2820 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}] PREISWERT 35 116 2821 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 116 2822 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 116 2823 179 179 json [{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}] 179 10 117 2824 6 6 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:57:41.687Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}] digital.glarus.about 11 117 2825 7 7 json [{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 117 2826 8 8 json [{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}] Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de) 16 117 2827 188 188 json [{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:57:41.428Z", "position": 0}, "pk": 188}] 188 10 117 2828 174 174 json [{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}] 174 10 117 2829 175 175 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 117 2866 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}] PREISWERT 35 117 2836 176 176 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 117 2837 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 117 2844 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 117 2845 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT\\n"}, "pk": 185}] WUNDERSCHÖNE LANDSCHAFT 35 117 2846 58 58 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}] digital_glarus_build_a_tech_valley 9 117 2847 59 59 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}] digital_glarus_build_a_tech_valley_content 9 117 2848 60 60 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}] digital_glarus_a_new_area 9 117 2849 61 61 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}] digital_glarus_a_new_area_content 9 117 2850 62 62 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}] digital_glarus_why_be_interested 9 117 2851 181 181 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 181}] The Swiss IT... 35 117 2852 64 64 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}] digital_glarus_where_we_are 9 117 2853 65 65 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}] digital_glarus_where_we_are_content 9 117 2854 66 66 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}] digital_glarus_legend 9 117 2855 67 67 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}] digitalglarus_why_us 9 117 2856 68 68 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}] digitalglarus_why_us_content 9 117 2857 69 69 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}] digitalglarus_why_glarus 9 117 2858 70 70 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}] digitalglarus_why_glarus_beautiful_landscape 9 117 2859 71 71 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}] digitalglarus_why_glarus_affordable_price 9 117 2860 72 72 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 117 2861 183 183 json [{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}] 183 10 117 2862 184 184 json [{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}] 184 10 117 2863 185 185 json [{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:08.833Z", "position": 0}, "pk": 185}] 185 10 117 2867 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 117 2868 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 117 2869 179 179 json [{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}] 179 10 118 2870 6 6 json [{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:58:09.233Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}] digital.glarus.about 11 118 2871 7 7 json [{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 118 2872 8 8 json [{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}] Digital Glarus - Über uns (digital-glarus-uber-uns, de) 16 118 2873 188 188 json [{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:57:41.428Z", "position": 0}, "pk": 188}] 188 10 118 2874 174 174 json [{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}] 174 10 118 2875 175 175 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 118 2883 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 118 2890 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 118 2891 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH
\\n"}, "pk": 187}] DIREKTE VERBINDUNGEN NACH... 35 118 2912 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}] PREISWERT 35 118 2913 187 187 json [{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}] 187 10 118 2914 63 63 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}] digital_glarus_why_be_interested_content 9 118 5732 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 215 5932 173 173 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}] 173 10 219 5933 157 157 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}] 157 10 219 5733 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 215 5734 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 215 5735 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 215 5736 156 156 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 215 5743 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 215 5744 159 159 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 219 5918 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:56:07.238Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] home 11 219 7525 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 263 5934 155 155 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 219 5948 33 33 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}] digital_glarus_a_new_area 9 219 5761 34 34 json [{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}] digital_glarus_a_new_area_content 9 216 5762 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:41:09.948Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] Startseite 11 216 5763 6 6 json [{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}] Digital Glarus - Startseite (digital-glarus-startseite, de) 16 216 5764 172 172 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}] 172 10 216 5765 5 5 json [{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}] Digital Glarus - Welcome (digital-glarus-home, en-us) 16 216 5766 173 173 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}] 173 10 216 5767 171 171 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}] 171 10 216 5768 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 216 5769 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 216 5770 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 216 5775 159 159 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 216 5789 157 157 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 216 5791 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 216 5792 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 216 5793 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 216 5794 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 216 5935 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 219 5936 159 159 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 263 8091 207 207 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT \\n"}, "pk": 207}] WUNDERSCHÖNE LANDSCHAFT 35 277 8092 8 8 json [{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:34:48.847Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}] crowdfunding 11 277 8093 201 201 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}] 201 10 277 8094 202 202 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 277 8099 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 277 8100 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nPhone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nPhone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\n<iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&ie=UTF8&ll=46.969959,9.039001&spn=56.506174,79.013672&t=m&z=12&output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"></iframe>
\\n"}, "pk": 198}] <iframe scrolling="no" marginheight="0"... 35 148 5802 165 165 json [{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}] EINE NEUE REGION. 35 216 3637 189 189 json [{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}] 189 10 148 3638 10 10 json [{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 148 3640 190 190 json [{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}] 190 10 148 3641 9 9 json [{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 148 3642 191 191 json [{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}] 191 10 148 3643 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] The Swiss IT... 35 148 3644 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 148 3645 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\n<iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&ie=UTF8&ll=46.969959,9.039001&spn=56.506174,79.013672&t=m&z=12&output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"></iframe>
\\n"}, "pk": 198}] <iframe scrolling="no" marginheight="0"... 35 149 3666 199 199 json [{"model": "cms.cmsplugin", "fields": {"path": "001Y", "depth": 1, "placeholder": 84, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "changed_date": "2015-10-04T18:16:23.013Z", "position": 0}, "pk": 199}] 199 10 149 3667 189 189 json [{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}] 189 10 149 3668 10 10 json [{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 149 3669 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 149 3670 190 190 json [{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}] 190 10 149 3671 9 9 json [{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 149 3672 191 191 json [{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}] 191 10 149 3673 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] The Swiss IT... 35 149 3674 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 149 3675 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nAt the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 216 5796 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 216 5797 162 162 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}] 162 10 216 5798 163 163 json [{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}] DIE ERSCHAFFUNG EINES... 35 216 5799 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 216 5800 159 159 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}] 159 10 216 5801 37 37 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}] digital_glarus_where_we_are 9 216 8126 200 200 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}] 200 10 277 8127 204 204 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}] 204 10 277 8128 201 201 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL landscape\\n"}, "pk": 201}] BEAUTIFUL landscape 35 277 8129 460 460 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:34:43.249Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}] 460 10 277 8130 202 202 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}] 202 10 277 10191 544 544 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}] meetup 30 378 10192 533 533 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}] 100-days.net/start-digital-glarus 30 378 5805 157 157 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}] 157 10 216 5806 166 166 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}] 166 10 216 5807 170 170 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}] 170 10 216 5808 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 216 5937 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 219 5938 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 219 5939 32 32 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}] digital_glarus_build_a_tech_valley_content 9 219 8131 203 203 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 278 8140 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 278 8142 209 209 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 279 8181 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 279 8182 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 380 10961 15 15 json [{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:40:41.814Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}] jazz 11 398 10962 532 532 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}] 532 10 398 10963 533 533 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}] 533 10 398 10964 537 537 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 381 10293 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 381 10294 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\nDigital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n\\n"}, "pk": 153}] Digital Glarus, this... 35 382 10334 154 154 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "pk": 158}] The current de-facto... 35 382 10339 159 159 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 255 7439 203 203 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}] 203 10 261 7440 204 204 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 204}] The Swiss IT... 35 261 7441 205 205 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}] 205 10 261 7442 206 206 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 261 7443 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 261 7444 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nDas momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "pk": 173}] Der erste grosse... 35 382 10353 157 157 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "pk": 155}] While you can... 35 382 10355 158 158 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}] 158 10 382 10356 31 31 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}] digital_glarus_build_a_tech_valley 9 382 10357 36 36 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}] digital_glarus_why_be_interested_content 9 382 10358 35 35 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}] digital_glarus_why_be_interested 9 382 10359 160 160 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "pk": 160}] At the moment... 35 382 10360 161 161 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 161}] GLARNER CO-WORKING |... 35 382 10361 162 162 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}] 162 10 382 10362 163 163 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}] DIE ERSCHAFFUNG EINES... 35 382 7472 201 201 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL landscape\\n"}, "pk": 201}] BEAUTIFUL landscape 35 261 4930 179 179 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "pk": 164}] Digital Glarus, so... 35 382 11158 178 178 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}] digital_glarus_a_new_area_content 9 405 7721 203 203 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "pk": 166}] Die alten Fabriken,... 35 382 10983 532 532 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}] We, the ungleich... 35 192 4941 177 177 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}] 177 10 192 4942 178 178 json [{"fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}] Wir, die ungleich... 35 192 4948 184 184 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}] WIESO GLARUS? 35 192 4949 185 185 json [{"fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}] Telefon: +41 (0)... 35 193 4996 197 197 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}] 197 10 193 4997 80 80 json [{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}] digital_glarus_where_we_are_content 9 193 4998 198 198 json [{"fields": {"body": ""}, "model": "djangocms_text_ckeditor.text", "pk": 198}] 35 193 4999 195 195 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}] 195 10 193 5000 81 81 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}] digital_glarus_legend 9 193 5001 199 199 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}] 199 10 193 5002 82 82 json [{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}] digital_glarus_contact 9 193 5003 189 189 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}] 189 10 193 5004 147 147 json [{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 147}] digital_glarus_a_new_area_content 9 193 5005 74 74 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}] digital_glarus_build_a_tech_valley_content 9 193 5006 190 190 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}] 190 10 193 5007 73 73 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}] digital_glarus_build_a_tech_valley 9 193 5008 84 84 json [{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}] digital_glarus_contact_information 9 193 5076 181 181 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}] The Swiss IT... 35 195 5009 191 191 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}] 191 10 193 5010 189 189 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}] The Swiss IT... 35 193 5011 190 190 json [{"fields": {"body": "Contact DIGITAL GLARUS\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}] Contact DIGITAL GLARUS 35 193 5012 191 191 json [{"fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}] We, the ungleich... 35 195 5065 180 180 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}] WIESO GLARUS? 35 195 5080 185 185 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}] 185 10 195 5081 58 58 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}] digital_glarus_build_a_tech_valley 9 195 5082 59 59 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}] digital_glarus_build_a_tech_valley_content 9 195 5083 60 60 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}] digital_glarus_a_new_area 9 195 5084 61 61 json [{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}] digital_glarus_a_new_area_content 9 195 5085 62 62 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}] digital_glarus_why_be_interested 9 195 5086 63 63 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}] digital_glarus_why_be_interested_content 9 195 5087 64 64 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}] digital_glarus_where_we_are 9 195 5088 65 65 json [{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}] digital_glarus_where_we_are_content 9 195 5089 66 66 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}] digital_glarus_legend 9 195 5090 67 67 json [{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}] digitalglarus_why_us 9 195 5091 68 68 json [{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}] digitalglarus_why_us_content 9 195 5092 69 69 json [{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}] digitalglarus_why_glarus 9 195 5093 181 181 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}] 181 10 195 5094 71 71 json [{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}] digitalglarus_why_glarus_affordable_price 9 195 5095 72 72 json [{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}] digitalglarus_why_glarus_direct_connection_zurich 9 195 5096 183 183 json [{"fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}] Wir, die ungleich... 35 195 5097 184 184 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}] 184 10 195 5098 185 185 json [{"fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}] Telefon: +41 (0)... 35 196 5122 197 197 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}] 197 10 196 5123 198 198 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}] 198 10 196 5124 199 199 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}] 199 10 196 5125 189 189 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}] The Swiss IT... 35 196 5126 83 83 json [{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}] digital_glarus_contact_content 9 196 5127 74 74 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}] digital_glarus_build_a_tech_valley_content 9 196 5128 190 190 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}] 190 10 196 5129 73 73 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}] digital_glarus_build_a_tech_valley 9 196 5130 191 191 json [{"fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 383 10387 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 383 10394 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 383 10395 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 198 5176 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 198 5177 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 198 5178 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 198 5179 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 198 5180 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 198 10416 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 198 5183 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:29:24.799Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] digital.glarus 11 198 5184 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 198 5185 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 198 5186 162 162 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}] The Swiss IT... 35 198 5187 163 163 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}] 163 10 198 5188 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 198 5189 165 165 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}] 165 10 198 5190 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 198 5191 39 39 json [{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}] digital_glarus_legend 9 198 5192 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 198 5193 156 156 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 198 5200 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 198 5201 159 159 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 199 5227 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 199 5232 159 159 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 199 5246 157 157 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 199 5248 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 199 5249 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 199 5250 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 199 5251 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 199 5252 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 199 5253 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 199 5254 162 162 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}] 162 10 199 5255 163 163 json [{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}] DIE ERSCHAFFUNG EINES... 35 199 5256 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 199 5257 159 159 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}] 159 10 199 5258 37 37 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}] digital_glarus_where_we_are 9 199 5259 165 165 json [{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}] EINE NEUE REGION. 35 199 5263 166 166 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}] 166 10 199 5264 170 170 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}] 170 10 199 5265 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 199 5266 179 179 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}] 179 10 200 5267 6 6 json [{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:29:41.527Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}] about 11 200 5268 7 7 json [{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}] Digital Glarus - About (digital-glarus-about, en-us) 16 200 5269 8 8 json [{"fields": {"language": "de", "menu_title": "digital.glarus.\\u00fcber.uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": false, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}] Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de) 16 200 5270 188 188 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}] 188 10 200 5271 174 174 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}] 174 10 200 5272 175 175 json [{"fields": {"body": "We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}] We, the ungleich... 35 200 5280 177 177 json [{"fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}] Wir, die ungleich... 35 200 5287 184 184 json [{"fields": {"body": "WIESO GLARUS?
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}] WIESO GLARUS? 35 200 5288 185 185 json [{"fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}] Telefon: +41 (0)... 35 201 5331 197 197 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}] 197 10 201 5332 198 198 json [{"fields": {"body": ""}, "model": "djangocms_text_ckeditor.text", "pk": 198}] 35 201 5333 199 199 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}] 199 10 201 5334 189 189 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}] 189 10 201 5335 10 10 json [{"fields": {"language": "de", "menu_title": "digital.glarus.kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": false, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 201 5336 83 83 json [{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}] digital_glarus_contact_content 9 201 6150 76 76 json [{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}] digital_glarus_a_new_area_content 9 225 5337 190 190 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}] 190 10 201 5338 9 9 json [{"fields": {"language": "en-us", "menu_title": "contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 201 5339 191 191 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}] 191 10 201 5340 189 189 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}] The Swiss IT... 35 201 5341 190 190 json [{"fields": {"body": "Contact DIGITAL GLARUS\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}] Contact DIGITAL GLARUS 35 201 5342 191 191 json [{"fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: Hauptstrasse 14, 8775 Luchsingen
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nDer erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 217 5815 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 217 5816 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 217 5817 154 154 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}] 154 10 217 5818 155 155 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}] 155 10 217 5819 156 156 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}] 156 10 217 5820 154 154 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 220 5962 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 220 5967 159 159 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 220 5981 157 157 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 220 5983 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 220 5984 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 220 5985 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 220 5986 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 220 5987 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 220 5988 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 220 5989 162 162 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}] 162 10 220 5991 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 220 5992 159 159 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}] 159 10 220 5993 37 37 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}] digital_glarus_where_we_are 9 220 5994 165 165 json [{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}] EINE NEUE REGION. 35 220 5995 32 32 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}] digital_glarus_build_a_tech_valley_content 9 220 5996 33 33 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}] digital_glarus_a_new_area 9 220 5997 157 157 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}] 157 10 220 5998 166 166 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}] 166 10 220 5999 170 170 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}] 170 10 220 6000 166 166 json [{"fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 220 6001 34 34 json [{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}] digital_glarus_a_new_area_content 9 221 6002 5 5 json [{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:56:22.982Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}] Startseite 11 221 6003 6 6 json [{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digitalglarus", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}] Digital Glarus - Startseite (digitalglarus, de) 16 221 6004 172 172 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}] 172 10 221 6005 5 5 json [{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}] Digital Glarus - Welcome (digitalglarus, en-us) 16 221 6006 173 173 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}] 173 10 221 6007 171 171 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}] 171 10 221 6008 153 153 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}] 153 10 221 6047 170 170 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}] 170 10 221 6074 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 222 6009 153 153 json [{"fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}] Digital Glarus, this... 35 221 6010 154 154 json [{"fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}] The current de-facto... 35 221 6015 159 159 json [{"fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}] Die alten Fabriken,... 35 221 6028 173 173 json [{"fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}] Der erste grosse... 35 221 6029 157 157 json [{"fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}] While you can... 35 221 6031 158 158 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}] 158 10 221 6032 31 31 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}] digital_glarus_build_a_tech_valley 9 221 6033 36 36 json [{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}] digital_glarus_why_be_interested_content 9 221 6034 35 35 json [{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}] digital_glarus_why_be_interested 9 221 6035 160 160 json [{"fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}] At the moment... 35 221 6036 161 161 json [{"fields": {"body": " \\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}] The Swiss IT... 35 221 6037 162 162 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}] 162 10 221 6038 163 163 json [{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}] DIE ERSCHAFFUNG EINES... 35 221 6039 164 164 json [{"fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}] Digital Glarus, so... 35 221 6040 159 159 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}] 159 10 221 6041 37 37 json [{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}] digital_glarus_where_we_are 9 221 6042 165 165 json [{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}] EINE NEUE REGION. 35 221 6043 32 32 json [{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}] digital_glarus_build_a_tech_valley_content 9 221 6044 33 33 json [{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}] digital_glarus_a_new_area 9 221 6045 157 157 json [{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}] 157 10 221 6046 166 166 json [{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}] 166 10 221 6049 195 195 json [{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n"}}] 35 222 6050 196 196 json [{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 222 6051 197 197 json [{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}}] Telefon: +41 (0)... 35 222 6068 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 222 6069 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 222 6070 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 222 6071 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 222 6072 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 222 6073 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 222 6124 81 81 json [{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}] digital_glarus_legend 9 224 6075 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 222 6076 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:26.119Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 222 6077 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 222 6078 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 222 6079 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}}] Telefon: +41 (0)... 35 223 6125 82 82 json [{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}] digital_glarus_contact 9 224 6099 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 223 6100 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 223 6101 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 223 6102 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 223 6103 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 223 6104 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 223 6105 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 223 6106 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 223 6107 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:45.907Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 223 6108 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 223 6109 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 223 6110 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}}] Telefon: +41 (0)... 35 224 6130 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 224 6131 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 224 6132 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 224 6133 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 224 6134 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 224 6135 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 224 6136 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 224 6137 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 224 6138 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:45.907Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 224 6139 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 224 6140 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 224 6141 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}}] Telefon: +41 (0)... 35 225 6161 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 225 6162 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 225 6163 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 225 6164 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 225 6165 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 225 6166 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 225 6167 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 225 6168 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 225 6169 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 225 6170 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 225 6171 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 225 6172 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: Hauptstrasse 14, 8775 Luchsingen
\\n"}}] Telefon: +41 (0)... 35 226 6192 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 226 6193 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 226 6194 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 226 6195 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 226 6196 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 226 6197 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 226 6198 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 226 6285 162 162 json [{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 230 6199 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 226 6200 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 226 6201 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 226 6202 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 226 6203 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}}] Telefon: +41 (0)... 35 227 6223 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 227 6306 34 34 json [{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}] digital_glarus_a_new_area_content 9 230 6224 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 227 6251 84 84 json [{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}] digital_glarus_contact_information 9 228 6225 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:48:02.213Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 227 6226 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 227 6227 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 227 6228 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 227 6229 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 227 6230 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 227 6231 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 227 6232 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 227 6233 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 227 6234 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}}] Telefon: +41 (0)... 35 228 6254 197 197 json [{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}] 197 10 228 6255 198 198 json [{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": ""}}] 35 228 6256 199 199 json [{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:48:02.213Z", "position": 0, "numchild": 0, "depth": 1}}] 199 10 228 6257 189 189 json [{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}] 189 10 228 6258 10 10 json [{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 228 6259 83 83 json [{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}] digital_glarus_contact_content 9 228 6260 190 190 json [{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}] 190 10 228 6261 9 9 json [{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 228 6262 191 191 json [{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}] 191 10 228 6263 189 189 json [{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 228 6264 190 190 json [{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}}] Contact DIGITAL GLARUS 35 228 6265 191 191 json [{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\nDer erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 230 6275 153 153 json [{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}] 153 10 230 6276 153 153 json [{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 230 6277 154 154 json [{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}] 154 10 230 6278 155 155 json [{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}] 155 10 230 6279 156 156 json [{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}] 156 10 230 6280 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 230 6282 5 5 json [{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:34:07.580Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}] home 11 230 6283 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 230 6284 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 230 6286 163 163 json [{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}] 163 10 230 6315 170 170 json [{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}] WIESO SOLLTE SICH... 35 230 6287 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 230 6288 165 165 json [{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}] 165 10 230 6289 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 230 6290 39 39 json [{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}] digital_glarus_legend 9 230 6291 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 230 6292 156 156 json [{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 230 6299 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 230 6300 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 231 6326 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 231 6331 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 231 6345 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 231 6347 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 231 6348 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 231 6349 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 231 6350 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 231 6351 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 231 6352 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 231 6353 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 231 6354 163 163 json [{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}] DIE ERSCHAFFUNG EINES... 35 231 6355 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 231 6356 159 159 json [{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}] 159 10 231 6357 37 37 json [{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}] digital_glarus_where_we_are 9 231 6358 165 165 json [{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}] EINE NEUE REGION. 35 231 6359 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 231 6360 33 33 json [{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}] digital_glarus_a_new_area 9 231 6361 157 157 json [{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}] 157 10 231 6362 166 166 json [{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}] 166 10 231 6363 170 170 json [{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}] 170 10 231 6364 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 231 6365 171 171 json [{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}] 171 10 232 6366 5 5 json [{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}] Digital Glarus - Welcome (digitalglarus-home, en-us) 16 232 6367 6 6 json [{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}] Digital Glarus - Startseite (digitalglarus, de) 16 232 6368 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 232 6369 172 172 json [{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}] 172 10 232 6370 173 173 json [{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 232 11007 183 183 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}] digital_glarus_legend 9 399 6371 153 153 json [{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}] 153 10 232 6410 38 38 json [{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}] digital_glarus_where_we_are_content 9 232 6372 153 153 json [{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 232 6373 154 154 json [{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}] 154 10 232 6374 155 155 json [{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}] 155 10 232 6375 156 156 json [{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}] 156 10 232 6376 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 232 6378 5 5 json [{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:35:07.288Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}] home 11 232 6379 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 232 6380 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 232 6381 162 162 json [{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 232 6382 163 163 json [{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}] 163 10 232 6383 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 232 6384 165 165 json [{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}] 165 10 232 6409 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 232 6386 39 39 json [{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}] digital_glarus_legend 9 232 6387 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 232 6388 156 156 json [{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 232 6395 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 232 6396 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 233 6422 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 233 6427 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 233 6441 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 233 6443 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 233 6444 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 233 6445 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 233 6446 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 233 6447 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 233 6449 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 233 6451 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 233 6452 159 159 json [{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}] 159 10 233 6453 37 37 json [{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}] digital_glarus_where_we_are 9 233 6454 165 165 json [{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}] EINE NEUE REGION. 35 233 6455 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 233 6456 33 33 json [{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}] digital_glarus_a_new_area 9 233 6457 157 157 json [{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}] 157 10 233 6458 166 166 json [{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}] 166 10 233 6459 170 170 json [{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}] 170 10 233 6460 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 233 6461 171 171 json [{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}] 171 10 234 6462 5 5 json [{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}] Digital Glarus - Welcome (digitalglarus-home, en-us) 16 234 6463 6 6 json [{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}] Digital Glarus - Startseite (digitalglarus, de) 16 234 6464 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 234 6465 172 172 json [{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}] 172 10 234 6466 173 173 json [{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 234 6467 153 153 json [{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}] 153 10 234 6508 166 166 json [{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}] 166 10 234 6509 171 171 json [{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}] 171 10 235 6468 153 153 json [{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 234 6469 154 154 json [{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}] 154 10 234 6470 155 155 json [{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}] 155 10 234 6471 156 156 json [{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}] 156 10 234 6472 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 234 6474 5 5 json [{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:35:55.809Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}] home 11 234 6475 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 234 6476 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 234 6477 162 162 json [{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 234 6478 163 163 json [{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}] 163 10 234 6479 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 234 6480 165 165 json [{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}] 165 10 234 6505 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 234 6482 39 39 json [{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}] digital_glarus_legend 9 234 6483 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 234 6484 156 156 json [{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 234 6491 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 234 6492 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 235 6515 153 153 json [{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}] 153 10 235 6516 153 153 json [{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 235 6517 154 154 json [{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}] 154 10 235 6518 155 155 json [{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}] 155 10 235 6519 156 156 json [{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}] 156 10 235 6520 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 235 6522 5 5 json [{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:36:40.872Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}] home 11 235 6539 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 235 6541 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 235 6542 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 235 6543 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 235 6523 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 235 6524 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 235 6525 162 162 json [{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 235 6526 163 163 json [{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}] 163 10 235 6527 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 235 6528 165 165 json [{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}] 165 10 235 6529 166 166 json [{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 235 6530 39 39 json [{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}] digital_glarus_legend 9 235 6531 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 235 6532 156 156 json [{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 235 6540 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n"}}] Digital Glarus, this... 35 236 6566 154 154 json [{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}}] The current de-facto... 35 236 6571 159 159 json [{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}}] Die alten Fabriken,... 35 236 6584 173 173 json [{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}}] Der erste grosse... 35 236 6585 157 157 json [{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}}] While you can... 35 236 6587 158 158 json [{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}] 158 10 236 6588 31 31 json [{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}] digital_glarus_build_a_tech_valley 9 236 6589 36 36 json [{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}] digital_glarus_why_be_interested_content 9 236 6590 35 35 json [{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}] digital_glarus_why_be_interested 9 236 6591 160 160 json [{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}}] At the moment... 35 236 6592 161 161 json [{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}}] The Swiss IT... 35 236 6593 162 162 json [{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}] 162 10 236 6594 163 163 json [{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}] DIE ERSCHAFFUNG EINES... 35 236 6595 164 164 json [{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}}] Digital Glarus, so... 35 236 6596 159 159 json [{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}] 159 10 236 6597 37 37 json [{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}] digital_glarus_where_we_are 9 236 6598 165 165 json [{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}] EINE NEUE REGION. 35 236 6599 32 32 json [{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}] digital_glarus_build_a_tech_valley_content 9 236 6600 33 33 json [{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}] digital_glarus_a_new_area 9 236 6601 157 157 json [{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}] 157 10 236 6602 166 166 json [{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}] 166 10 236 7723 8 8 json [{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:22:15.298Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}] crowdfunding 11 268 7724 201 201 json [{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}] 201 10 268 7725 202 202 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 268 7730 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 268 7731 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 384 10438 197 197 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}] 197 10 384 10439 198 198 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": ""}, "pk": 198}] 35 384 10440 199 199 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}] 199 10 384 10441 189 189 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}] 189 10 384 10442 10 10 json [{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 384 10443 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 384 10444 190 190 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}] 190 10 384 10445 9 9 json [{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 384 10446 191 191 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}] 191 10 384 10447 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] GLARNER CO-WORKING |... 35 384 10448 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 384 10449 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 266 7507 460 460 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nDigital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n\\n"}, "pk": 153}] Digital Glarus, this... 35 385 10459 154 154 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "pk": 158}] The current de-facto... 35 385 10464 159 159 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nDas momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden. \\n
It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). \\n
\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF). \\n
\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nDer erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "pk": 173}] Der erste grosse... 35 385 10478 157 157 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "pk": 155}] While you can... 35 385 10480 158 158 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}] 158 10 385 10481 31 31 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}] digital_glarus_build_a_tech_valley 9 385 10482 36 36 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}] digital_glarus_why_be_interested_content 9 385 10483 35 35 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}] digital_glarus_why_be_interested 9 385 11012 533 533 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}] 100-days.net/start-digital-glarus 30 400 10649 179 179 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nAt the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "pk": 160}] At the moment... 35 385 10485 161 161 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 161}] GLARNER CO-WORKING |... 35 385 10486 162 162 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}] 162 10 385 10487 163 163 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}] DIE ERSCHAFFUNG EINES... 35 385 10488 164 164 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "pk": 164}] Digital Glarus, so... 35 385 10489 159 159 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}] 159 10 385 10540 187 187 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 267 7689 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 267 7690 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nDie alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "pk": 166}] Die alten Fabriken,... 35 385 11013 15 15 json [{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:41:08.309Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}] jazz 11 400 7764 8 8 json [{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:22:15.384Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}] crowdfunding 11 269 10541 188 188 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 269 7771 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 269 7772 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 270 7812 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 270 7813 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 271 7853 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] The Swiss IT... 35 271 7854 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 386 10512 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 386 10519 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 386 10520 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 387 10553 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] GLARNER CO-WORKING |... 35 387 10554 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nDigital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n\\n"}, "pk": 153}] Digital Glarus, this... 35 388 10594 154 154 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "pk": 158}] The current de-facto... 35 388 10599 159 159 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "pk": 173}] Der erste grosse... 35 388 10613 157 157 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "pk": 155}] While you can... 35 388 10615 158 158 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}] 158 10 388 10616 31 31 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}] digital_glarus_build_a_tech_valley 9 388 10617 36 36 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}] digital_glarus_why_be_interested_content 9 388 10618 35 35 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}] digital_glarus_why_be_interested 9 388 11124 542 542 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}] 542 10 404 11125 544 544 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}] 544 10 404 11126 551 551 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}] 551 10 404 10619 160 160 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "pk": 160}] At the moment... 35 388 10620 161 161 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 161}] GLARNER CO-WORKING |... 35 388 10621 162 162 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T18:45:41.198Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}] 162 10 388 10622 163 163 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}] DIE ERSCHAFFUNG EINES... 35 388 11135 542 542 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}] Jazzband FivePastEight 30 404 11136 182 182 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}] digital_glarus_where_we_are_content 9 404 10623 164 164 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "pk": 164}] Digital Glarus, so... 35 388 10624 159 159 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}] 159 10 388 10625 37 37 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}] digital_glarus_where_we_are 9 388 10626 165 165 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}] EINE NEUE REGION. 35 388 10627 32 32 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}] digital_glarus_build_a_tech_valley_content 9 388 10628 33 33 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}] digital_glarus_a_new_area 9 388 10629 157 157 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}] 157 10 388 10630 166 166 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}] 166 10 388 10631 170 170 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}] 170 10 388 10632 166 166 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "pk": 166}] Die alten Fabriken,... 35 388 11035 532 532 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 389 10650 180 180 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "creation_date": "2015-10-04T17:48:04.828Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001I"}, "pk": 180}] 180 10 389 10651 181 181 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T18:47:28.621Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001J"}, "pk": 181}] 181 10 389 10652 182 182 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}] WIESO WIR? 35 389 11037 544 544 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}] meetup 30 401 11038 181 181 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}] digital_glarus_where_we_are 9 401 10653 183 183 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.
\\n"}, "pk": 183}] Wir, die ungleich... 35 389 10654 184 184 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO GLARUS?
\\n"}, "pk": 184}] WIESO GLARUS? 35 389 10655 185 185 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Telefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 390 10698 197 197 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}] 197 10 390 10699 198 198 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": ""}, "pk": 198}] 35 390 11055 179 179 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}] digital_glarus_why_be_interested 9 401 10700 199 199 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}] 199 10 390 10701 189 189 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}] 189 10 390 10702 10 10 json [{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 390 10703 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 390 10704 190 190 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}] 190 10 390 11040 532 532 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}] 532 10 401 10705 9 9 json [{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 390 10706 191 191 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}] 191 10 390 10707 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] GLARNER CO-WORKING |... 35 390 10708 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 390 10709 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 391 10729 197 197 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}] 197 10 391 10730 198 198 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": ""}, "pk": 198}] 35 391 10731 199 199 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}] 199 10 391 10732 189 189 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}] 189 10 391 10733 10 10 json [{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 391 10734 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 391 10735 190 190 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}] 190 10 391 10736 9 9 json [{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 391 10737 191 191 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}] 191 10 391 10738 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] GLARNER CO-WORKING |... 35 391 10739 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 391 10740 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nDigital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.
\\n\\nThe combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".
\\n\\nThe valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.
\\n\\nIn fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).
\\n\\n\\u00a0
\\n\\n"}, "pk": 153}] Digital Glarus, this... 35 392 10750 154 154 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.
\\n"}, "pk": 158}] The current de-facto... 35 392 10755 159 159 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.
\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.
\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?
\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.
\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.
Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.
\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.
Bist du interessiert?
\\n\\nKontaktiere uns:
\\n\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\n"}, "pk": 173}] Der erste grosse... 35 392 10769 157 157 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.
\\n\\nWe are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.
\\n\\nBut what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.
\\n"}, "pk": 155}] While you can... 35 392 10771 158 158 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}] 158 10 392 10772 31 31 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}] digital_glarus_build_a_tech_valley 9 392 10773 36 36 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}] digital_glarus_why_be_interested_content 9 392 10774 35 35 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}] digital_glarus_why_be_interested 9 392 10775 160 160 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "At the moment we at ungleich are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (meetup alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.
\\n\\nThe great first step we (ungleich) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.
\\n\\nHave you become interested in the project?
\\n\\nContact us at
\\n
\\ndigitalglarus@ungleich.ch // +41 (0) 44 534 66 22
\\u00a0
\\n"}, "pk": 160}] At the moment... 35 392 10776 161 161 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 161}] GLARNER CO-WORKING |... 35 392 10777 162 162 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T18:45:41.198Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}] 162 10 392 10778 163 163 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}] DIE ERSCHAFFUNG EINES... 35 392 11209 177 177 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}] digital_glarus_a_new_area 9 407 10779 164 164 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.
\\n\\nDie Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.
\\n\\nDie Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.
\\n\\nGenaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).
\\n"}, "pk": 164}] Digital Glarus, so... 35 392 10780 159 159 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}] 159 10 392 10781 37 37 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}] digital_glarus_where_we_are 9 392 10782 165 165 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}] EINE NEUE REGION. 35 392 10783 32 32 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}] digital_glarus_build_a_tech_valley_content 9 392 10784 33 33 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}] digital_glarus_a_new_area 9 392 10785 157 157 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}] 157 10 392 10786 166 166 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}] 166 10 392 10787 170 170 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}] 170 10 392 10788 166 166 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte
\\n\\nWir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.
\\n\\nAber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.
\\n"}, "pk": 166}] Die alten Fabriken,... 35 392 11063 544 544 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}] meetup 30 402 11064 533 533 json [{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}] 100-days.net/start-digital-glarus 30 402 11065 15 15 json [{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:41:49.700Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}] jazz 11 402 11066 532 532 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}] 532 10 402 11067 533 533 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}] 533 10 402 11068 537 537 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 393 10808 197 197 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}] 197 10 393 10809 198 198 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": ""}, "pk": 198}] 35 393 10810 199 199 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}] 199 10 393 10811 189 189 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}] 189 10 393 10812 10 10 json [{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 393 10813 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 393 11211 179 179 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}] digital_glarus_why_be_interested 9 407 10814 190 190 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}] 190 10 393 10815 9 9 json [{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 393 10816 191 191 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}] 191 10 393 10817 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] GLARNER CO-WORKING |... 35 393 10818 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 393 10819 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWIESO GLARUS?
\\n"}, "pk": 206}] WIESO GLARUS? 35 394 10829 205 205 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 205}] GLARNER CO-WORKING |... 35 394 10830 208 208 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!
\\n\\nWir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!
\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).
\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).
\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\u00a0
\\nWe found a house to open up the first Co-Working Space in Glarnerland in Schwanden.
\\n\\nIt is a pretty... old house and needs some love and renovation.
\\n\\nWe need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).
\\n\\nWe also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).
\\n\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (> 20'000 CHF).
\\n\\nHelp us to renovate the house, so we can open the Co-Working Space in Schwanden soon!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via meetup.com anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\n.
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\n.
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nWe, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.
\\n"}, "pk": 176}] We, the ungleich... 35 396 10901 177 177 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\n\\u00a0
\\n\\n\\u00a0
\\nWillkommen im Digital Chalet Schwanden.
\\n\\n\\u00a0
\\n\\nIm ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!
\\n\\nWir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.
\\n\\nUnser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.
\\n\\nWir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!
\\n\\nDer Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nUm die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0 findest.
\\n\\nMit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.
\\n\\nWenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!
\\n\\nAuf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via anmeldet, ein Gratisgetr\\u00e4nk bekommt?
\\n\\nAlso, bis bald & Let's Jazz in Glarus!
\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\nWelcome to Digital Chalet Schwanden.\\u00a0
\\n\\nIt is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!
\\n\\nWe want to build an inspiring coworking space - for Glarus, and Glarus economy.
\\n\\nOur coworking space was built before 1890, but its new life as a coworking space began in October 2015.
\\n\\nWe would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!
\\n\\nThe concert is free entrance, please feel free to bring your friends and family.
\\n\\nExplore our coworking space, meet and connect with other great people with great music.
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\u00a0
\\n\\n\\n\\n\\u00a0
\\n\\nTo finance the necessary renovations of our coworking space we launched a crowdfunding campaign.
\\n\\nYou can find it on s.net/start-digital-glarus With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.
\\n\\nIf you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running
\\n\\nWe\\u00a0are pleased to invite you on December 5 at the jazz concert!
\\n\\nAnd one tip from us: RSVP on our , you get a free drink at the venue.
\\n\\nSee you soon & Let's Jazz in Glarus!
\\n\\n\\u00a0
\\nTelefon: +41 (0) 44 534 66 22
\\n\\nEmail: digitalglarus@ungleich.ch
\\n\\nAnschrift: In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n"}, "pk": 199}] Telefon: +41 (0)... 35 412 11340 199 199 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}] 199 10 412 11341 189 189 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}] 189 10 412 11342 10 10 json [{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}] Digital Glarus - Kontakt (digital-glarus-kontakt, de) 16 412 11343 83 83 json [{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}] digital_glarus_contact_content 9 412 11344 190 190 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}] 190 10 412 11345 9 9 json [{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}] Digital Glarus - Contact (digital-glarus-contact, en-us) 16 412 11346 191 191 json [{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2016-01-29T19:50:40.842Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}] 191 10 412 11347 189 189 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": " \\n"}, "pk": 189}] GLARNER CO-WORKING |... 35 412 11348 190 190 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact DIGITAL GLARUS\\n"}, "pk": 190}] Contact DIGITAL GLARUS 35 412 11349 191 191 json [{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Phone: +41 (0) 44 534 66 22
\\n\\nEmail: info@digitalglarus.ch
\\n\\nAddress:\\u00a0 In Der Au 7, \\u00a08762 Schwanden Switzerland
\\n\\n