<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-5230451485417582278</atom:id><lastBuildDate>Sat, 14 Feb 2026 08:53:17 +0000</lastBuildDate><category>PhD</category><category>online communities</category><category>patterns</category><category>workingpaper</category><category>socialNetworkAnalysis</category><category>Actor-Network-Theory</category><category>pattern analysis</category><category>PhD topic</category><category>cultural Differences</category><category>paperWriting</category><category>advise</category><category>emotionalAnalysis</category><category>hofstede</category><category>knowledge sharing</category><category>masterThesis</category><category>papeReading</category><category>participatoryDesignMethods</category><category>warehousing</category><category>book</category><category>community modeling</category><category>communityEvolution</category><category>competence</category><category>dataMining</category><category>develop; db2; sql;</category><category>didactics</category><category>discourseAnalysis</category><category>e-learning communities</category><category>experience sharing</category><category>help</category><category>i*</category><category>informationSystems</category><category>interoperability openCalais Yahoo web4</category><category>learning discipline</category><category>life long learning</category><category>motivation</category><category>mutualAwareness</category><category>network analysis</category><category>ontologies</category><category>pattern repository</category><category>pedagogy</category><category>presentatonSkills</category><category>reputation</category><category>rwth</category><category>science2.0</category><category>sns</category><category>survey</category><category>survival</category><category>text mining</category><category>videolectures</category><category>weird</category><title>technology-with-sense</title><description></description><link>http://technology-with-sense.blogspot.com/</link><managingEditor>noreply@blogger.com (Zinayida Kensche)</managingEditor><generator>Blogger</generator><openSearch:totalResults>31</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-5361401024075138298</guid><pubDate>Tue, 31 Mar 2015 10:37:00 +0000</pubDate><atom:updated>2015-03-31T12:38:53.485+02:00</atom:updated><title>Retrieve an average number of chars in XML column in DB2  </title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div&gt;
In case if you have an XML column &lt;i&gt;content &lt;/i&gt;in your &lt;i&gt;youtTable &lt;/i&gt;and you want to count an average number of characters (or min, max) in the column you can use this code.&amp;nbsp;&lt;/div&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;set schema yourSchema;&lt;/li&gt;
&lt;li&gt;SELECT avg(xtab.length)&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&amp;nbsp; &amp;nbsp;FROM URCH_POSTS,&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;XMLTABLE( &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &#39;for $i in $c&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;     &lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; let $len := fn:string-length($i)&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;     &lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; return &lt;length&gt;{$len}&lt;/length&gt;&#39;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;     &lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; passing youtTable.content as &quot;c&quot;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;     &lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; COLUMNS&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; length INTEGER PATH &#39;.&#39;) &amp;nbsp;&lt;/li&gt;
&lt;li&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;as xtab;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
In 4th line we are starting to create a XMLTABLE&lt;/div&gt;
&lt;div&gt;
In 5th line we start an&amp;nbsp;XQuery&amp;nbsp;(&#39;) for loop over every line of $c where $c is defined in the line 8 (just a value&amp;nbsp;from you column)&lt;/div&gt;
&lt;div&gt;
In 6th line we define our return value. It should be in the XML form. And finish our&amp;nbsp;XQuery&amp;nbsp;(&#39;)&lt;/div&gt;
&lt;div&gt;
In 9th line we start to define columns that will be returned in the XMLTABLE&lt;/div&gt;
&lt;div&gt;
In 10th line we name our column &lt;i&gt;length&lt;/i&gt;, define its type &lt;i&gt;INTEGER &lt;/i&gt;and the path in the resulted from the line 7 XML string.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
In the 11th line we name the output&lt;/div&gt;
&lt;div&gt;
In the 2nd line we retrieve the output as an INTEGER column and therefore we can run corresponding operations.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
One can &amp;nbsp;refine the code by calculating the average in the XQuery directly using &lt;i&gt;fn:avg&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2015/03/retrieve-average-number-of-chars-in-xml.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-2797753265178383419</guid><pubDate>Fri, 04 Jul 2014 14:58:00 +0000</pubDate><atom:updated>2014-07-04T17:00:05.921+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">advise</category><category domain="http://www.blogger.com/atom/ns#">dataMining</category><category domain="http://www.blogger.com/atom/ns#">discourseAnalysis</category><category domain="http://www.blogger.com/atom/ns#">knowledge sharing</category><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">pattern analysis</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">socialNetworkAnalysis</category><title>Patterns of users/communities/media in the Web: list of papers </title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
i want to share a list of papers that are observing user traces in the Web and extract patterns from these. You can add your/other papers by commenting&amp;nbsp;+ i am updating the list. The citation style is not consistent and i&#39;m not guaranteeing that citations are 100% correct (pages, proceedings, etc). If you use them please check and let me know if anything is wrong.&lt;br /&gt;
&lt;br /&gt;
I add as well some comments about the papers.&lt;br /&gt;
&lt;br /&gt;
The last but not least, good luck with your research.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;&lt;li&gt;2006&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;Danyel Fisher, Marc Smith, and Howard T. Welser. 2006. &lt;/span&gt;You Are Who You Talk To: Detecting Roles in Usenet Newsgroups.&lt;span style=&quot;font-size: x-small;&quot;&gt; In&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;em style=&quot;background-color: white; font-size: small;&quot;&gt;Proceedings of the 39th Annual Hawaii International Conference on System Sciences - Volume 03&lt;/em&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&amp;nbsp;(HICSS &#39;06), Vol. 3. IEEE Computer Society, Washington, DC, USA, 59.2-. DOI=10.1109/HICSS.2006.536 http://dx.doi.org/10.1109/HICSS.2006.536 &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The authors define a question-answer person &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;that is characterized by responding to those with low out-degree and infrequently responding to those with higher degree.&amp;nbsp;Depending on a forum topic, the behavior of its users differentiate. Forums devoted to hobby topics admit outsiders though they have cores. While in flame forums people are replying only to well-connected users.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;Ralf Klamma, Marc Spaniol, and Dimitar Denev.&lt;/span&gt; PALADIN: A Pattern Based Approach to Knowledge Discovery in Digital Social Networks.&lt;span style=&quot;font-size: x-small;&quot;&gt; In Proceedings of I-KNOW ’06, 6th International Conference on Knowledge Management, Graz, Austria, September 6 - 8, 2006, J.UCS (Journal of Universal Computer Science) Proceedings, pages 457–464. Springer, 2006. &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Focus of this paper is to create a pattern language that describe patterns of digital traces in Web. After analyzing mailing lists, authors find patterns like no answering person, spammer and troll based on patterns they described with the language.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;2009&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;&lt;span style=&quot;color: black; line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;R. Dean Malmgren, Jake M. Hofman, Luis A.N. Amaral, and Duncan J. Watts. 2009. &lt;/span&gt;Characterizing individual communication patterns.&lt;span style=&quot;font-size: x-small;&quot;&gt; In&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;em style=&quot;color: black; font-size: small; line-height: normal;&quot;&gt;Proceedings of the 15th ACM SIGKDD international conference on Knowledge discovery and data mining&lt;/em&gt;&lt;span style=&quot;color: black; line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&amp;nbsp;(KDD &#39;09). ACM, New York, NY, USA, 607-616. DOI=10.1145/1557019.1557088 http://doi.acm.org/10.1145/1557019.1557088 &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The authors define a model that describe communication patterns (e-mail communication of students); find that users do not change their&amp;nbsp;behaviors&amp;nbsp;over semesters (their belonging to initial clusters are&amp;nbsp;stable) while they differentiate between each other.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: #000066; font-size: x-small;&quot;&gt;Meeyoung Cha, Juan Antonio Navarro Perez, and Hamed Haddadi&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://an.kaist.ac.kr/~mycha/docs/icwsm09data-cha.pdf&quot; style=&quot;text-decoration: none;&quot;&gt;Flash Floods and Ripples: The Spread of Media Content through the Blogosphere.&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;In Proc. of the AAAI Conference on Weblogs and Social Media (ICWSM) Data Challenge Workshop, San Jose, May 2009&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The paper investigates patterns of content diffusion by investigating blog networks. Most of blogs (70%) produces only 30 % of the content. While other blogs serve like mass media. These are community-edited blogs, spammed blogs, microblogging blogs and content aggregators. Two types of content spreading was defined: flash floods like news which quickly distribute but did not appear later and ripples which can be discovered a long time after appearing, like songs.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #000066; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; color: black;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;Fabrício Benevenuto, Tiago Rodrigues, Meeyoung Cha, and Virgílio Almeida. 2009. &lt;/span&gt;Characterizing user behavior in online social networks.&lt;span style=&quot;font-size: x-small;&quot;&gt; In&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;em style=&quot;background-color: white; color: black; font-size: small;&quot;&gt;Proceedings of the 9th ACM SIGCOMM conference on Internet measurement conference&lt;/em&gt;&lt;span style=&quot;background-color: white; color: black;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&amp;nbsp;(IMC &#39;09). ACM, New York, NY, USA, 49-62. DOI=10.1145/1644893.1644900 http://doi.acm.org/10.1145/1644893.1644900  &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
User activities with social networks reveal more often user activities in SN. Moreover sequence of activities were investigated as well to find out when and why users perform some actions, like viewing pictures.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;2012&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;a href=&quot;http://www.bibsonomy.org/author/Wagner&quot; style=&quot;color: #006699; text-decoration: none;&quot;&gt;Claudia Wagner&lt;/a&gt;&lt;span style=&quot;background-color: white; color: #222222;&quot;&gt;,&amp;nbsp;&lt;a href=&quot;http://www.bibsonomy.org/author/Rowe&quot; style=&quot;color: #006699; text-decoration: none;&quot;&gt;Matthew Rowe&lt;/a&gt;,&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.bibsonomy.org/author/Strohmaier&quot; style=&quot;color: #006699; text-decoration: none;&quot;&gt;Markus Strohmaier&lt;/a&gt;, and&amp;nbsp;&lt;a href=&quot;http://www.bibsonomy.org/author/Alani&quot; style=&quot;color: #006699; text-decoration: none;&quot;&gt;Harith Alani&lt;/a&gt;&lt;/span&gt;&amp;nbsp;&lt;a href=&quot;http://www.bibsonomy.org/bibtex/50836292592ae11824292af8410b92b9&quot; style=&quot;color: #006699; text-decoration: none;&quot;&gt;What Catches Your Attention? An Empirical Study of Attention Patterns in Community Forums.&lt;/a&gt;&amp;nbsp;&lt;span class=&quot;authorEditorList&quot; style=&quot;background-color: white; color: #222222;&quot;&gt;.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;ICWSM,&amp;nbsp;The AAAI Press, &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The study focuses on LDA (Latent Dirichlet Allocation) application on investigating forum texts. The authors consider user, focus, post, title and community features to find the most relevant features for each community. They discover differences in features&#39; significance depending on communities. For example, in communities with no specific topics a post should be short to increase a probability to be answered. While in communities with specific topics newbies get replies quiet often.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white; color: #333333; font-family: Arial, Helvetica, sans-serif; line-height: 1.167;&quot;&gt;&lt;a class=&quot;authorPreferredName prefNameLink&quot; href=&quot;http://ieeexplore.ieee.org/search/searchresult.jsp?searchWithin=p_Authors:.QT.Hillmann,%20R..QT.&amp;amp;newsearch=true&quot; style=&quot;background-color: #fafafa; color: #0066a1; cursor: pointer; display: inline-block; font-size: 13px; line-height: 18.016080856323242px; text-decoration: none;&quot; title=&quot;&quot;&gt;Hillmann, R.&lt;/a&gt;&lt;span style=&quot;color: black; line-height: normal;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background-color: #fafafa; color: #666666; font-size: 13px; line-height: 18.016080856323242px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a class=&quot; prefNameLink&quot; href=&quot;http://ieeexplore.ieee.org/search/searchresult.jsp?searchWithin=p_Authors:.QT.Trier,%20M..QT.&amp;amp;newsearch=true&quot; style=&quot;background-color: #fafafa; color: #0066a1; cursor: pointer; display: inline-block; font-size: 13px; line-height: 18.016080856323242px; text-decoration: none;&quot; title=&quot;&quot;&gt;&lt;span class=&quot;&quot; id=&quot;authorAffiliations&quot;&gt;&lt;/span&gt;&lt;span class=&quot;Trier, M.&quot; id=&quot;preferredName&quot;&gt;&lt;/span&gt;Trier, M.&lt;/a&gt;&lt;span style=&quot;color: black; line-height: normal;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&amp;amp;arnumber=6425716&quot; target=&quot;_blank&quot;&gt;Dissemination Patterns and Associated Network Effects of Sentiments in Social Networks&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/xpl/mostRecentIssue.jsp?punumber=6423126&quot; style=&quot;background-color: white; color: #0066a1; cursor: pointer; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 24.012800216674805px; text-decoration: none;&quot;&gt;2012 IEEE/ACM International Conference on&lt;/a&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/xpl/mostRecentIssue.jsp?punumber=6423126&quot; style=&quot;background-color: white; color: #0066a1; cursor: pointer; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 24.012800216674805px; text-decoration: none;&quot;&gt;Advances in Social Networks Analysis and Mining (ASONAM)&lt;/a&gt;&amp;nbsp;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
The authors consider Web communities according to dynamic network motif analysis. They find network patterns like reciprocity (bi-directional connection) and transitivity (a friend of my friend becomes my friend) in BBC and Digg forum discussions. But emotions, positive and negative, expressed in textual messages have no impact on these classical network patterns.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;Cha, M., Benevenuto, F., Haddadi, H., and Gummadi, K. &amp;nbsp;&lt;/span&gt;The World of Connections and Information Flow in Twitter.&lt;span style=&quot;font-size: x-small;&quot;&gt;&amp;nbsp;Systems, Man and Cybernetics, Part A: Systems and Humans, IEEE Transactions on 42, no. 4 (2012): 991–998.&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
The authors divide Twitter users onto three groups: grassroots, evangelists and mass media. The division was done according to the indegree of the users. After that, these users were described, e.g. reciprocity, appearance in events, etc. One of the statement of the paper is that evangelists extend the reach of mass media up to 25 %.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;2013&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;Kizilcec, René F., Piech, Chris, and Schneider, Emily. &lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Deconstructing disengagement: analyzing learner subpopulations in massive open online courses.&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt; 2013. http://doi.acm.org/10.1145/2460296.2460330. &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The main focus of the paper to find patterns of learner engagement in Massive Open Online Courses. Authors use demographic, forum activity, overall experience and some other information for detecting clusters and explain user disengagement by consideration of particular classes.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;2014&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;Ashton Anderson, Daniel Huttenlocher, Jon Kleinberg, and Jure Leskovec&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Engaging with massive online courses.&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;In&amp;nbsp;&lt;/span&gt;&lt;em style=&quot;background-color: white;&quot;&gt;Proceedings of the 23rd international conference on World wide web&lt;/em&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp;(WWW &#39;14). International World Wide Web Conferences Steering Committee, Republic and Canton of Geneva, Switzerland, 687-698. DOI=10.1145/2566486.2568042 http://dx.doi.org/10.1145/2566486.2568042&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Here activities of users in MOOCs were analyzed. The authors define patterns of users trivially by a number of lecture viewing. Later grades of users were compared with viewing of lectures and participating in forums. Two types of users are submitting assignments: hard working students that are engaged in a course all the time and students that have a knowledge of the course and just submit its assignments. Forum participants are mostly consist of forum users. In forum threads users who answer threads are those who are more active in the forum than initiators of the threads. Or are those who have higher grades.&lt;/span&gt;&lt;span style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2014/07/patterns-of-userscommunitiesmedia-in.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-9164950297133457365</guid><pubDate>Fri, 28 Feb 2014 16:59:00 +0000</pubDate><atom:updated>2014-06-27T13:20:39.842+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">communityEvolution</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">survey</category><title>Overview of community evolution research (1)</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
The earliest published work i found about the phases of community evolution belong to &lt;a href=&quot;http://dl.acm.org/citation.cfm?id=900059&quot; target=&quot;_blank&quot;&gt;Toyoda and Kitsuregawa&amp;nbsp;from&amp;nbsp;University of Tokyo&lt;/a&gt;. They differentiate between phases of community evolution: emerge, dissolve, grow and shrink, split, and merge. They use Japanese web archives to prove their rules for each of the evolution phase. &amp;nbsp;They use an extension of HITS to detect communities.&lt;br /&gt;
&lt;br /&gt;
Later &lt;a href=&quot;http://www.nature.com/nature/journal/v446/n7136/abs/nature05670.html&quot; target=&quot;_blank&quot;&gt;Palla and colleagues&lt;/a&gt; present their seminal work with beautiful visualization of different phases that i will add here.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsPyLlHLyEJFBMwuJ0ajHt2ngEJ_Cv9VY9Rf79PmwPdvzKzcnKS2G-jiY0oU0V8tJCmRZfY_pOYKUmAVs7Zl2AWd9lZIGwY7qlC8Y-DOXzIXfUDwZxjQ29kw-iT8RdEELlgJJIKcaB84To/s1600/evolutionPalla.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsPyLlHLyEJFBMwuJ0ajHt2ngEJ_Cv9VY9Rf79PmwPdvzKzcnKS2G-jiY0oU0V8tJCmRZfY_pOYKUmAVs7Zl2AWd9lZIGwY7qlC8Y-DOXzIXfUDwZxjQ29kw-iT8RdEELlgJJIKcaB84To/s1600/evolutionPalla.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;a href=&quot;http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=5562773&amp;amp;tag=1&quot; target=&quot;_blank&quot;&gt;Greene et al.&lt;/a&gt; and &lt;a href=&quot;http://arxiv.org/abs/1210.5171&quot; target=&quot;_blank&quot;&gt;Gliwa et al.&lt;/a&gt; play with same or similar phases using Jaccard Index to define the changes that indicate the move of a community from one phase to the other. &lt;br /&gt;
&lt;br /&gt;
Other research directions investigate community evolution and find feature sets that predict length of community life and its growth [1-5].&lt;br /&gt;
&lt;br /&gt;
But some facts about community evolution still stays unclear: 1) how can one characterize the stages of community life-cycles? 2) what are the changes of community content during its evolution?&lt;br /&gt;
&lt;br /&gt;
Later i will post some results of my research work that answer these questions.&lt;br /&gt;
&lt;br /&gt;
1. L. Backstrom, D. Huttenlocher, J. Kleinberg, and X. Lan. Group formation in large social networks. In&lt;br /&gt;
the 12th ACM SIGKDD international conference, pages 44-54, New York and NY and USA, 2006. ACM.&lt;br /&gt;
&lt;br /&gt;
2. S. R. Kairam, D. J. Wang, and J. Leskovec. The life and death of online groups: predicting group growth&lt;br /&gt;
and longevity. In the Fifth ACM international conference on Web search and data mining, pages&lt;br /&gt;
673-682, 2012.&lt;br /&gt;
&lt;br /&gt;
3. M. K. Goldberg, M. Magdon-Ismail, and J. Thompson. Identifying Long Lived Social Communities Using&lt;br /&gt;
Structural Properties. In IEEE/ACM International Conference on Advances in Social Networks Analysis&lt;br /&gt;
and Mining (ASONAM), pages 647-653, 2012.&lt;br /&gt;
&lt;br /&gt;
4. A. Patil, J. Liu, and J. Gao. Predicting Group Stability in Online Social Networks. In Proceedings of&lt;br /&gt;
the 22nd International Conference on World Wide Web, WWW &#39;13, pages 1021{1030, Republic and&lt;br /&gt;
Canton of Geneva and Switzerland, 2013. International World Wide Web Conferences Steering Committee.&lt;br /&gt;
&lt;br /&gt;
5. E. Zheleva, H. Sharara, and L. Getoor. Co-evolution of social and a liation networks. In Proceedings of the 15th ACM SIGKDD international conference on Knowledge discovery and data mining, KDD &#39;09, pages 1007-1016, New York and NY and USA, 2009. ACM.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2014/02/not-full-overview-of-community.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsPyLlHLyEJFBMwuJ0ajHt2ngEJ_Cv9VY9Rf79PmwPdvzKzcnKS2G-jiY0oU0V8tJCmRZfY_pOYKUmAVs7Zl2AWd9lZIGwY7qlC8Y-DOXzIXfUDwZxjQ29kw-iT8RdEELlgJJIKcaB84To/s72-c/evolutionPalla.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-8312346879184935165</guid><pubDate>Thu, 30 Jan 2014 15:29:00 +0000</pubDate><atom:updated>2014-01-30T16:29:09.983+01:00</atom:updated><title>XML validation / XSL transformation in Eclipse</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Here i share with you how to validate XML or XSLT output with the help of Eclipse.&lt;br /&gt;
&lt;br /&gt;
First of all, check if you have XSL Developer tools. If not, just install new software (Help-&amp;gt;Install New Software) and choose XSL Developer tools.&lt;br /&gt;
&lt;br /&gt;
To check if the XML is valid you need to add the XSD schema to the code and check if it is in the XML Catalog (Windows-&amp;gt;Perspective-&amp;gt;XML-&amp;gt;XML Catalog). After you add/find the schema in the catalog, just click the right button on the file and choose Validate.&lt;br /&gt;
&lt;br /&gt;
The alternative is to select all files (XML, XSD) and choose Validate (from the right click menu again).&lt;br /&gt;
&lt;br /&gt;
To check the output of the XML file applying XSLT you need to run the XSL transformation of the XSL/XSLT file and choose the file under which you want to run the transformation.&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
if you need to validate xhtml website use the following attributes in the html tag&lt;br /&gt;
xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &lt;br /&gt;
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&lt;br /&gt;
xsi:schemaLocation=&quot;http://www.w3.org/1999/xhtml&lt;br /&gt;
http://www.w3.org/2002/08/xhtml/xhtml1-transactional.xsd&quot; &lt;br /&gt;
&lt;br /&gt;
The screenshots will be added.&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2014/01/xml-validation-xsl-transformation-in.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-7571229419285394916</guid><pubDate>Fri, 20 Dec 2013 13:58:00 +0000</pubDate><atom:updated>2013-12-20T15:00:26.920+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Actor-Network-Theory</category><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">warehousing</category><category domain="http://www.blogger.com/atom/ns#">workingpaper</category><title>A Datawarehouse for Social Media for Learning</title><description>&lt;br /&gt;
Recently i started to redesign our &lt;a href=&quot;http://www.slideshare.net/klamma/the-medi&quot;&gt;Mediabase&lt;/a&gt;, the database that includes data crawled from social media. A data warehouse model is more convenient for analyzing social media. Here i&#39;m going to explain why. &lt;br /&gt;
&lt;br /&gt;
All in all, the Mediabase design is not wrong. Behind it, its creators put the actor network theory (ANT) that claims all items in a system as actors. The following picture will help to understand how this idea applied to the Mediabase. &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGMeu0-opYuTYRw2064VUi7x3BIFolavnI_sCdnrGEdjNxOo8OJcP8PHdYb9X55LtuGvXKf8XEddVLNc608iR0r5wBHIE4s9aTcGAYzyLw8qhLuCl_UCkxd6Pq_jZtJD5FCtRtUHakQ2mb/s1600/ANTasAStar.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGMeu0-opYuTYRw2064VUi7x3BIFolavnI_sCdnrGEdjNxOo8OJcP8PHdYb9X55LtuGvXKf8XEddVLNc608iR0r5wBHIE4s9aTcGAYzyLw8qhLuCl_UCkxd6Pq_jZtJD5FCtRtUHakQ2mb/s480/ANTasAStar.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The Mediabase was an empty database with set of defined tables. Now it is filled on a regular basis with the help of watcher scripts. A watcher crawls one of &lt;i&gt;Media&lt;/i&gt;: blogs, feeds, podctasts, e-mail archives. The traces left in a medium by its users consist of texts, tags or labels, urls and many other components. We collect these &lt;i&gt;Artifacts &lt;/i&gt;in the Mediabase to be able later to apply them for different analytic tasks. Moreover, we examine users, e.g. e-mail senders, blog owners, forum posts authors and others. We can apply different analysis investigating changes of behaviors of uniquely defined users. Such an analysis shows activity patterns of users, their roles in communities, their interests and their closed peers in networks. &lt;br /&gt;
&lt;br /&gt;
The &lt;i&gt;Artifact &lt;/i&gt;and &lt;i&gt;Medium &lt;/i&gt; are actors according to the ANT. The &lt;i&gt;Community&lt;/i&gt;, the &lt;i&gt;Agent &lt;/i&gt;(or User) and the &lt;i&gt;Process&lt;/i&gt; are actors as well. All they have an influence on activities in online networks. That is why the Mediabase aim is to capture these changes. &lt;br /&gt;
&lt;br /&gt;
But why do we need to collect all these data? Let us follow a teacher that aims to understand what problems do students have by solving an exercise. He can try to find an answer by observing online student communities and finding answers to the following questions: &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;Are there any questions about the exercise?&lt;/i&gt; &lt;/li&gt;
&lt;li&gt;&lt;i&gt;How many people have viewed the topic? &lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;How many people have took part in the discussions? &lt;/i&gt; &lt;/li&gt;
&lt;li&gt;&lt;i&gt;What resources were used? How active are the students that talk about the exercise? &lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;What are the sentiments and intents expressed in the discussions?&lt;/i&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
To find the answers can be time-consuming and impossible manually (depending on the number of students and the number of involved online communities). 1) Communities have unique structures: the positions of users in structures specify roles that represent community experts, communicative members and brokers which are members connecting several groups. 2) Huge amount of texts include relevant and irrelevant for learning information. It may include interesting explanations and links but can be overlooked by a person.&lt;br /&gt;
&lt;br /&gt;
So the help of machines is needed not only because the communities are big. We are talking about situations when teachers, managers or stakeholders of online learning communities want to get answers to &lt;i&gt;different&lt;/i&gt; questions about &lt;i&gt;different&lt;/i&gt; time intervals of their communities. &lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiARbrgdKzs2DFyZTm5E7TmY3Ps4KcfGLSCjPDyYVunhuSOZLhvhJ18g6jod56ENEOe5ofjNt-XMBzQyUHcmvvX8FVeKSOXPN67A9WGta6zLq6xWpHCO-Yu-A-__K5F5dvhlk2fk9V2Se8-/s1600/dataCube_new.jpg&quot; imageanchor=&quot;1&quot; style=&quot;float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiARbrgdKzs2DFyZTm5E7TmY3Ps4KcfGLSCjPDyYVunhuSOZLhvhJ18g6jod56ENEOe5ofjNt-XMBzQyUHcmvvX8FVeKSOXPN67A9WGta6zLq6xWpHCO-Yu-A-__K5F5dvhlk2fk9V2Se8-/s300/dataCube_new.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Therefore, we need a database model that &lt;i&gt;provides the right information in the right place at the right time with the right cost in order to support the right decision&lt;/i&gt;. In the traditional databases we get a data item by specifying two parameters, e.g. specifying the &lt;i&gt;time &lt;/i&gt;and the &lt;i&gt;medium &lt;/i&gt;parameters we get &lt;i&gt;posts &lt;/i&gt;appeared in the &lt;i&gt;medium &lt;/i&gt; in the given &lt;i&gt;time &lt;/i&gt;period. Or we get &lt;i&gt;users &lt;/i&gt;that were active at the given &lt;i&gt;time &lt;/i&gt;period in the given &lt;i&gt;medium&lt;/i&gt;. But more sophisticated queries require some time to execute because of joins, etc. Moreover, analyzing communities researchers have to mine data and afterwards make some experiments to find patterns. &lt;br /&gt;
&lt;br /&gt;
To simplify the life cf researchers, I propose a data cube that is a multidimensional model with a set of measures - facts. We can navigate over the data cube by specifying dimensions that correlate with &lt;i&gt;Actors &lt;/i&gt;of ANT model. Particularly, we can choose a &lt;i&gt;User &lt;/i&gt; that posted at a &lt;i&gt;Time &lt;/i&gt; in a &lt;i&gt;Medium &lt;/i&gt;so that we get the output that characterize the &lt;i&gt;User &lt;/i&gt;in the given &lt;i&gt;Time &lt;/i&gt;point in the given &lt;i&gt;Medium&lt;/i&gt;. But in this case the output includes different measures captured by mining social networks, texts or user activities.&lt;br /&gt;
&lt;br /&gt;
On the following picture you can see the hierarchy of dimensions to the proposed data cube. The construction of the Mediabase cube is still not ready, as it should reflect all actors we find important in the online networks. Thus I still need to elaborate &lt;i&gt;Process&lt;/i&gt;, &lt;i&gt;Agent(types)&lt;/i&gt;,&lt;i&gt; Community(types)&lt;/i&gt;, &lt;i&gt;Artifacts&lt;/i&gt; dimensions.  &lt;br /&gt;
&lt;div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKH9WfMszNiGE9un82MfocVdB9KVpeyQWrdeIUmjXtS8G99UaSORNGTiqjFvw8Z3NOMFjo3oiAOuBnkMKed9jp0FmErtlS_J45XSuFbtAU15iIc9p7mKvSUGf4b45QrSBPhGDF9g-AQfOi/s1600/dataWarehouseHierarchy.jpg&quot; imageanchor=&quot;1&quot; style=&quot;float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;br /&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKH9WfMszNiGE9un82MfocVdB9KVpeyQWrdeIUmjXtS8G99UaSORNGTiqjFvw8Z3NOMFjo3oiAOuBnkMKed9jp0FmErtlS_J45XSuFbtAU15iIc9p7mKvSUGf4b45QrSBPhGDF9g-AQfOi/s500/dataWarehouseHierarchy.jpg&quot; /&gt;&lt;/div&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2013/12/a-datawarehouse-for-social-media-for.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGMeu0-opYuTYRw2064VUi7x3BIFolavnI_sCdnrGEdjNxOo8OJcP8PHdYb9X55LtuGvXKf8XEddVLNc608iR0r5wBHIE4s9aTcGAYzyLw8qhLuCl_UCkxd6Pq_jZtJD5FCtRtUHakQ2mb/s72-c/ANTasAStar.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-9207017816914371090</guid><pubDate>Thu, 05 Sep 2013 10:58:00 +0000</pubDate><atom:updated>2013-09-05T13:12:06.134+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">life long learning</category><category domain="http://www.blogger.com/atom/ns#">motivation</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><title>Motivation for Life Long Learning</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Recently i read nice report about the &lt;a href=&quot;http://www.gencat.cat/salut/ccfcps/html/ca/dir3612/docs/thefuturelearning.pdf&quot; target=&quot;_blank&quot;&gt;Future of Learning&lt;/a&gt;. Here are some thoughts i got during reading this nice piece.&lt;br /&gt;
&lt;br /&gt;
In 2020 European society will require 16 millions more qualified workers than in 2010. Moreover, to stay competitive in crisis and technological changes, European society need to grow the number of university graduates. In the time of globalization Europe can not compete with growth of China or India economies. Therefore, Europe need to find ways to save its share of the global wealth through the excellence and innovations.&lt;br /&gt;
&lt;br /&gt;
The number of older people is growing and the number of younger people decreases. The labor force is aging and half more people over 65 than now.will live in 2050. Therefore, older people need as well to have opportunities to improve their knowledge and increase qualification degrees.&lt;br /&gt;
&lt;br /&gt;
Europe attracts immigrants to get enough labor force. Even so immigrants usually stay unemployed that indicates the need of immigrants and their children to be supported in education and orientation in new country.&lt;br /&gt;
&lt;br /&gt;
Significant impact of technology is/will change job structure and requirements. It dictates new skills required for jobs, in most cases ICT skills. We can acquire new skills in schools, universities, at training and workshops. However, costs and requirements of rapid learning from the industry increase the preferences for virtual way of learning.&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;In the future immigrants and their children can learn languages in the country where they immigrate on fly using ubiquitous computing.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;In the future aging workers may acquire new skills at working place and stay professionally fit.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;In the future people with medium or high qualifications but obsolete professions can apply their skills for other kinds of job.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;In the future people with low qualification can study and learn new jobs staying at home.&lt;/li&gt;
&lt;/ul&gt;
Virtual learning influence not only which way we learn but how we learn. The learning becomes self-oriented, collaborative and open to the society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2013/09/motivation-for-life-long-learning.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-7530983904695026283</guid><pubDate>Fri, 05 Jul 2013 09:23:00 +0000</pubDate><atom:updated>2013-09-12T09:56:03.553+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">informationSystems</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">warehousing</category><title>Data Warehouse in Simple English</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;If you need&amp;nbsp;&#39;&#39;the right information in the right place at the right time with the right cost in order to support the right decision&#39;&#39;&lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=5230451485417582278#1&quot;&gt;[1]&lt;/a&gt; from&amp;nbsp;, the data warehouse comes into play. So what does right information mean? The knowledge workers, like accountants, project managers and data analysts, need a support to make decisions and data warehouse provide such a support for all types of knowledge workers on the same data.&lt;br /&gt;
&lt;br /&gt;
How do the developers manage to use same data and support different tasks? I know two classical approaches to design a data warehouse: top-down and bottom-up approaches. In the top-down approach &lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=5230451485417582278#1&quot;&gt;[2]&lt;/a&gt;, all the data and its statistics are stored and parts of it are copied in data marts (pieces of data) for the further use. The approach is time-consuming and costly as by designing a data warehouse model one have to reconcile structure of sources. The bottom-up approach &lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=5230451485417582278#1&quot;&gt;[3]&lt;/a&gt; is less costly and focus on creating rapid solutions with less redundant data and small data marts. But the approach consider just one or a few tables that are fact tables and include integrated data from data sources while all other data land in data marts. The flaw of the bottom-up approach lies in its inflexibility according to the changes of requirements of data warehouse users.&lt;/div&gt;&lt;br /&gt;
In the top-down approach you extract the data, cleaned it, transformed it according to your schemata and uploaded into the global warehouse. You can use some pieces of the data for some statistics (in Operation Data Store for example) but generally all data you need to use for the applications (Data mining, Data visualization, Planning, Prediction) you copied in additional data marts. A good example of this design is taken from &lt;a href=&quot;http://datacommanders.com/&quot;&gt;http://datacommanders.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://datacommanders.com/wp-content/uploads/2013/04/data-warehouse-and-etl-what-is-etl.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://datacommanders.com/wp-content/uploads/2013/04/data-warehouse-and-etl-what-is-etl.png&quot; width=&quot;95%&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
In the bottom-up approach after the extraction and transformation of the data, you store it in global warehouse as following: one or several fact tables and its dimensions - so global warehouse information model looks like a star. &lt;br /&gt;
A good example of it taken from the &lt;a href=&quot;http://www.databaseanswers.org/&quot;&gt;www.databaseanswers.org&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://www.databaseanswers.org/data_models/census/images/data_warehouse_model.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://www.databaseanswers.org/data_models/census/images/data_warehouse_model.gif&quot; width=&quot;95%&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;1&quot;&gt;[1] &lt;a href=&quot;http://books.google.com.ua/books/about/Fundamentals_of_Data_Warehouses.html?id=TNp6cgAACAAJ&amp;amp;redir_esc=y&quot; target=&quot;_blank&quot;&gt;Matthias Jarke, Maurizio Lenzerini, Yannis Vassiliou, Panos Vassiliadis. Fundamentals of Data Warehouses. Springer, Dec 1, 2010&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;2&quot;&gt;[2] William H. Inmon(1996). Building the Data Warehouse. John Wiley &amp;amp; Sons, ISBN&lt;/div&gt;&lt;div id=&quot;3&quot;&gt;[3] Ralph Kimball (1996). The Data Warehouse Toolkit. Wiley.&lt;br /&gt;
&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; scrolling=&quot;no&quot; style=&quot;border:0px&quot; src=&quot;http://books.google.de/books?id=95Rg5K516mYC&amp;lpg=PP1&amp;dq=fundamentals%20in%20datawarehouse&amp;hl=de&amp;pg=PR15&amp;output=embed&quot; width=500 height=500&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2013/07/data-warehouse-in-simple-english.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-8966883436482847346</guid><pubDate>Tue, 28 May 2013 09:02:00 +0000</pubDate><atom:updated>2013-06-11T10:54:22.796+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">develop; db2; sql;</category><title>Deleting duplicates in the DB2 with the IBM Control Center</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Sometimes you have to do just a small task on the database and if you don&#39;t have/want to use a command line, you can use an interface like the Control Center.&lt;br /&gt;
&lt;br /&gt;
If you have tables with duplicate values in the DB2 and the tables have primary keys, let say ID, it is easy to avoid the duplicates.&lt;br /&gt;
&lt;br /&gt;
First copy the table. Use the&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;create table message_table_copy ...&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;query and check that all fields you want to copy have the same types.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
Than you can load the data into the&amp;nbsp;&lt;i&gt;message_table_copy. &lt;/i&gt;The table from which you are coping and the table to which you are coping, in this case &amp;nbsp;&lt;i&gt;message_table &lt;/i&gt;and&amp;nbsp;&lt;i&gt;message_table_copy &lt;/i&gt;should belong to the same schema.&amp;nbsp;Choose &lt;i&gt;Load&lt;/i&gt; (right-click menu) -&amp;gt; Add data -&amp;gt; from cursor. Than you can choose the data you want to copy (&lt;i&gt;Select * from&amp;nbsp;message_table&lt;/i&gt; if you copy the whole table) and the folder where the status information have to be stored (usually on the server, so choose the home directory of your db2 instance on the server). All other tabs are default except of the tab where you have to choose to perform the task immediately or to add in the task manager.&lt;br /&gt;
&lt;br /&gt;
Now you can check if all values were copied. You can just count the number of entries in both tables:&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;select count(*) from message_table&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;If everything is ok, look for duplicates. Let say, you have &lt;i&gt;message_id&lt;/i&gt;&amp;nbsp;which should be used to define duplicates. Here is the SQL query to delete the duplicates from the&lt;i&gt; message_table&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;delete from message_table where id in&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (SELECT MIN(ID) FROM&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;message_table&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;GROUP BY message_id&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HAVING&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;COUNT(message_id) &amp;gt;1)&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;&amp;nbsp;)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
The query searches for entries with same &lt;i&gt;message_id&lt;/i&gt; (INT, SMALLINT, BIGINT) and chooses the id ( you can choose between&amp;nbsp;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;MAX(id)/MIN(id)&lt;/span&gt;) that is used for deleting.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2013/05/deleting-duplicates-in-db2-with-ibm.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-8264875970165971845</guid><pubDate>Wed, 26 Sep 2012 09:25:00 +0000</pubDate><atom:updated>2012-09-26T11:30:10.799+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cultural Differences</category><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">paperWriting</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">PhD topic</category><category domain="http://www.blogger.com/atom/ns#">workingpaper</category><title>Users editing articles in several Wikipedia </title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;I was wondering about contributors who are posting in several Wikipedia, Who are they? What country are they from?&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;
&lt;/span&gt; Surely English Wikipedia is a leader in the number of contributors, articles, articles edits and number of users who contribute both in English and any other Wikipedia is high. I never doubt it. What about other Wikipedia? Looking at Wikipedia we can find which nations interact more often with each other than others.&lt;br /&gt;
&lt;br /&gt;
A bit more than 1% of all contributors from our &lt;a href=&quot;http://www.blogger.com/blogger.g?blogID=5230451485417582278#dataset&quot;&gt;data set&lt;/a&gt; editing/creating articles in 2 Wikipedia. Only 12 of 4,919,026 users have ever worked in 5 Wikipedia.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCe9rFpPgMbXH4e9YOBbqQiqSgD2XgfJzIa11qVovsZT36MFqXjscAcUvF-xh9V6_aU0dhUg4PXEYkomr48A1Gx1uFy74Li4xqN2F0xAyqUzQWTt4OdXdB1x1d2lJr6CtCZXbxErJyreEU/s1600/crossWikipediaUsers.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCe9rFpPgMbXH4e9YOBbqQiqSgD2XgfJzIa11qVovsZT36MFqXjscAcUvF-xh9V6_aU0dhUg4PXEYkomr48A1Gx1uFy74Li4xqN2F0xAyqUzQWTt4OdXdB1x1d2lJr6CtCZXbxErJyreEU/s640/crossWikipediaUsers.jpg&quot; width=&quot;550&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br class=&quot;Apple-interchange-newline&quot; /&gt;Most of the cross-Wikipedia authors are registered; therefore, we cannot identify the place where the authors come from. A majority of the cross-Wikipedia anonymous authors are coming from Germany (15%) and the United States (11%)
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJVXnzOUcwhNlSYr8SSp4EDD22aAYv35jRYrBScHa4yjTz2G9g4EAZDvzPWtujLtdooJEluUdNC6ZjKvooaoSMzFcXeLAu0Vw0t4jHwNBPa3vYP2V_WeejatWbeMqeSHMv-E2OgAe5RQGB/s1600/geographicalLocationOfAnonymousContributors.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;348&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJVXnzOUcwhNlSYr8SSp4EDD22aAYv35jRYrBScHa4yjTz2G9g4EAZDvzPWtujLtdooJEluUdNC6ZjKvooaoSMzFcXeLAu0Vw0t4jHwNBPa3vYP2V_WeejatWbeMqeSHMv-E2OgAe5RQGB/s640/geographicalLocationOfAnonymousContributors.jpg&quot; width=&quot;580&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;The cross-&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 12pt; line-height: 200%; text-align: left;&quot;&gt;Wikipedia authors contributing to more than 3 Wikipedia are summarized in following table.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdrK9Efpc-BTPoxgsLKYh-_5pz6Lbv430sQukd7s3rlR62RFwH9r9DLMZ1CGBpIdfs1Kh6hECapv5F2XWRN_sNBZpS3fXeAoWY6RB_hGUPNKr9bDjdt8lZSLSMXwXZMY5YPcCIcvXJwzf_/s1600/cross3WikipediaUsers.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdrK9Efpc-BTPoxgsLKYh-_5pz6Lbv430sQukd7s3rlR62RFwH9r9DLMZ1CGBpIdfs1Kh6hECapv5F2XWRN_sNBZpS3fXeAoWY6RB_hGUPNKr9bDjdt8lZSLSMXwXZMY5YPcCIcvXJwzf_/s400/cross3WikipediaUsers.jpg&quot; width=&quot;385&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 12.0pt; line-height: 200%; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: DE;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
We find 1,718 contributors that did 618,584 edits. In the table we summarize the contributors work: the number of edits and the number of edits per cross-Wikipedia user. Cross-Wikipedia users contributing in 3 Wikipedia, are participating often in Russian, Japanese and any other Wikipedia from the set. The highest activity (more than 100 edits per cross-Wikipedia user) was shown in Macedonian, Russian, Catalan and Arabic Wikipedia instances. Generally cross-Wikipedia users are more active than contributors working only in one Wikipedia. &lt;br /&gt;
&lt;br /&gt;
&lt;h4 id=&quot;dataset&quot;&gt;
Data set:&lt;/h4&gt;
&lt;br /&gt;
We analyzed the Wikipedia data starting from June, 30th 2001 till January, 1 2009 and divide this time into 16 equal time intervals to keep visualizations simple. The period of the 1st interval is from June 30th, 2001 till December 31st, 2001, the period of the 2nd interval is from January 1st, 2002 till June, 29, 2002 and so on. Because of hardware limitations, we did not consider all revisions done in the period for constructing author networks. As Wikipedia instances have different number of articles, we choose a number of revisions depending on the number of all revisions in the instances. The revisions are picked up along an article timeline. The overall structure of the Wikipedia network and activities of Wikipedians are not impaired by this data reduction. Finally, we got datasets with number of revisions comparable to each other.&lt;br /&gt;
&lt;br /&gt;
We chose both European and Asian Wikipedia. The instances were selected according to their size: large European Wikipedia (Spanish and Russian), large Asian Wikipedia (Japanese and Turkish), small European Wikipedia (Bulgarian, Catalan, Danish, Greek, Macedonian, and Ukrainian) and small Asian Wikipedia (Arabic, Hindi, and Korean). The list of small European Wikipedia list includes Wikipedia of different Slavic languages (Bulgarian, Macedonian, Ukrainian) and the Catalan Wikipedia, the Wikipedia of a minority language group in Spain. &lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/09/users-editing-articles-in-several.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCe9rFpPgMbXH4e9YOBbqQiqSgD2XgfJzIa11qVovsZT36MFqXjscAcUvF-xh9V6_aU0dhUg4PXEYkomr48A1Gx1uFy74Li4xqN2F0xAyqUzQWTt4OdXdB1x1d2lJr6CtCZXbxErJyreEU/s72-c/crossWikipediaUsers.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-1147661189958801669</guid><pubDate>Mon, 20 Aug 2012 08:14:00 +0000</pubDate><atom:updated>2012-08-20T10:14:35.805+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cultural Differences</category><category domain="http://www.blogger.com/atom/ns#">hofstede</category><category domain="http://www.blogger.com/atom/ns#">paperWriting</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">PhD topic</category><category domain="http://www.blogger.com/atom/ns#">socialNetworkAnalysis</category><category domain="http://www.blogger.com/atom/ns#">workingpaper</category><title>Cultural analysis of Wikipedia</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 21.3pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;I&#39;m working under the paper devoted to cultural differences in Wikipedia. Therefore, i have done some literature research where i found some interesting resources devoted to this topic. Following I&#39;m sharing them with you.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 21.3pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Wikipedia has
been found in early 2001 and since then has been one of the most successful and
referenced source of knowledge with a qualitative information&lt;a href=&quot;file:///C:/zina/workspace/papers/AWGS-2012-024/CultureOfWikis08.08.docx#_ftn1&quot; name=&quot;_ftnref1&quot; title=&quot;&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 115%;&quot;&gt;[1]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;. The
open Encyclopedia can include opinions of any person wherever she geographically
located. Wikipedia is organized in such a way that any culture can open its
Wikipedia and use its own language for providing content. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 21.3pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;According to
Hofstede (1991) &quot;culture is the collective programming of the mind which
distinguish[sic] one group of people from the other&quot;(Hofstede, 1991). Cultural
patterns together create a complex culture structure that can be examined
through studying cultural dimensions (Hall, 1976; 1983; Hofstede, 1991;
Kluckhohn and Strodbeck 1961; Trompenaars &amp;amp; Hampden-Turner, 1998). Hofstede
defined 5 dimensions of culture and calculate empirically dimension rates of
many nationalities in the World. The dimensions has become recently a standard
framework for cross-cultural research projects. Some works about Wikipedia
cross-cultural nature use Hofstede’s dimensions. Courtesy behaviors in the
Eastern Wikipedia are explained by high value of power distance and preferable
collective work (Hara et al., 2010). &amp;nbsp;They claimed that authors from Western Wikipedia
have more conflict and disagreement behaviors. Moreover, they argue that patterns
of author behavior differ in the size of Wikipedia. They analyzed only 4 Wikipedia
of various sizes focusing on differences between eastern and western cultures. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 21.3pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Hofstede’s
dimensions were used in measuring the quality of the article &lt;i&gt;game&lt;/i&gt; (Pfeil et al., 2006). The researchers
analyzed the Wikipedia article from French, German, Japanese and Dutch Wikipedia.
They found that even if cultures have positively correlated Hofstede&#39;s
dimensions, Wikipedia quality criteria of considered Wikipedia are different. More
evidence of cultural influence in Wikipedia was found by Pembe &amp;amp; Bingol (2006)
during comparing linguistic structures of English and German Wikipedia. Although
the English Wikipedia is larger; the German Wikipedia included at that point more
words associated with &lt;i&gt;family&lt;/i&gt; concept.
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 11.35pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Rask
(2007) analyzed differences between aspects of Wikipedia in developed and
developing countries. He considered the number of contributors and edits per
articles from different countries and concluded that richer countries profit
more on the knowledge shared in Wikipedia. Rask compared different Wikipedia
from the economical point of view using the human development index&lt;a href=&quot;file:///C:/zina/workspace/papers/AWGS-2012-024/CultureOfWikis08.08.docx#_ftn2&quot; name=&quot;_ftnref2&quot; title=&quot;&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 115%;&quot;&gt;[2]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; in
his observations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 11.35pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;The
attempts to define cultural patterns include examination of Wikipedia user
talks and talk contents, contents of articles and numbers of edits. In this
paper we focus on a still untouched area for cultural patterns in Wikipedia. We
observe author networks over the course of time and differentiate between
registered and anonymous authors. Moreover, the geographical location of
authors and their migrations to other countires is taken into consideration.
Furthermore, we find Wikipedia users contributing to several Wikipedia and
analyze their behavior and geographical location. These and other findings
devoted to Wikipedia growth and editing behaviors are used to define cultural
patterns.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 11.35pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Voss
(2005) was the first who as many other researchers analyzed fundamentals of
Wikipedia and their networks. His main focus was on the German Wikipedia and
its graph of links. He showed that the Wikipedia network is scale-free (Barabási
et al., 1999). Moreover, Voss found that the number of user talk pages is much
higher in Japanese than in German, Danish or Croatian Wikipedia although he left
questions concerning cultural differences of Wikipedia unanswered.&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 11.35pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;In
the next section, we consider name existing research works examining Wikipedia
networks. Later, we present our methodology, and afterwards explain the data
set we are using. The results include findings about authors, their behaviors,
author networks, and articles. The paper concludes with a discussion and an outlook
on future work.&lt;span style=&quot;font-size: small;&quot;&gt;&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; text-align: justify; text-indent: 11.35pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Dynamic
development of Wikipedia network&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: 200%;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Dynamic development
of networks was in the focus by many works (Klamma and Haasler, 2008a, 2008b; Capocci
et. al, 2006, Zlatic et. al, 2006). Klamma and Haasler (2008a, 2008b)
visualized different Wiki projects (Berlin Wiki, Google Wiki, Aachen Wiki) and observed
their changes over the course of time. They found that registered users often
serve as connectors in networks of anonymous users. Moreover, they showed that
a tiny number of Wikipedia contributors created or edited the majority of
articles. Klamma and Haasler created Wikiwatcher tool that can be used for
retrieving Wikipedia data, visualize their networks and calculate simple SNA
values. &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Analysis of
Wikipedia as complex networks reveals that the growth of Wikipedia happens
according to the preferential attachment (Barabási et al, 1999). Capocci et. al,
(2006) showed similarities of evolution patterns of complex networks of WWW and
different Wikipedia: new nodes are more probably connected with existed nodes
with high degrees of connections. Zlatic et. al (2006) examined 11 Wikipedia
networks of articles. The researchers concentrated on article network measures
and its comparison. They argue that the growth of Wikipedia networks is unique
for different language versions of Wikipedia.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%; text-align: left;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span style=&quot;line-height: 200%; text-indent: -14.2pt;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif; font-size: large;&quot;&gt;References:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Barabási,
A.-L., Réka A., Hawoong J. (1999): Mean-field theory for scale-free random
networks.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot; class=&quot;MyStyle&quot; style=&quot;line-height: 200%; margin-left: 14.2pt; text-indent: -14.2pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Hall, E.T. (1976). Beyond culture. Garden City, New York: Doubleday.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align=&quot;left&quot; class=&quot;MyStyle&quot; style=&quot;line-height: 200%; margin-left: 14.2pt; text-indent: -14.2pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Hall, E.T. (1983). The dance of life. Garden City, New York: Doubleday.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Hara,
N., Shachaf, P., &amp;amp; Hew, K. (2010). Cross cultural analysis of the Wikipedia
community. &lt;i&gt;Journal of the American Society of Information Science and
Technology, 61&lt;/i&gt;(10), 2097‐2108.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Hofstede,
G.H. (1991). Cultures and organizations: Software of the mind. London: McGraw Hill.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Kluckhohn, C., &amp;amp;
Strodbeck, F.L. (1961). Variation in value orientation. Evanson, IL: Row and
Peterson.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;Pembe, F., &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt; Bingol, H. (2006). Complex networks in
different languages: A study of an emergent multilingual encyclopedia, &lt;/span&gt;&lt;i style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;Proceedings of Sixth
International Conference &lt;/span&gt;&lt;/i&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;on Complex Systems, June 25-30, 2006, Boston, MA, USA.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;span style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;Pfeil, U., Zaphiris, P., &amp;amp; Ang, C.S. (2006). &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;Cultural differences in
collaborative authoring of Wikipedia. Journal of Computer-Mediated
Communication, 12(1), article 5.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span style=&quot;font-size: 12pt; line-height: 200%; text-indent: -14.2pt;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Rask, M.(2007), The Richness and Reach of Wikinomics: Is the Free
Web-Based Encyclopedia Wikipedia Only for the Rich Countries?. Proceedings of
the Joint Conference of The International Society of Marketing Development and
the Macromarketing Society, June 2-5, 2007.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Trompenaars,
F., &amp;amp; Hampden-Turner. C. (1998). Riding the waves of culture: Understanding
cultural diversity in global business. New York: McGraw-Hill.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 200%; margin-bottom: .0001pt; margin-bottom: 0cm; margin-left: 14.2pt; margin-right: 0cm; margin-top: 0cm; mso-layout-grid-align: none; text-autospace: none; text-indent: -14.2pt;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 12pt; line-height: 200%;&quot;&gt;&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;Voß, J. (2005). Measuring Wikipedia, Proceedings of the 10th ISSI
2005 Conference, July 24-28, 2005, Stockholm, Sweden, 1-12.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;hr align=&quot;left&quot; size=&quot;1&quot; width=&quot;33%&quot; /&gt;



&lt;div id=&quot;ftn1&quot;&gt;

&lt;div class=&quot;MsoFootnoteText&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;a href=&quot;file:///C:/zina/workspace/papers/AWGS-2012-024/CultureOfWikis08.08.docx#_ftnref1&quot; name=&quot;_ftn1&quot; title=&quot;&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10pt; line-height: 115%;&quot;&gt;[1]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang=&quot;EN-US&quot;&gt; &lt;a href=&quot;http://www.nature.com/nature/journal/v438/n7070/full/438900a.html&quot;&gt;http://www.nature.com/nature/journal/v438/n7070/full/438900a.html&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;ftn2&quot;&gt;

&lt;div class=&quot;MsoFootnoteText&quot;&gt;
&lt;span style=&quot;font-family: Georgia, Times New Roman, serif;&quot;&gt;&lt;a href=&quot;file:///C:/zina/workspace/papers/AWGS-2012-024/CultureOfWikis08.08.docx#_ftnref2&quot; name=&quot;_ftn2&quot; title=&quot;&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span class=&quot;MsoFootnoteReference&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10pt; line-height: 115%;&quot;&gt;[2]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang=&quot;EN-US&quot;&gt; &lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;a href=&quot;http://hdr.undp.org/en/statistics/hdi/&quot;&gt;&lt;span lang=&quot;DE&quot;&gt;http://hdr.undp.org/en/statistics/hdi/&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/08/cultural-analysis-of-wikipedia.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-3757085262278974211</guid><pubDate>Wed, 25 Jul 2012 12:47:00 +0000</pubDate><atom:updated>2012-07-25T14:47:47.785+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Actor-Network-Theory</category><category domain="http://www.blogger.com/atom/ns#">book</category><category domain="http://www.blogger.com/atom/ns#">network analysis</category><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">pattern analysis</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">socialNetworkAnalysis</category><title>some notes during reading &quot;Networks, Crowds and Markets&quot; by David Easley and Jon Kleinberg -  Introduction</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
a network is a pattern of interconnections among a set of things&lt;br /&gt;
&lt;br /&gt;
adding resources in a network can undermine its efficiency - &lt;a href=&quot;http://en.wikipedia.org/wiki/Braess&#39;s_paradox&quot; target=&quot;_blank&quot;&gt;Braess&#39;s paradox&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
a notion of equilibrium - a state that is self-reinforcing in that it provides no individual with an incentive to unilaterally change his or her strategy, even knowing how others will behave&lt;br /&gt;
&lt;br /&gt;
we have a&amp;nbsp;fundamental&amp;nbsp;inclination to behave as we see other to behave: 1) the behavior of others convey the information or it is a direct benefit from aligning your behavior with that of others&lt;br /&gt;
&lt;br /&gt;
in many cases you care more about aligning your own behavior with the behavior of your immediate neigbors &amp;nbsp;in the social network, rather than with the population as a whole.&lt;br /&gt;
&lt;br /&gt;
a new behavior starts with a small set of initial adopters and then spread radially outward through the network.&lt;br /&gt;
&lt;br /&gt;
a diffusion of technologies can be blocked by the boundary of a densely connected cluster in the network- a &quot;closed community&quot; of individuals who have a high amount of linkage among themselves, and hence are resistant to outside influences,&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/07/some-notes-during-reading-networks.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-3788476495806642672</guid><pubDate>Tue, 24 Jul 2012 13:18:00 +0000</pubDate><atom:updated>2012-07-24T15:22:59.498+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">didactics</category><category domain="http://www.blogger.com/atom/ns#">learning discipline</category><category domain="http://www.blogger.com/atom/ns#">pedagogy</category><category domain="http://www.blogger.com/atom/ns#">rwth</category><title>Things to learn about didactics - need to know for teachers and students</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
A month ago i was participating in the workshop organized by &lt;a href=&quot;http://www.ima-zlw-ifu.rwth-aachen.de/index.php&quot; target=&quot;_blank&quot;&gt;IMA, ZLW &amp;amp; IfU&lt;/a&gt;. The aim was to develop the concept for the interdisciplinary learning event. I suppose that t&lt;a href=&quot;http://www.ima-zlw-ifu.rwth-aachen.de/forschung/forschungsgruppen/didaktik_der_mint_wissenschaften.html&quot; target=&quot;_blank&quot;&gt;his group&lt;/a&gt;&amp;nbsp;was working mostly on the preparation of the workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;It was a great event. Just think that we plan a learning discipline with about 15 people where students were involved to!&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;I hope the event will take place at the summer term. Different departments should participate in it: databases and information systems, business administration, sociology, and product engineering. Therefore, before we start to conceptualize the event, we listened to some&amp;nbsp;didactic&amp;nbsp;tips&amp;nbsp;that many of us know but forget.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
methods for learner interactions:&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;think-pair-share (think alone, talk about it with a partner and present to others)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;buzz groups (lecturer provides some information and asks a question, the group is formed and the question is discussed in the group, the solution is presented to others)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;jigsaw (the same procedure as in previous cases but group formation is different. all experts of topics are distributed in groups, so that each group has an expert of each topic)&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG3AA3vjtKEmm939hy3nrI_G6KwSwqjnPRmSTwd1RNaXnp-Kyq3SFMgwofpwrc83e_KN4uy_Z_RcH_gJp64oVCa3G0GhNI-msdngOsJTqjYNPMok4_yr7qxw76bom6UATTcy2BTP14Ycdy/s1600/IMAG0361.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;191&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG3AA3vjtKEmm939hy3nrI_G6KwSwqjnPRmSTwd1RNaXnp-Kyq3SFMgwofpwrc83e_KN4uy_Z_RcH_gJp64oVCa3G0GhNI-msdngOsJTqjYNPMok4_yr7qxw76bom6UATTcy2BTP14Ycdy/s320/IMAG0361.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;Memory:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;ultra short-term memory may give the information to the next memory if it is interesting. According to&amp;nbsp;different&amp;nbsp;sources it works &amp;nbsp;from 2 to 20 seconds.&lt;/li&gt;
&lt;li&gt;short-term memory can work till 20 minutes and send the information to the next memory if it is interesting. The capacity is limited in 7 entries (formulas, parameters, words, sentences - depends on how good a mind is trained). The capacity can be extended.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;long-term memory stores the information for a long time. There are&amp;nbsp;episodic (when did it happen?), declarative(general) and procedural memory (how did it happen?). BUT the information can be lost!!!&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
How can you prevent to loose the information from the long-term memory?&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;repeat the learned material by and by&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;repeat the material in continuously increasing time intervals&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white;&quot;&gt;5 minutes pause after the learning block&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5fnKY0q8WItczDXJKZWYi6HHskbk8Sv0K151wRLN5ReXLhCcD4SZ_WLMjeKdagHQCoz0hzM-cS7AcrE1lVo9Pstmwx7tb3m-o8XOZs4GR-2ACBm2mCm-p-box22uWRYKWwKgozrhPFx6b/s1600/IMAG0360.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;191&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5fnKY0q8WItczDXJKZWYi6HHskbk8Sv0K151wRLN5ReXLhCcD4SZ_WLMjeKdagHQCoz0hzM-cS7AcrE1lVo9Pstmwx7tb3m-o8XOZs4GR-2ACBm2mCm-p-box22uWRYKWwKgozrhPFx6b/s320/IMAG0360.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/07/things-to-learn-about-didactics-need-to.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG3AA3vjtKEmm939hy3nrI_G6KwSwqjnPRmSTwd1RNaXnp-Kyq3SFMgwofpwrc83e_KN4uy_Z_RcH_gJp64oVCa3G0GhNI-msdngOsJTqjYNPMok4_yr7qxw76bom6UATTcy2BTP14Ycdy/s72-c/IMAG0361.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-8302663638868713947</guid><pubDate>Tue, 17 Jul 2012 20:25:00 +0000</pubDate><atom:updated>2012-07-17T22:25:27.230+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cultural Differences</category><category domain="http://www.blogger.com/atom/ns#">hofstede</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">workingpaper</category><title>Cultural dimensions of Hofstede</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;I&#39;m working on one paper devoted to cultural differences in Web and find cultural dimensions of Hofstede extremely important for those who are looking for cultural differences. Here i&#39;m sharing my findings.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;&quot;The great work of
&lt;a href=&quot;http://geert-hofstede.com/&quot; target=&quot;_blank&quot;&gt;Hofstede &lt;/a&gt;proposes cultural dimensions of people working at IBM in over 50
countries (&lt;a href=&quot;http://www.amazon.com/Cultures-Organizations-Software-Third-Edition/dp/0071664181/ref=cm_cr_pr_product_top&quot; target=&quot;_blank&quot;&gt;Hofstede, 1991&lt;/a&gt;). He identified 5 dimensions of differences between
national cultures: power distance, collectivism versus individualism,
femininity versus masculinity, uncertainty avoidance, long-term orientation. Following
we are going to explain these dimensions.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;The acceptability
and expectance of the power of members within society institutions like family,
school and a community at work shows the &lt;i&gt;power
distance&lt;/i&gt; of the society. This dimension is about respect according to the
distance between people in different levels of hierarchy. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;Everyone is
responsible for herself in &lt;i&gt;individualistic&lt;/i&gt;
culture while groups are responsible for their members in &lt;i&gt;collectivistic&lt;/i&gt; culture. In other words, &lt;i&gt;individualism&lt;/i&gt; describes the situation when a person thinks firstly
about his interests as long as &lt;i&gt;collectivism&lt;/i&gt;
describes the situation when a person thinks firstly about group interests. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;i&gt;&lt;span lang=&quot;EN-US&quot;&gt;Masculinity and femininity&lt;/span&gt;&lt;/i&gt;&lt;span lang=&quot;EN-US&quot;&gt; refer to
social gender roles. Either the roles are clearly distinct, i.e. “men are
focused on material success, whereas women are concerned with the quality of
life” – masculinity is higher. Or the roles overlap, i.e. both women and men
take care about life quality and material success. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;span lang=&quot;EN-US&quot;&gt;The attitude to the
uncertainty is reflected in &lt;i&gt;uncertainty
avoidance&lt;/i&gt; &lt;i&gt;(UA)&lt;/i&gt; dimension. Representatives
of some cultures react negatively to uncertainty and need clear idea about what
is going to happen. These cultures have a high level of UA dimension. &lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MyStyle&quot; style=&quot;line-height: 200%;&quot;&gt;
&lt;i&gt;&lt;span lang=&quot;EN-US&quot;&gt;Long-term vs. short-term orientation in life &lt;/span&gt;&lt;/i&gt;&lt;span lang=&quot;EN-US&quot;&gt;explains cultural differences in spending and saving money and accepting
quick results. People with long-term orientation of life (LTOL) use to save
more money and adopt themselves to the modern context while people with
short-term orientation use to overspend but respect traditions without any or
with minor adaptations. Moreover, in the first case results should be immediate
while in the second case it is very preferable.&quot;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/07/cultural-dimensions-of-hofstede.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-6817978104251055057</guid><pubDate>Thu, 28 Jun 2012 11:11:00 +0000</pubDate><atom:updated>2012-06-28T13:11:51.477+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">competence</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">presentatonSkills</category><title></title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Recently i was participated in annual &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2012&quot; target=&quot;_blank&quot;&gt;Joint Technology Enhanced Learning Summer School&amp;nbsp;&lt;/a&gt;that was full of interesting people and great presentations. I managed to talk with some lectures about my dissertation and i&#39;m thankful for such a great opportunity. Now i fill up with new ideas and solutions to the problems i have.&lt;br /&gt;
&lt;br /&gt;
Anyway here i would like to share with slides i was asked to do in the frames of student activities: &quot;Presentation skills&quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;__ss_13103349&quot; style=&quot;width: 425px;&quot;&gt;
 &lt;strong style=&quot;display: block; margin: 12px 0 4px;&quot;&gt;&lt;a href=&quot;http://www.slideshare.net/petrushyna/prsentation-skillsss12-final&quot; target=&quot;_blank&quot; title=&quot;Presentation skills for PhD students in JTEL Summer School &quot;&gt;Presentation skills for PhD students in JTEL Summer School &lt;/a&gt;&lt;/strong&gt; &lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;355&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://www.slideshare.net/slideshow/embed_code/13103349&quot; style=&quot;border-width: 1px 1px 0; border: 1px solid #CCC;&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt; &lt;div style=&quot;padding: 5px 0 12px;&quot;&gt;
 View more &lt;a href=&quot;http://www.slideshare.net/thecroaker/death-by-powerpoint&quot; target=&quot;_blank&quot;&gt;PowerPoint&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/petrushyna&quot; target=&quot;_blank&quot;&gt;petrushyna&lt;/a&gt; &lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
I learned a lot about presentation skills from the gorgeous 3-days workshop done at RWTH Aachen University by &lt;a href=&quot;http://www.ame.hia.rwth-aachen.de/index.php?id=463&quot; target=&quot;_blank&quot;&gt;Martin Baumann&lt;/a&gt;. I can&amp;nbsp;definitely&amp;nbsp;talk a lot about the workshop and share knowledge with you and maybe i&#39;ll try to do this someday. The slides include a tiny part of the knowledge I got at the workshop but i hope that i included some important points in the slides.&lt;br /&gt;
&lt;br /&gt;
Summer school students liked it even they were filmed. They had to make a&amp;nbsp;spontaneous&amp;nbsp;presentation for a minute to&amp;nbsp;absurd topics that sounds trustworthy. After that, students were reviewed by other students,&amp;nbsp;&lt;a href=&quot;http://fr.linkedin.com/pub/katherine-maillet/b/139/846&quot; target=&quot;_blank&quot;&gt;Katherine&amp;nbsp;Maillet&lt;/a&gt;, &lt;a href=&quot;http://www.accloureiro.com/&quot; target=&quot;_blank&quot;&gt;Ana Loureiro&lt;/a&gt; and me.&amp;nbsp;They got their videos to get a clear idea about things they do right and things they do wrong.&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2012/06/recently-i-was-participated-in-annual.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-5403555883888993445</guid><pubDate>Sun, 02 Oct 2011 20:02:00 +0000</pubDate><atom:updated>2011-10-02T22:02:19.864+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><category domain="http://www.blogger.com/atom/ns#">survival</category><title>How long do communities live?</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
The question I&#39;m solving&amp;nbsp; in my dissertation is &quot;Do any signs exist that indicate that community will die or will continue to exist successfully?&quot;. I don&#39;t mean any Shaman signs and i&#39;m not trying to read coffee fortune. it is pure science.&lt;br /&gt;
&lt;br /&gt;
I&#39;m following the life of communities and community knowledge. A community is impossible to survive without users thus first of all the users need to be analyzed. I&#39;m examining what are users behaviors, where a behavior is a broad term in Internet world.&lt;br /&gt;
&lt;br /&gt;
One of the examples of such an examination was done in the paper &lt;a href=&quot;http://misc.si.umich.edu/media/papers/ICWSM10_YangJ_10.pdf&quot;&gt;Activity Span&lt;/a&gt;. The researchers analyzed survival patterns of users in web community. They were considering Yahoo Answers, Baidu Knows (Chinese) and Naver Knowledge-IN (Korean) knowledge sharing systems. The outcomes the researchers come to: for all three communities the users need to be trained to ask questions otherwise the questions remain without answers. As it was expected, people don&#39;t leave community if they got answers to their questions. The experts of communities stay longer there if their answers were awarded (best answers).&lt;br /&gt;
&lt;br /&gt;
The users lifespan implies the lifespan of their community. Surely if there are clear indications of users that are going to finish their life in a community, it can be used as a sign that community will die. Let say if there are questions that nobody answers and answers nobody thanks for produce an alarm for community managers that something have to be done about their community or it disappear.&lt;br /&gt;
&lt;br /&gt;
Things about communities are not so simple to figure out. A community consists not only of askers, answerers. Other types of users exist. Their behaviors are dependent on the activity in posting answers and questions, in participating in discussions, in sentiments they use in posts, in their intents. I state here that it is a complex task to describe a community as it has many participants with different behaviors, i.e different patterns. Thus it makes hard to imagine what happens with the community afterwards: is it die or survive?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2011/10/how-long-do-communities-live.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-7479258288387281989</guid><pubDate>Wed, 21 Sep 2011 16:50:00 +0000</pubDate><atom:updated>2011-09-21T18:52:10.841+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">reputation</category><category domain="http://www.blogger.com/atom/ns#">videolectures</category><title>Identity is not important for some communities?!</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
I&#39;ve just watched very interesting talk by Michael S. Bernstein about 4chan and /b/ discussion boards where more than 90% of users are anonymous. The threads in the boards are not archived but deleted after sometime (~3,9 minutes). Although the anonymity of users and very short life of threads, communities have their culture and policies.For example, if somebody posted without using a settled slang, he gets a &quot;Lurk further&quot; reply. &lt;br /&gt;
&lt;br /&gt;
Such kind of communities haven&#39;t been researched a lot. It is interesting that in communities like 4chan nobody looks for a reputation of a user. Even so some posts have &quot;long&quot; life (~ 39 minutes) when other users reply. In the boards it is going only about posted content and not about who has posted. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://videolectures.net/icwsm2011_bernstein_ephemerality/&quot;&gt;&lt;br /&gt;&amp;nbsp; &lt;img border=&quot;0/&quot; src=&quot;http://videolectures.net/icwsm2011_bernstein_ephemerality/thumb.jpg&quot; /&gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;4chan and /b/: An Analysis of Anonymity and Ephemerality in a Large Online Community&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2011/09/identity-is-not-important-for-some.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-2901032430175770221</guid><pubDate>Tue, 20 Sep 2011 17:29:00 +0000</pubDate><atom:updated>2011-10-02T17:51:30.181+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">science2.0</category><category domain="http://www.blogger.com/atom/ns#">socialNetworkAnalysis</category><category domain="http://www.blogger.com/atom/ns#">weird</category><title>Science as well as analysis of Science: both require accuracy. #ectel11</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Because of pleasant personal reasons i can&#39;t attend the &lt;a href=&quot;http://www.ec-tel.eu/&quot;&gt;EC-TEL&lt;/a&gt; this year. Nevertheless i&#39;m following what is happening in Palermo this year. Regretfully it is not easy. The WiFi seems to be very weak for enormous number of TEL researchers that are usually hanging in the Internet days and nights like Internet junkies.&lt;br /&gt;
&lt;br /&gt;
I would like to sum here minor things that EC-TEL participants manage to post on 19 and 20 of September. Thanks for the tweets!&lt;br /&gt;
&lt;br /&gt;
The EC-TEL seems to extremely interesting domain for Science 2.0 approaches. At least two posters at the conference are investigating the previous publications at the EC-TEL.&amp;nbsp; I&#39;m embedding both of them later here. It is interesting to see how differently the researchers explore and present the same topic of the posters. The most interesting question is to know who is the most important member in the community. In the &quot;author-community&quot; poster the list of key community members is presented in the table. In the &quot;analyzing EC-TEL&quot;&amp;nbsp; poster there is no remark about key community members. However the poster includes the co-author network that highlights some of the EC-TEL participants. It is weird that a lot of names mentioned in the list of the first poster can&#39;t be seen in the second poster. Moreover, the co-authorship network of the first poster doesn&#39;t look like the co-authorship network of the second poster. In the first case the network has less disconnected clusters and the biggest cluster looks for me as it has more than 75 authors as it is presented in the second case. There are some more differences which i propose the readers to find.&lt;br /&gt;
&lt;br /&gt;
i can imagine that the posters provoke a lot of discussions at the EC-TEL&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: lime; font-size: large;&quot;&gt;Update: &lt;/span&gt;Thankfully to the discussion with Michael Derntl the difference is clarified. The first poster uses all papers from proceeding and workshops. The second poster uses only proceedings papers. &lt;br /&gt;
&lt;b style=&quot;display: block; margin: 12px 0 4px;&quot;&gt; &lt;/b&gt;&lt;b style=&quot;display: block; margin: 12px 0pt 4px;&quot;&gt;&lt;a href=&quot;http://www.slideshare.net/klamma/the-ectel-authorcommunity&quot; target=&quot;_blank&quot; title=&quot;The EC-TEL Author-Community&quot;&gt;The EC-TEL Author-Community&lt;/a&gt;&lt;/b&gt; &lt;iframe frameborder=&quot;0&quot; height=&quot;510&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://www.slideshare.net/slideshow/embed_code/9319999&quot; width=&quot;477&quot;&gt;&lt;/iframe&gt; &lt;br /&gt;
&lt;div id=&quot;__ss_9273841&quot; style=&quot;width: 477px;&quot;&gt;
&lt;b style=&quot;display: block; margin: 12px 0 4px;&quot;&gt;&lt;a href=&quot;http://www.slideshare.net/wolfgang.reinhardt/analyzing-ectel-20062010-9273841&quot; target=&quot;_blank&quot; title=&quot;Analyzing EC-TEL 2006-2010&quot;&gt;Analyzing EC-TEL 2006-2010&lt;/a&gt;&lt;/b&gt; &lt;iframe frameborder=&quot;0&quot; height=&quot;510&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://www.slideshare.net/slideshow/embed_code/9273841&quot; width=&quot;477&quot;&gt;&lt;/iframe&gt; &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2011/09/science-as-well-as-analysis-of-science.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-6727014628289144895</guid><pubDate>Mon, 04 Apr 2011 10:58:00 +0000</pubDate><atom:updated>2011-04-04T12:58:35.678+02:00</atom:updated><title>Evaluation of recommender technology using multi agent simulation</title><description>Recently i was invited to CELSTEC to make a talk about my ongoing research. I appreciated this opportunity and get some valuable feedback. Some people (Rory Sie and Howard Spoelstra) are working under team formation questions in CELSTEC as well. &lt;div style=&quot;width:425px&quot; id=&quot;__ss_7445499&quot;&gt;&lt;strong style=&quot;display:block;margin:12px 0 4px&quot;&gt;&lt;a href=&quot;http://www.slideshare.net/petrushyna/evaluation-of-recommender-technology-using-multi-agent-simulation&quot; title=&quot;Evaluation of recommender technology using multi agent simulation&quot;&gt;Evaluation of recommender technology using multi agent simulation&lt;/a&gt;&lt;/strong&gt;&lt;object id=&quot;__sse7445499&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=evaluationofrecommendertechnologyusingmulti-agentsimulation-110330045705-phpapp01&amp;stripped_title=evaluation-of-recommender-technology-using-multi-agent-simulation&amp;userName=petrushyna&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;/&gt;&lt;embed name=&quot;__sse7445499&quot; src=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=evaluationofrecommendertechnologyusingmulti-agentsimulation-110330045705-phpapp01&amp;stripped_title=evaluation-of-recommender-technology-using-multi-agent-simulation&amp;userName=petrushyna&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style=&quot;padding:5px 0 12px&quot;&gt;View more &lt;a href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/petrushyna&quot;&gt;petrushyna&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2011/04/evaluation-of-recommender-technology.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-7748147902970759893</guid><pubDate>Mon, 29 Nov 2010 13:51:00 +0000</pubDate><atom:updated>2010-11-29T13:44:36.937+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">advise</category><category domain="http://www.blogger.com/atom/ns#">experience sharing</category><category domain="http://www.blogger.com/atom/ns#">help</category><category domain="http://www.blogger.com/atom/ns#">knowledge sharing</category><category domain="http://www.blogger.com/atom/ns#">PhD</category><title>from senior researchers to young researchers</title><description>&quot;It would be great to know everything what my father knows. Just to be born with it. Or push a button and load all data in my head. No, no! The God had a different solution. We have to learn everything by ourselves.&quot; - Me&lt;br /&gt;&lt;br /&gt;Anyway we may get a support from more experienced to less experienced peers. Such a knowledge transfer between seniors researchers and PhDs took place at &lt;a href=&quot;http://www.prolearn-academy.org/Members/ralf/dc-ectel2010/&quot;&gt;Doctoral Consortium&lt;/a&gt; at &lt;a href=&quot;http://www.ectel2010.org/&quot;&gt;EC-TEL 2010&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Young and senior researchers were divided into two groups. I was in the group with &lt;a href=&quot;http://www.lsri.nottingham.ac.uk/msh/&quot;&gt;Mike Sharples&lt;/a&gt;, &lt;a href=&quot;http://dbis.rwth-aachen.de/cms/staff/klamma&quot;&gt;Ralf Klamma&lt;/a&gt;, &lt;a href=&quot;http://www.iwm-kmrc.de/www/en/mitarbeiter/ma.html?dispname=Ulrike+Cress&amp;amp;uid=ucress&quot;&gt;Urlicke Cress&lt;/a&gt;, &lt;a href=&quot;http://lo-f.at/glahn/&quot;&gt;Christian Glahn&lt;/a&gt;, &lt;a href=&quot;http://www.e5.ijs.si/si/?271&quot;&gt;Tomaž Klobučar&lt;/a&gt;, &lt;a href=&quot;http://kmi.open.ac.uk/people/member/peter-scott&quot;&gt;Peter Scott&lt;/a&gt;, &lt;a href=&quot;http://www.competence-site.de/Roland-Klemke&quot;&gt;Ronald Klemke&lt;/a&gt; who shared their experience of PhD procedures with us. Here is the list fo questions and answers, I would like to share with you.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q: How to write a paper/a thesis?&lt;br /&gt;&lt;br /&gt;A: Write an abstract of a thesis and several sentences for each chapter.  Show the abstract to other people. Contact experts in your research area. Some of them will be happy to     answer you as they were PhD students earlier as well.&lt;br /&gt;&lt;br /&gt;A: Read abstracts and PhD theses of others to understand the     thesis structure.&lt;br /&gt;&lt;br /&gt;A: Before writing get a clear idea what is already done, what is needed to be done and     what can&#39;t be done.&lt;br /&gt;&lt;br /&gt;Q: How to motivate myself to write a paper/a thesis?&lt;br /&gt;&lt;br /&gt;A: In Open University young researchers have to report annually about their progress. The reports are presented not only for internal but as well for external reviewers.&lt;br /&gt;&lt;br /&gt;A: After 6 weeks of your research write two pages about your plans in the future, the next report should be prepared in a year and the next     again in a year. Start writing already at the beginning of the PhD.&lt;br /&gt;&lt;br /&gt;A: Plan your papers. Plan a paper that you will write in a year, in two and three and follow the plan.&lt;br /&gt;&lt;br /&gt;  Q: How can i know that my research question is important?&lt;br /&gt;&lt;br /&gt;  A: Remember, there is no secret labs that are exploring exactly your question . If they were any, you would be already there.&lt;br /&gt;&lt;br /&gt;A: What does important work means? There are only 3 people in the     world that are doing their research about the structure of Jewish middeaval poetry and they find that their reseach is important.&lt;br /&gt;&lt;br /&gt;A: It is important that your research is valuable for your advisor. Otherwise you have a problem.&lt;br /&gt;&lt;br /&gt;Some other phrases the PhDs should not forget:&lt;br /&gt;&lt;br /&gt;&quot;PhD is a project but not the deal of a life. &quot;&lt;br /&gt;&lt;br /&gt;&quot;You are not a scientist     but you are training to be a scientist&quot;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2010/10/from-senior-researchers-to-young.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-384104819799835860</guid><pubDate>Wed, 06 Oct 2010 08:58:00 +0000</pubDate><atom:updated>2010-10-15T18:50:38.941+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">community modeling</category><category domain="http://www.blogger.com/atom/ns#">e-learning communities</category><category domain="http://www.blogger.com/atom/ns#">i*</category><category domain="http://www.blogger.com/atom/ns#">online communities</category><category domain="http://www.blogger.com/atom/ns#">pattern analysis</category><category domain="http://www.blogger.com/atom/ns#">pattern repository</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><category domain="http://www.blogger.com/atom/ns#">PhD topic</category><title>My presentation at the doctoral consortium of EC-TEL 2010</title><description>&lt;div style=&quot;width: 425px;&quot; id=&quot;__ss_5360687&quot;&gt;&lt;strong style=&quot;display: block; margin: 12px 0pt 4px;&quot;&gt;&lt;a href=&quot;http://www.slideshare.net/petrushyna/selfmodeling-and-selfreflection-of-elearning-communities&quot; title=&quot;Self-modeling and self-reflection of E-learning communities&quot;&gt;Self-modeling and self-reflection of E-learning communities&lt;/a&gt;&lt;/strong&gt;&lt;object id=&quot;__sse5360687&quot; height=&quot;355&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=petrushynadcectel-101005060213-phpapp02&amp;amp;stripped_title=selfmodeling-and-selfreflection-of-elearning-communities&amp;amp;userName=petrushyna&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;embed name=&quot;__sse5360687&quot; src=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=petrushynadcectel-101005060213-phpapp02&amp;amp;stripped_title=selfmodeling-and-selfreflection-of-elearning-communities&amp;amp;userName=petrushyna&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; height=&quot;355&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style=&quot;padding: 5px 0pt 12px;&quot;&gt;View more &lt;a href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a href=&quot;http://www.slideshare.net/petrushyna&quot;&gt;petrushyna&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I would like to thank for the feedback i got from EC-TEL Doctoral Consortium participants. It helps me to narrow the domain of my research.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2010/10/my-presentation-at-doctoral-consortium.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-2791311320425990954</guid><pubDate>Fri, 30 Apr 2010 15:30:00 +0000</pubDate><atom:updated>2010-04-30T18:53:13.041+02:00</atom:updated><title>Collaborative filtering depending on  time</title><description>Here i would like just to report about very interesting paper i read this weak.&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;&lt;a href=&quot;http://cacm.acm.org/magazines/2010/4/81486-collaborative-filtering-with-temporal-dynamics/fulltext&quot;&gt;Collaborative Filtering with Temporal Dynamic&lt;/a&gt; shows the approach to catch the changes about customer preferences and items over a time in order to do appropriate suggestions about future preferences. Here are my thoughts how the approach can be adopted for learning environments where customers are learners and items are learner objects or other environment actors.&lt;br /&gt;&lt;br /&gt;Firstly i would like to mention what I&#39;ve learnt from the paper&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;concept drifting -&lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt; &lt;/span&gt;temporal changes in user behaviour or item behaviour. In the scope&lt;span style=&quot;font-style: italic;&quot;&gt; &lt;/span&gt;of&lt;span style=&quot;font-style: italic;&quot;&gt; learning communities&lt;/span&gt; learners changes their preferences, ways of knowledge, favorite activities within a time. Not only learners, but learning objects may change: a lectures notes are rewritten, the collaboration environment is changed.&lt;/li&gt;&lt;li&gt;three approaches that solves the concept drift problem exist:&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;li&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;instance selection&lt;/span&gt;  - don&#39;t pay attention to irrelevant data. In this case the data considered in a particular time-frame.&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;instance weighting&lt;/span&gt; instances get weights according to its relevance.&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;ensemble learning - &lt;/span&gt;the list of predictors exists and the more successful predictors get higher weights&lt;/li&gt;&lt;/ol&gt;In the paper the ideas of two last approaches are utilized but some other biases as well are considered.&lt;br /&gt;&lt;br /&gt;Even, according to instance weighting the past events loose their influences, the preferences of users still dependent on their past. The parts of learners profiles are changing every day but there are some points that are stable on each of us: liking to read, understanding the information presented by video better then by audio, preferences to avoid formulas.&lt;br /&gt;&lt;br /&gt;In ensemble learning only a fraction of behaviour is considered, e.g. preferences during preparing for an exam or collaborating with student colleagues. For each user a set of fractions is needed to be considered. Considering a huge number of learners such a generation of the sets is a complicated task.&lt;br /&gt;&lt;br /&gt;Yehuda Koren proposed the solution that considers item bias, user bias, global average and user interaction. Afterwards, the time components was added.&lt;br /&gt;&lt;br /&gt;How it can be applied in learning? - To be continued&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2010/04/collaborative-filtering-depending-on.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-7374743500754449483</guid><pubDate>Mon, 06 Jul 2009 22:40:00 +0000</pubDate><atom:updated>2009-07-09T12:43:02.433+02:00</atom:updated><title>Reflection to SNA workshop on JTEL Summer School</title><description>From 30th of May till 5th of June i was happy to be one of the students, one of the lectures and one of the organizers of &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2009&quot;&gt;Joint European Summer School in Technology Enhanced Learning&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;From my point of view the event was excellent even there are some things to change, nearly all students desire to participate again. I don&#39;t want go deep in details what is summer school and how it was as many bloggers have already done this: &lt;a href=&quot;http://annafant.wordpress.com/2009/06/09/summer-school-review/&quot;&gt;Annafant&#39;s Notizblog (Anna Lea Dyckhoff)&lt;/a&gt;, &lt;a href=&quot;http://erikduval.wordpress.com/2009/06/09/summer-school-fun/&quot;&gt;Summer School Fun (Erik Duval&#39;s blog) &lt;/a&gt;, &lt;a href=&quot;http://www.pontydysgu.org/2009/06/refelections-on-the-european-summer-school/&quot;&gt;Pontydysgu (Graham Attwell&#39;s blog)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The other thing i want to do is the reflections of our &quot;SNA Workshop&quot; that we have done together with &lt;a href=&quot;http://beamtenherrschaft.blogspot.com/&quot;&gt;Ralf Klamma&lt;/a&gt;. The purpose of it was to introduce &lt;a href=&quot;http://en.wikipedia.org/wiki/Technology-Enhanced_Learning&quot;&gt;TEL&lt;/a&gt; people with &lt;a href=&quot;http://en.wikipedia.org/wiki/Social_Network_Analysis&quot;&gt;SNA &lt;/a&gt;basics and explain what they can find applying applying SNA analysis for E-Learning communities.&lt;br /&gt;&lt;div style=&quot;width: 425px; text-align: left;&quot; id=&quot;__ss_1567012&quot;&gt;&lt;a style=&quot;margin: 12px 0pt 3px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;&quot; href=&quot;http://www.slideshare.net/telss09/first-steps-in-social-network-analysis-1567012&quot; title=&quot;First steps in social network analysis&quot;&gt;First steps in social network analysis&lt;/a&gt;&lt;object style=&quot;margin: 0px;&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=snaworkshop-090611051828-phpapp01&amp;amp;stripped_title=first-steps-in-social-network-analysis-1567012&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;embed src=&quot;http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=snaworkshop-090611051828-phpapp01&amp;amp;stripped_title=first-steps-in-social-network-analysis-1567012&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style=&quot;font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;&quot;&gt;View more &lt;a style=&quot;text-decoration: underline;&quot; href=&quot;http://www.slideshare.net/&quot;&gt;presentations&lt;/a&gt; from &lt;a style=&quot;text-decoration: underline;&quot; href=&quot;http://www.slideshare.net/telss09&quot;&gt;telss09&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;After presentation we asked students to calculate 3 simplest SNA centrality measures: degree centrality, betweenness centrality and closeness centrality. According to reactions of students i changed the tutorial for the workshop. Now it has many examples and easy enough for anybody to understand sometimes tough or weird mathematical stuff.&lt;br /&gt;&lt;br /&gt;&lt;a title=&quot;View SNAWorkshop on Scribd&quot; href=&quot;http://www.scribd.com/doc/17171715/SNAWorkshop&quot; style=&quot;margin: 12px auto 6px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;&quot;&gt;SNAWorkshop&lt;/a&gt; &lt;object codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&quot; id=&quot;doc_363014536228290&quot; name=&quot;doc_363014536228290&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; rel=&quot;media:document&quot; resource=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=17171715&amp;amp;access_key=key-2hg9zsnukl15pcul1uou&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot; media=&quot;http://search.yahoo.com/searchmonkey/media/&quot; dc=&quot;http://purl.org/dc/terms/&quot; align=&quot;middle&quot; width=&quot;100%&quot; height=&quot;500&quot;&gt;  &lt;param name=&quot;movie&quot; value=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=17171715&amp;amp;access_key=key-2hg9zsnukl15pcul1uou&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot;&gt;   &lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;   &lt;param name=&quot;play&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;loop&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;scale&quot; value=&quot;showall&quot;&gt;  &lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;   &lt;param name=&quot;devicefont&quot; value=&quot;false&quot;&gt;  &lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot;&gt;   &lt;param name=&quot;menu&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;   &lt;param name=&quot;salign&quot; value=&quot;&quot;&gt;        &lt;embed src=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=17171715&amp;amp;access_key=key-2hg9zsnukl15pcul1uou&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; play=&quot;true&quot; loop=&quot;true&quot; scale=&quot;showall&quot; wmode=&quot;opaque&quot; devicefont=&quot;false&quot; bgcolor=&quot;#ffffff&quot; name=&quot;doc_363014536228290_object&quot; menu=&quot;true&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; salign=&quot;&quot; type=&quot;application/x-shockwave-flash&quot; align=&quot;middle&quot; width=&quot;100%&quot; height=&quot;500&quot;&gt;&lt;/embed&gt; &lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Some of you asked me about evidences and examples of SNA applications in E-Learning world. One of the examples is excellent work from Ruth Breuer that made SNA analysis of 45000 European schools. The application called &lt;a href=&quot;http://vermeer.informatik.rwth-aachen.de:9080/eVA/&quot;&gt;EVA&lt;/a&gt;  and the paper work about it will appear on the &lt;a href=&quot;http://www.ectel09.org/&quot;&gt;EC-TEL&#39;09&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The other paper i read recently &quot;&lt;a href=&quot;http://www.sciencedirect.com/science?_ob=MImg&amp;amp;_imagekey=B6VFW-481772B-3-9&amp;amp;_cdi=6021&amp;amp;_user=929460&amp;amp;_orig=na&amp;amp;_coverDate=10%2F31%2F2003&amp;amp;_sk=999869994&amp;amp;view=c&amp;amp;wchp=dGLbVtb-zSkzV&amp;amp;md5=3f98dbd9b2d64c58ca471ddaa54bd9da&amp;amp;ie=/sdarticle.pdf&quot;&gt;Patterns of participation and discourse in elementary students’ computer-supported collaborative learning&lt;/a&gt;&quot; from Lasse Lipponen, Marjaana Rahikainen, Jiri Lallimo and Kai Hakkarainen discusses benefits and flaws of high/low density(depends on degree centrality) in learning networks.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Within &lt;a href=&quot;http://www.role-project.eu/&quot;&gt;ROLE &lt;/a&gt;project we are analyzing media networks collaborations within learning environments.  I think that in next decades there will be a lot of news to report about our achievements.&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2009/07/reflection-to-sna-workshop-on-jtel.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-6474092431827629992</guid><pubDate>Sun, 17 May 2009 09:36:00 +0000</pubDate><atom:updated>2009-05-17T14:05:44.887+02:00</atom:updated><title>Wolfram Alpha on its first stage: not a Google-killer but Wikipedia extension based on expert-knowledge.</title><description>Last months &quot;Wolfram Alpha&quot; got a high level of public awareness and became buzz word. Some even talk about danger that Google may confront with new computational engine, e.g. &lt;a href=&quot;http://www.techcrunch.com/2009/05/12/what-is-google-squared-it-is-how-google-will-crush-wolfram-alpha-exclusive-video/&quot;&gt;what-is-google-squared-it-is-how-google-will-crush-wolfram-alpha-exclusive-video&lt;/a&gt; or &lt;a href=&quot;http://datamining.typepad.com/data_mining/2009/05/alphram-and-google.html&quot;&gt;Alphram and Google&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;May 15, 2009: at night(5PM PDT) &lt;a href=&quot;http://www.wolframalpha.com/&quot;&gt;Wolfram Alpha&lt;/a&gt; should be launched. &lt;a href=&quot;http://m.news.com/2166-12_3-10242353-76.html&quot;&gt;because of hardware and weather problems&lt;/a&gt; the engine was published online some hours later.&lt;br /&gt;&lt;br /&gt;The idea of the tool is that it brings expert-level knowledge to everybody. Anyway my first query was quiet obvious - &quot;How to make pancakes?&quot;. What i would expect is the recipe that explains how to do pancakes but the engine replies with a complete information about pancake&#39;s content&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www2.wolframalpha.com/Calculate/MSP/MSP4120195gh59h52e7e04a00003cfa7f1287d10g92?MSPStoreType=image/gif&amp;amp;s=13&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 426px; height: 61px;&quot; src=&quot;http://www2.wolframalpha.com/Calculate/MSP/MSP4120195gh59h52e7e04a00003cfa7f1287d10g92?MSPStoreType=image/gif&amp;amp;s=13&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8ihBjRbIiHOxyGUO7mIt0znv-1sjDGJAFn5sMQSnqs-4lJRorljmGnkllvVHYG0lxgorFQy7VOnIBcQRTVNjtzJFJLcM-LU7NcjYZvuxoKAgszWm4ptPRKZHL5cLfp3ds93lMzLV_Nnrg/s1600-h/MSP976195ghc605iggh7d9000063d13e46had2d14h.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 248px; height: 400px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8ihBjRbIiHOxyGUO7mIt0znv-1sjDGJAFn5sMQSnqs-4lJRorljmGnkllvVHYG0lxgorFQy7VOnIBcQRTVNjtzJFJLcM-LU7NcjYZvuxoKAgszWm4ptPRKZHL5cLfp3ds93lMzLV_Nnrg/s400/MSP976195ghc605iggh7d9000063d13e46had2d14h.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5336743997029073650&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I tried to look for personal learning environments, which are important for my work as well as network analysis. I got nothing as an answer. There are a lot of other unsuccessful request that spoil the impression. I like &lt;a href=&quot;http://twitter.com/edensh&quot;&gt;Eden Shochat&lt;/a&gt; comment about cloud computing &lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTGz-cSTdJe28l_DSW37tizY8i7IsUTjcqajpzXsz5jNRro_P6o9kZsgj7sKHjrdBRzY1h2HNz7TozrXyLEKjsy7AufwmSJaMDbp7pvX_MNPOrVcVDVtCO2hkHPz88GzPVOcNfqv80cKaA/s1600-h/EDESHCOMMENT.GIF&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 98px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTGz-cSTdJe28l_DSW37tizY8i7IsUTjcqajpzXsz5jNRro_P6o9kZsgj7sKHjrdBRzY1h2HNz7TozrXyLEKjsy7AufwmSJaMDbp7pvX_MNPOrVcVDVtCO2hkHPz88GzPVOcNfqv80cKaA/s400/EDESHCOMMENT.GIF&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5336748210521257954&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Anyway Wolfram Alpha succeeds when i was searching for linear algebra&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWwOPrVAZ-MOt18NoYgoGt4mII2xxUDtA1MZyzqj9lEKUXTpvSxCFbAe5bwSIWWVi9kRPYbJMvXuNA3wErWN4x3gv2ahpYtxqRmEZ6uzIEifth8p77XyCkcPT4zzKPtMLMvGw0pgK-3zYs/s1600-h/wolframAlphaLinearAlgebra.GIF&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 356px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWwOPrVAZ-MOt18NoYgoGt4mII2xxUDtA1MZyzqj9lEKUXTpvSxCFbAe5bwSIWWVi9kRPYbJMvXuNA3wErWN4x3gv2ahpYtxqRmEZ6uzIEifth8p77XyCkcPT4zzKPtMLMvGw0pgK-3zYs/s400/wolframAlphaLinearAlgebra.GIF&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5336749469980987586&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The tool is from masters for masters. you can do a lot of cool things easily: &lt;ul&gt;&lt;li&gt; &lt;a href=&quot;http://www07.wolframalpha.com/input/?i=%7B%7B0%2C-1%7D%2C%7B1%2C0%7D%7D.%7B%7B1%2C2%7D%2C%7B3%2C4%7D%7D%2B%7B%7B2%2C-1%7D%2C%7B-1%2C2%7D%7D&quot;&gt;computing basic operations on matrixes&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www2.wolframalpha.com/Calculate/MSP/MSP3766195gh5a9237dg6ic000054caf01h0647e4da?MSPStoreType=image/gif&amp;amp;s=2&quot;&gt;finding semantic information about a date&lt;/a&gt;&lt;/li&gt;&lt;li&gt;computing how fast the distance between two cities can be reached &lt;a title=&quot;View cologneOdessaLocation on Scribd&quot; href=&quot;http://www.scribd.com/doc/15562777/cologneOdessaLocation&quot; style=&quot;margin: 12px auto 6px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;&quot;&gt;cologneOdessaLocation&lt;/a&gt; &lt;object codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&quot; id=&quot;doc_206913796956369&quot; name=&quot;doc_206913796956369&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; rel=&quot;media:document&quot; resource=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=15562777&amp;amp;access_key=key-a488mwfde5d3gamzwdl&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot; media=&quot;http://search.yahoo.com/searchmonkey/media/&quot; dc=&quot;http://purl.org/dc/terms/&quot; width=&quot;100%&quot; align=&quot;middle&quot; height=&quot;500&quot;&gt;  &lt;param name=&quot;movie&quot; value=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=15562777&amp;amp;access_key=key-a488mwfde5d3gamzwdl&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot;&gt;   &lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;   &lt;param name=&quot;play&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;loop&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;scale&quot; value=&quot;showall&quot;&gt;  &lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;   &lt;param name=&quot;devicefont&quot; value=&quot;false&quot;&gt;  &lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot;&gt;   &lt;param name=&quot;menu&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;   &lt;param name=&quot;salign&quot; value=&quot;&quot;&gt;        &lt;embed src=&quot;http://d.scribd.com/ScribdViewer.swf?document_id=15562777&amp;amp;access_key=key-a488mwfde5d3gamzwdl&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; play=&quot;true&quot; loop=&quot;true&quot; scale=&quot;showall&quot; wmode=&quot;opaque&quot; devicefont=&quot;false&quot; bgcolor=&quot;#ffffff&quot; name=&quot;doc_206913796956369_object&quot; menu=&quot;true&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; salign=&quot;&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;100%&quot; align=&quot;middle&quot; height=&quot;500&quot;&gt;&lt;/embed&gt;             &lt;span rel=&quot;media:thumbnail&quot; href=&quot;http://i.scribd.com/public/images/uploaded/31438786/pXuJOLhvaHFzi2_thumbnail.jpeg&quot;&gt;       &lt;span property=&quot;media:title&quot;&gt;cologneOdessaLocation&lt;/span&gt;   &lt;span property=&quot;dc:creator&quot;&gt;petrushyna&lt;/span&gt;       &lt;span property=&quot;dc:type&quot; content=&quot;Text&quot;&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/object&gt; &lt;div style=&quot;margin: 6px auto 3px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block;&quot;&gt;    &lt;a href=&quot;http://www.scribd.com/upload&quot; style=&quot;text-decoration: underline;&quot;&gt;Publish at Scribd&lt;/a&gt; or &lt;a href=&quot;http://www.scribd.com/browse&quot; style=&quot;text-decoration: underline;&quot;&gt;explore&lt;/a&gt; others:            &lt;a href=&quot;http://www.scribd.com/explore/Research/Science&quot; style=&quot;text-decoration: underline;&quot;&gt;Science&lt;/a&gt;                  &lt;a href=&quot;http://www.scribd.com/tag/research&quot; style=&quot;text-decoration: underline;&quot;&gt;research&lt;/a&gt;              &lt;a href=&quot;http://www.scribd.com/tag/light&quot; style=&quot;text-decoration: underline;&quot;&gt;light&lt;/a&gt;       &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;The Wolfram Alpha will play a huge role as a supportive tool for learning, same as Wikipedia, but providing deeper, non-novice knowledge . Though the usefullness of the tool, there is no or minor commercial benefit. Will Wolfram Research devote time to more common problems, e.g. &quot;how to make pan cakes?&quot; or will they focus on virtual services.&lt;br /&gt;&lt;br /&gt;Even the engine seems to have a future, one has to spend some time to undestand its logic - so it is neither user-friendly nor enough intuitive. I advice to visit &lt;a href=&quot;http://www07.wolframalpha.com/examples/&quot;&gt;Examples&lt;/a&gt; before starting with searching.&lt;br /&gt;&lt;br /&gt;Have you found what you search with &lt;a href=&quot;http://www07.wolframalpha.com/&quot;&gt;Wolfram Alpha&lt;/a&gt;?&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2009/05/wolfram-alpha-on-its-first-stage-not.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8ihBjRbIiHOxyGUO7mIt0znv-1sjDGJAFn5sMQSnqs-4lJRorljmGnkllvVHYG0lxgorFQy7VOnIBcQRTVNjtzJFJLcM-LU7NcjYZvuxoKAgszWm4ptPRKZHL5cLfp3ds93lMzLV_Nnrg/s72-c/MSP976195ghc605iggh7d9000063d13e46had2d14h.gif" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-5691714782599723313</guid><pubDate>Sat, 28 Feb 2009 21:34:00 +0000</pubDate><atom:updated>2009-03-01T00:38:22.575+01:00</atom:updated><title></title><description>From 25 February till 27 February i was a participant of &lt;a href=&quot;http://www.wi2009.at/&quot;&gt;Wirtschaftinformatics 2009&lt;/a&gt;. The conference take place in German-speaking countries of Europe(Germany, Austria and Switzerland).&lt;br /&gt;I&#39;m not &quot;Wirtschaftinformatiker&quot; hovewer the conference was so big that i found my tracks:COllaborative services and E-Learning. &lt;br /&gt;&lt;br /&gt;It is always a competition between Informatics and Wirtschaftinformatics. Researchers from the first area insist on the fact that they are doing &quot;real science&quot; - hardcore, while the others&lt;br /&gt;think that computer scientists doing something that is not always needed, without analysis what the user really require. There were some presentations/papers that i found poor from scientific point of view, e.g.&lt;br /&gt;ideas were not new or the amount of dataset entries was very low. But there were some interesting presentations and interesting people. &lt;br /&gt;&lt;br /&gt;I like &lt;a href=&quot;http://www.sysedv.tu-berlin.de/homepage/SYSEDV.nsf?Open&amp;ID=4D2F761582107303C1256B4D003F5E8C&amp;Key=56QJTM&amp;Sel=56QJTM&amp;Lang=de&quot;&gt;Matthias Trier&lt;/a&gt; presentation of &quot;Content-based Community detection in social corpora&quot;.&lt;br /&gt;The ENRON mail dataset was analysed on the existence of clusters. The research was devoted to two types of networks:a network built according to who write mail to whom and a network built based on content similarity.The clusters &lt;br /&gt;were then compared.and... no wonder!the clusters both types were not similar.people who are talking about similar things were not always connected by mails. I had the same impression in the &lt;a href=&quot;http://www.springerlink.com/content/16j05454w8682687/fulltext.pdf&quot;&gt;research of E-learning mailing lists&lt;/a&gt;. Now it &lt;br /&gt;is a challenge to find how structures of mail networks are dependent from the content the network members create.What input do actions of the network members have? does it important what roles, experience do the nodes have?&lt;br /&gt;&lt;br /&gt;&quot;Mine, yours, ...ours.Designing for princiipal-agent collaboration in interactive value creation&quot; from &lt;a href=&quot;http://www.ifi.uzh.ch/im/people/dr_jasminko_novak/&quot;&gt;Jasminco Novak&lt;/a&gt; forced me to rethink how important for users to see the system in its development state. Usually users do not know what they &lt;br /&gt;want. Exactly they do but they can not describe it. And if the users will participate in design process (review the prototypes of software) as much as they can, it might be useful to create an efficient software. It is like you are creating &lt;br /&gt;the design of your house.you can have it in your mind but if you use a software that can present how the room looks like then you can change your mind about the furniture, the color of walls, etc.&lt;br /&gt;&lt;br /&gt;Thursday was interesting only because of the keynote speaker, Mark Soley. I admit that he is a great speaker. I don&#39;t think that he presented something new, otherwise he talked about state of the art. Anyway it was useful to know that 25 millions &lt;br /&gt;computers are running with Windows 3.1. Surely it was one more event that had to be highlighted - Gala dinner in Vienna Rathaus - gorgeous and luxury. I felt myself like in a tale.&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/search/show/?q=viennaRathaus+wi2009&quot; width=&quot;400&quot; height=&quot;400&quot;&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Last day the track E-Learning took place. &quot;Der Einsatz von Online-Peer-Reviews als kollaborative Lernform&quot; from WUW (&lt;a href=&quot;http://www.unet.univie.ac.at/~a9701800/&quot;&gt;Christine Bauer&lt;/a&gt; and &lt;a href=&quot;http://www.cs.univie.ac.at/employee.php?eid=242&amp;tab=projects&quot;&gt;Kathrin Figl&lt;/a&gt;) was about peer reviews that were done by students to analyse the papers that they read. We have &lt;br /&gt;proseminar now for our bachelors and it may be efficient to ask students review papers of others. And surely it save the working time of assitents ;-)&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2009/02/from-25-february-till-27-february-i-was.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5230451485417582278.post-5443745669336090210</guid><pubDate>Thu, 25 Dec 2008 22:19:00 +0000</pubDate><atom:updated>2008-12-28T21:57:07.431+01:00</atom:updated><title>My summary of the year</title><description>I decided not to wait till 31st of December and write down the summary of this year today.&lt;br /&gt;&lt;br /&gt;I started to work as a research assistant at &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/&quot;&gt;Information Systems and Databases Chair&lt;/a&gt; in &lt;a href=&quot;http://rwth-aachen.de/&quot;&gt;RWTH Aachen University&lt;/a&gt; from March, 2008. That is my first working position after i finish &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/lehrstuhl/staff/petrushyna/masterthesis/myThesis.pdf&quot;&gt;my master thesis&lt;/a&gt;. I&#39;m happy to have helpful and positive colleagues. You can find some of them in blogosphere -&lt;a href=&quot;http://yiweicao.blogspot.com/&quot;&gt;Yiwei Cao&lt;/a&gt;, &lt;a href=&quot;http://beamtenherrschaft.blogspot.com/&quot;&gt;Ralf Klamma&lt;/a&gt;, &lt;a href=&quot;http://mohamedaminechatti.blogspot.com/&quot;&gt;Amine Chatti&lt;/a&gt;,  and most in Facebook:)&lt;br /&gt;&lt;br /&gt;My work starts with supporting my colleagues in writing &lt;a href=&quot;http://cordis.europa.eu/fp7/ict/home_en.html&quot;&gt;EU ICT&lt;/a&gt; proposals. By the way, new &lt;a href=&quot;http://cordis.europa.eu/fp7/dc/index.cfm?fuseaction=UserSite.FP7ActivityCallsPage&amp;amp;id_activity=3&quot;&gt;calls&lt;/a&gt; are opened, if you are interested.&lt;br /&gt;&lt;br /&gt;I&#39;m working as well in &lt;a href=&quot;http://www.cuelc.eu/&quot;&gt;CUELC&lt;/a&gt; project. It is EU Tempus project together with &lt;a href=&quot;http://www.cu.edu.eg/english/&quot;&gt;Cairo University(CU)&lt;/a&gt; and &lt;a href=&quot;http://www.it-sudparis.eu/&quot;&gt;INT Sud Paris&lt;/a&gt;. We have managed to organize the visitation of Egyptians to European colleagues and vice versa. The first one was organized in Aachen as a workshop &quot;Challenges for intercultural virtual campus systems&quot; together with &lt;a href=&quot;http://www.fk-427.de/&quot;&gt;Forschungskolleg &lt;/a&gt;in Cologne. The main topic of discussion were E-Learning systems of universities(&lt;a href=&quot;http://www.rwth-aachen.de/&quot;&gt;RWTH Aachen&lt;/a&gt; and &lt;a href=&quot;http://www.open.ac.uk/&quot;&gt;Open University&lt;/a&gt;(we visited &lt;a href=&quot;http://www.ou.nl/&quot;&gt;Heerlen OU&lt;/a&gt; - thanks &lt;a href=&quot;http://elgg.ou.nl/ske/&quot;&gt;Sebastian Kelle&lt;/a&gt;)) and intercultural communications.&lt;br /&gt;&lt;pre id=&quot;line926&quot;&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/slideShow/index.gne?tags=cuelcworkshop08&quot; width=&quot;400&quot; height=&quot;400&quot;&gt;&lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Next visitation was organized by &lt;a href=&quot;http://www.cu.edu.eg/english/&quot;&gt;CU &lt;/a&gt;in Egypt where &lt;a href=&quot;http://www.prolearn-academy.org/Events/Past%20Events/SS05/Speakers/Katherine%20Maillet/&quot;&gt;Katherine Maillet&lt;/a&gt; and me participated in &lt;a href=&quot;http://www.distant-learning.net/index.htm&quot;&gt;ICT Learn conference&lt;/a&gt;. We  got an actual status of &lt;a href=&quot;http://en.wikipedia.org/wiki/Personal_Learning_Environment&quot;&gt;PLEs &lt;/a&gt;and other E-Learning systems in Middle East. &lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/slideShow/index.gne?tags=ictlearn2008&quot; width=&quot;400&quot; height=&quot;400&quot;&gt; &lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Last day we had the productive discussion with Magda Fayek and Ahmed Hefny about &lt;a href=&quot;http://www.cuelc.eu/Events/cuelc-programming-competition-code-conquer/&quot;&gt;next CUELC programming competition&lt;/a&gt;(the &lt;a href=&quot;http://www.cuelc.eu/Events/cuelc-programming-competition/1st-cuelc-programming-competition-2008&quot;&gt;first &lt;/a&gt;one was finished recently - the happy winners&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/photos/28062892@N06/tags/winners/show/&quot; width=&quot;400&quot; height=&quot;400&quot;&gt; &lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;got there iPods Shuffles). I want to thank again colleagues Professor Samir, Professor Nevin, and Dr. Magda Fayek for great organization of our meeting in Cairo.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/photos/28062892@N06/tags/cairouniversity/show/&quot; width=&quot;400&quot; height=&quot;400&quot;&gt; &lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Some of my colleagues and i participated in annual &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008&quot;&gt;PROLEARN Summer School&lt;/a&gt;. Numerous interesting contacts and lectures made the event very useful for many of PhD students and their future works. Our research group was presented by &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/workshops/mobile-and-contextualized-learning/&quot;&gt;&quot;Mobile and Contextualised Learning&quot; workshop&lt;/a&gt;, done by Anna, Dominik, Ralf and me. Firstly we organised the set of Flashmeetings&lt;br /&gt;&lt;ul&gt; &lt;li&gt; &lt;a href=&quot;http://fm.ea-tel.eu/fm/133d84-13707&quot;&gt;Flashmeeting from 09.06&lt;/a&gt; &lt;/li&gt;&lt;br /&gt;&lt;li&gt; &lt;a href=&quot;http://fm.ea-tel.eu/fm/1de123-13708&quot;&gt;Flashmeeting from 10.06&lt;/a&gt; &lt;/li&gt;&lt;br /&gt;&lt;li&gt; &lt;a href=&quot;http://fm.ea-tel.eu/fm/73d4fc-13709&quot;&gt;Flashmeeting from 11.06&lt;/a&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;and after that we had the real &lt;a href=&quot;http://www.slideshare.net/annagl/mobile-and-contextualized-learning&quot;&gt;presentation &lt;/a&gt;in Summer School. Truly, it was challengeable to organize all the staff, but a good lesson for us. Anyway, summer school left very bright memories. Great thanks to organization comitee: &lt;a href=&quot;http://www.prolearn-academy.org/Events/Past%20Events/SS05/Speakers/Katherine%20Maillet/&quot;&gt;Katherine Maillet&lt;/a&gt;, Klime Poposki, &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/speakers/liliane-esnault&quot;&gt;Liliane Esnault&lt;/a&gt;, &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/speakers/rklamma&quot;&gt;Ralf Klamma&lt;/a&gt;, &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/speakers/tklobucar&quot;&gt;Tomaz Klobucar&lt;/a&gt;, &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/speakers/naeve&quot;&gt;Ambjörn Naeve&lt;/a&gt;, &lt;a href=&quot;http://www.prolearn-academy.org/Events/summer-school-2008/speakers/Margit-Hofer&quot;&gt;Margit Hofer&lt;/a&gt; and many others.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;I&#39;m a member of International Recruiting Team of &lt;a href=&quot;http://www.rwth-aachen.de/&quot;&gt;RWTH Aachen&lt;/a&gt;, organized within &lt;a href=&quot;http://en.wikipedia.org/wiki/German_Universities_Excellence_Initiative&quot;&gt;Excellence Initiative&lt;/a&gt;. The idea of the group is to promote our institution between students all over the world. In the frames of this activity colleagues from &lt;a href=&quot;http://www.rwth-aachen.de/go/id/gs/&quot;&gt;International Office&lt;/a&gt; and i was in the business trip in Sankt-Petersburg and Kiev. The trip was organized by &lt;a href=&quot;http://www.daad.de/&quot;&gt;DAAD&lt;/a&gt; and had all types of bustles - usual for post-soviet countries. I got acquainted &lt;span style=&quot;line-height: 115%;font-family:&amp;quot;;font-size:12;&quot;   lang=&quot;EN-US&quot;&gt;&lt;/span&gt;with representatives of many German universities and colleges as well as with their institution marketing that is useful for us. I hope that next year we will manage to make more in so called &quot;online brand management&quot;. I think that we should focus on different social network sites as well as social network services to inform and consult potential students and their forces(people who influence on choice of university) about &lt;a href=&quot;http://www.rwth-aachen.de/&quot;&gt;RWTH Aachen&lt;/a&gt;.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;September was full of conferences: firstly &lt;a href=&quot;http://i-know.tugraz.at/about/previous_conferences/i_know_08&quot;&gt;I-KNOW&lt;/a&gt; - together with Anna, Ralf and Yiwey we wrote &lt;span style=&quot;font-style: italic;&quot;&gt;Getting to &quot;Know&quot; People on the Web 2.0&lt;/span&gt; paper; the second one was &lt;a href=&quot;http://ectel08.org/&quot;&gt;EC-TEL&lt;/a&gt;, where Ralf and I had a presentation about &lt;a style=&quot;font-style: italic;&quot; href=&quot;http://www.springerlink.com/content/16j05454w8682687/fulltext.pdf&quot;&gt;No Guru, No Method, No Teacher: Self-Oberservation and Self-Modelling of E-Learning Communities&lt;/a&gt;; the third was &lt;a href=&quot;http://www.digitale-soziale-netze.de/&quot;&gt;digital social network workshop&lt;/a&gt; on the day of &lt;a href=&quot;http://www.gi-ev.de/&quot;&gt;GI&lt;/a&gt;, where we had the paper about our Media Base - &lt;span style=&quot;font-style: italic;&quot;&gt;The Troll Under the Bridge: Data Management for Huge Web Science Mediabases&lt;/span&gt;. For each of the events i made many of notes  - now i understand that i should post it earlier)&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;In October our students, &lt;a href=&quot;http://www.christianhocken.de/&quot;&gt;Christian Hocken&lt;/a&gt; and Dominik Renzel, organized annual &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/developersday/&quot;&gt;Developer&#39;s Day&lt;/a&gt;, that has many interesting presentations. I like discussions.&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;&lt;object style=&quot;margin-top: 0pt; padding-top: 0pt;&quot; type=&quot;text/html&quot; data=&quot;http://www.flickr.com/photos/23472537@N07/tags/dday08/show/&quot; width=&quot;400&quot; height=&quot;400&quot;&gt; &lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Except of all these projects and conferences we have teaching tasks and this year i&#39;m one of the supervisors of exciting &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/lehrstuhl/lehre/UGNM08-09/index.html&quot;&gt;Hightech Entrepreneurship and New Media&lt;/a&gt; practical course. Students of my group work with &lt;a href=&quot;http://www.localite.de/&quot;&gt;Localite company&lt;/a&gt; and develop a system that will help the company to organize products, contracts and correspondence in a better way(interactive and web2.0 based). I&#39;m looking forward for their results.&lt;br /&gt;&lt;br /&gt;Last, but not least was the organization of Christmas celebration in the chair together with other new colleagues: &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/lehrstuhl/staff/geisler/index.html&quot;&gt;Sandra Geisler&lt;/a&gt;, &lt;a href=&quot;http://www.isk.rwth-aachen.de/ebirk.html&quot;&gt;Elisabeth Birk&lt;/a&gt;, &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/lehrstuhl/staff/rashed/index.html&quot;&gt;Khaled A.N. Rashed&lt;/a&gt;, &lt;a href=&quot;http://www-i5.informatik.rwth-aachen.de/lehrstuhl/staff/pham/index.html&quot;&gt;Man Cuong Pham&lt;/a&gt;, and &lt;a href=&quot;http://www-kbsg.informatik.rwth-aachen.de/user/13&quot;&gt;Vaishak Belle&lt;/a&gt;. I hope that was a lot of fun, at least for the organization team.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;Happy Holidays for all of readers!!!&lt;br /&gt;&lt;/div&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0pMwBROPUNtoSyy5vjLmSPYBQjCG8F-BDT2Z1dPE_tE18CvqTD0BCS5wlh-WkSSZuJWeALbkpMB3lUZuzQ3HRNRA57ZHLEc7fB0WtYLzvYA12QJIE51-70eqrsp1s93DB18Pd79TY6UBS/s1600-h/P1040341-1280_002.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 300px; height: 400px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0pMwBROPUNtoSyy5vjLmSPYBQjCG8F-BDT2Z1dPE_tE18CvqTD0BCS5wlh-WkSSZuJWeALbkpMB3lUZuzQ3HRNRA57ZHLEc7fB0WtYLzvYA12QJIE51-70eqrsp1s93DB18Pd79TY6UBS/s400/P1040341-1280_002.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5284906831860526194&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;if you want to follow what i&#39;m posting about.&lt;/div&gt;</description><link>http://technology-with-sense.blogspot.com/2008/12/my-summary-of-year.html</link><author>noreply@blogger.com (Zinayida Kensche)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0pMwBROPUNtoSyy5vjLmSPYBQjCG8F-BDT2Z1dPE_tE18CvqTD0BCS5wlh-WkSSZuJWeALbkpMB3lUZuzQ3HRNRA57ZHLEc7fB0WtYLzvYA12QJIE51-70eqrsp1s93DB18Pd79TY6UBS/s72-c/P1040341-1280_002.jpg" height="72" width="72"/><thr:total>0</thr:total></item></channel></rss>