<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
>
<channel>
<title>Solution Grove Blog</title>
<link>http://www.solutiongrove.com/blogger/</link>
<description>Solution Grove Blog</description>
<generator>OpenACS 5.0</generator>
<lastBuildDate>Mon, 12 Apr 2010 00:23:06 GMT</lastBuildDate>
<image>
<title>Solution Grove Blog</title>
<url>http://www.solutiongrove.com/resources/lars-blogger/sgrove.jpg</url>
<link>http://www.solutiongrove.com/blogger/</link>
<width>145</width>
<height>100</height>
</image>
<item>
<title>Microsoft Office Plugin for Moodle</title>
<link>http://www.solutiongrove.com/blogger/2010/04/11/microsoft-office-plugin-for-moodle</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/04/11/microsoft-office-plugin-for-moodle</guid>
<description>
Microsoft Education Labs has a free Office Addon for Moodle. This addon allows teachers or the owner of a Moodle course to upload documents to their course and access Moodle documents from within Office. Once the addon is installed to Office two items are added to the file menu: Open from Moodle, and Save to Moodle.


&amp;nbsp;The user configures the address of their Moodle server and logs in with their Moodle login. After this the user can access Moodle files from Office.&amp;nbsp;


&amp;nbsp;T...</description>
<content:encoded><![CDATA[<p>
Microsoft Education Labs has a free <a href="http://www.educationlabs.com/projects/officeaddinformoodle/Pages/default.aspx">Office Addon for Moodle</a>. This addon allows teachers or the owner of a Moodle course to upload documents to their course and access Moodle documents from within Office. Once the addon is installed to Office two items are added to the file menu: Open from Moodle, and Save to Moodle.
</p>
<p>
&nbsp;The user configures the address of their Moodle server and logs in with their Moodle login. After this the user can access Moodle files from Office.&nbsp;
</p>
<p>
&nbsp;The addon works with Office 2003 and 2007 and Moodle 1.8.x and 1.9.x. The My Courses should be installed for the addon to work. No additional Moodle modules are required for the addon to work.
</p>
<p>
&nbsp;
</p>
]]></content:encoded>
<pubDate>Mon, 12 Apr 2010 00:23:06 GMT</pubDate>
</item>
<item>
<title>Lessons learned on making Elgg and Google OpenID+OAuth talk to each other</title>
<link>http://www.solutiongrove.com/blogger/2010/03/30/lessons-learned-on-making-elgg-and-google-openid-oauth-talk-to-each-other</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/03/30/lessons-learned-on-making-elgg-and-google-openid-oauth-talk-to-each-other</guid>
<description>
For the past couple of weeks, I've used some of my time to write code that adds support for Federated Login for Google Account Users to an Elgg instance. This particular project's requirements don't end with just an implementation of Single Sign-On (SSO) but it also needs to have access to some of the user's Google Apps Data.&amp;nbsp; Because of this, I decided to use Google's OpenID+OAuth Hybrid protocol, which is a good fit for the requirements.

The first thing I did was to register the do...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:right;padding:0 0 10px 15px;"><img src="http://www.solutiongrove.com/image/1357113/1357113_handshake.jpg" border="0"><br>(photo by <a href="http://www.flickr.com/photos/jimmyroq/3921764912/">jimmyroq</a>)</div><p>
For the past couple of weeks, I've used some of my time to write code that adds support for <a href="http://code.google.com/apis/accounts/docs/OpenID.html" target="_blank">Federated Login for Google Account Users</a> to an <a href="http://elgg.org" target="_blank">Elgg</a> instance. This particular project's requirements don't end with just an implementation of Single Sign-On (SSO) but it also needs to have access to some of the user's Google Apps Data.&nbsp; Because of this, I decided to use Google's <a href="http://openid.net" target="_blank">OpenID</a>+<a href="http://oauth.net" target="_blank">OAuth</a> <a href="http://code.google.com/apis/accounts/docs/OpenID.html#oauth" target="_blank">Hybrid protocol</a>, which is a good fit for the requirements.<br />
<br />
The first thing I did was to register the domain of the application I'm writing with Google.&nbsp; You can read instructions on how to do this <a href="http://code.google.com/apis/accounts/docs/RegistrationForWebAppsAuto.html" target="_blank">here</a>.&nbsp; After I've validated the domain, I now need to write the interface to Google's OpenID+OAuth Hybrid protocol.&nbsp; The goal is to have SSO working with the capability to automatically create users on the Elgg side and map them to the proper Google account and to be able to request access to Google services.<br />
<br />
I searched the plugins page for Elgg if anyone already wrote such a module and I got two results that piqued my interest.&nbsp; These are Kevin Jardine's <a href="http://community.elgg.org/pg/plugins/kevin/read/433999/openid-client" target="_blank">OpenID client</a> plugin and Justin Richer's <a href="http://community.elgg.org/pg/plugins/jricher/read/385119/oauth" target="_blank">OAuth</a> plugin.
</p>
<p>
The OAuth plugin assumes that the users already have an Elgg account.&nbsp; It is a good solution if you'll solely need an OAuth interface but not really ideal for what I'm trying to implement.&nbsp; The OpenID client plugin is promising but it's more focused on interfacing with OpenID servers whose endpoint supports the passing of a username which is not the case with Google. Google's authentication is achieved by having the user go to an authentication page and then returning a Google-supplied identifier on success.&nbsp; The value of this identifier is also unique for every relaying party (openid.realm) so another application will get a different value even if it's the same Google account.<br />
<br />
Even if I can't use the OpenID client plugin there are still parts of it which are very useful.&nbsp; These are the Elgg integration points like the different APIs that call the different OpenID methods and the Elgg-specific OpenID Store that will keep track of the different OpenID associations and nonces.&nbsp; Because of this, I'll use some bits and pieces of the plugin as a starting point and just make it specific to work with Google.&nbsp; For the actual display of the authentication page, I used Google's <a href="http://code.google.com/p/gdata-samples/source/browse/trunk/hybrid/popuplib.js" target="_blank">PopupManager Javascript Library</a> to launch a popup window that goes to Google's OpenID endpoint.&nbsp; For an example on how this library works, visit this <a href="http://googlecodesamples.com/hybrid" target="_blank">online demo for Google hybrid</a>.&nbsp; You can checkout the source code of this demo <a href="http://code.google.com/p/gdata-samples/source/checkout" target="_blank">here</a> (look under the hybrid folder).&nbsp; Using also some code snippets from the Google hybrid source code I am able to leverage Zend Gdata to request and process some of the user's data on Google services.&nbsp; Since I based most of the authentication sequence using the Google hybrid sample code, it's also fit to mention that it uses JanRain, Inc's <a href="http://www.openidenabled.com/php-openid/" target="_blank">OpenID PHP library</a> and Andy Smith's <a href="http://oauth.googlecode.com/svn/code/php/OAuth.php" target="_blank">basic PHP library for OAuth</a>.<br />
<br />
This code is now in testing and I'm in the process of ironing out any issues we find.&nbsp; When it has proved to be stable I'll package up the plugin and release it for public consumption.
</p>
<p>
&nbsp;
</p>
<p>
<a href="/xowiki/elgg"><em>Read more about Solution Grove's Elgg-related work</em></a> 
</p>
]]></content:encoded>
<pubDate>Tue, 30 Mar 2010 13:44:21 GMT</pubDate>
</item>
<item>
<title>Granting Certificates in Moodle</title>
<link>http://www.solutiongrove.com/blogger/2010/03/22/granting-certificates-in-moodle</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/03/22/granting-certificates-in-moodle</guid>
<description>
The Certificates module for Moodle will allow granting certificates based on completion of a Moodle activity.It allows uploading graphics and setting the style of the generatied certificate. Once a user has met the minimum criteria they can download a PDF and print their certificate.


There are several options for setting criteria for granting a certificate. These include overall course grade, time spent in the course, and ability to require one or more activities be completed, optionall...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1354064/1354064_certificate.gif" border="0"></div><p>
The Certificates module for Moodle will allow granting certificates based on completion of a Moodle activity.It allows uploading graphics and setting the style of the generatied certificate. Once a user has met the minimum criteria they can download a PDF and print their certificate.
</p>
<p>
There are several options for setting criteria for granting a certificate. These include overall course grade, time spent in the course, and ability to require one or more activities be completed, optionally with a minimum grade for the activities. Any of these requirements can be combined to determine when a student receives a certificate.
</p>
<p>
&nbsp;Images can be uploaded to style the borders and include a watermark if desired. A signature image can be included, and of course, a logo can be uploaded.
</p>
<p>
The course administrator can choose to display the grade and, or various learning outcomes onto the certificate.
</p>
<p>
The certificate module is well <a href="http://docs.moodle.org/en/Certificate_module">documented in the Moodle Wiki</a>. 
</p>
]]></content:encoded>
<pubDate>Mon, 22 Mar 2010 18:32:34 GMT</pubDate>
</item>
<item>
<title>Collaborative online Role Playing Games for Learning useing LAMS</title>
<link>http://www.solutiongrove.com/blogger/2010/03/15/collaborative-online-role-playing-games-for-learning-useing-lams</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/03/15/collaborative-online-role-playing-games-for-learning-useing-lams</guid>
<description>
The University of Girona, Spain recently published a paper &amp;quot;Modelling Role-Playing Game as a Unit of Learning to Encourage Cooperative Learning&amp;quot; This paper details how they will use the Learning Activities Management System (LAMS) and .LRN, an LMS to run role playing games as learning experiences.


There is a great deal of interest in serious games for learning right now and this is an excellent example of the power of LAMS. The image shows what the design looks like in LAMS. ...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1351014/1351014_LAMS_of_a_Roleplaying_Game.png" border="0"><br>(photo by <a href="http://www.docstoc.com/docs/28447297/MODELLING-ROLE-PLAYING-GAME-AS-A-UNIT-OF-LEARNING-TO-ENCOURAGE">LAMS Activity p. 6</a>)</div><p>
The University of Girona, Spain recently published a paper <a href="/Users/caroline/Desktop/LAMS%20of%20a%20Roleplaying%20Game.png">&quot;Modelling Role-Playing Game as a Unit of Learning to Encourage Cooperative Learning&quot;</a> This paper details how they will use the Learning Activities Management System (LAMS) and .LRN, an LMS to run role playing games as learning experiences.
</p>
<p>
There is a great deal of interest in serious games for learning right now and this is an excellent example of the power of LAMS. The image shows what the design looks like in LAMS. 
</p>
]]></content:encoded>
<pubDate>Mon, 15 Mar 2010 14:08:52 GMT</pubDate>
</item>
<item>
<title>Urgent Evoke a Game for Social Entrepenuers has put the Fun into Functional</title>
<link>http://www.solutiongrove.com/blogger/2010/03/04/urgent-evoke-a-game-for-social-entrepenuers-has-put-the-fun-into-functional</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/03/04/urgent-evoke-a-game-for-social-entrepenuers-has-put-the-fun-into-functional</guid>
<description>
Is facebook a game? Is eBay? YouTube?


Amy Jo Kim makes a case that they are in her Google TechTalk on Putting the Fun in Functional: Applying Game Mechanics to Functional Software.



On the other side Urgent Evoke, one of the new genre of serious games, presents itself as a game. 


But really game or not is not the question. The quesiton is, is the experience fun?


Game mechanics can make life more fun. Games reinformce your behavior and keep you in Flow.


&amp;nbsp;Amy's t...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1346889/1346889_evoke.jpg" border="0"><br>(photo by <a href="http://www.urgentevoke.com">Urgent Evoke</a>)</div><p>
Is facebook a game? Is eBay? YouTube?
</p>
<p>
Amy Jo Kim makes a case that they are in her Google TechTalk on <a href="http://www.youtube.com/watch?v=ihUt-163gZI">Putting the Fun in Functional: Applying Game Mechanics to Functional Software.
</a>
</p>
<p>
On the other side Urgent Evoke, one of the new genre of serious games, presents itself as a game. 
</p>
<p>
But really game or not is not the question. The quesiton is, is the experience fun?
</p>
<p>
Game mechanics can make life more fun. Games reinformce your behavior and keep you in Flow.
</p>
<p>
&nbsp;Amy's talk gives some examples.
</p>
<ul>
	<li>Points - remember, variable reinforement is more effective) </li>
	<li>Collecting - for instance friends. </li>
	<li>Completeing a set - badges or in Urgent Evoke's case you get to complete missions</li>
	<li>Leaderboards</li>
	<li>Feedback, both from the system and from other players, graphic presentation of it</li>
	<li>Structured social exchange - leaving comments, giving points for each other </li>
	<li>Customization - create your secret identity!</li>
</ul>
<p>
Life should be fun. I think even the most serious of sites should look at these elements.&nbsp; Engagement is important in everything.
</p>
<p>
&nbsp;
</p>
<p>
P.S. Friend me on Evoke and lets save the world together! <a href="http://www.urgentevoke.com/profile/CarolineMeeks ">http://www.urgentevoke.com/profile/CarolineMeeks 
</a>
</p>
]]></content:encoded>
<pubDate>Thu, 04 Mar 2010 21:47:27 GMT</pubDate>
</item>
<item>
<title>LAMS for Moodlers</title>
<link>http://www.solutiongrove.com/blogger/2010/03/02/lams-for-moodlers</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/03/02/lams-for-moodlers</guid>
<description>
In the iMoot 2010 Conference held on February 4th, Ernie Ghiglione did a presentation showing Moodle users the benefits they can get from LAMS using their own Moodle concepts.


Moodle&amp;nbsp;is an open-source-learning software, a Course Manangement System, also known as Learning Management System (LMS), which helps teachers create online learning courses with a focus on interaction.&amp;nbsp; On the other hand, LAMS is a tool for designing, managing, and delivering online collaborative learnin...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1346508/1346508_LAMS_logo.jpg" border="0"></div><p>
In the iMoot 2010 Conference held on February 4th, Ernie Ghiglione did a presentation showing Moodle users the benefits they can get from LAMS using their own Moodle concepts.
</p>
<p>
<a href="http://moodle.org/" target="_blank">Moodle</a>&nbsp;is an open-source-learning software, a Course Manangement System, also known as Learning Management System (LMS), which helps teachers create online learning courses with a focus on interaction.&nbsp; On the other hand, <a href="http://www.lamsfoundation.org/" target="_blank">LAMS</a> is a tool for designing, managing, and delivering online collaborative learning activities. It provides educators with a visual authoring environment for creating sequences of learning activities.&nbsp; While both are great tools for promoting online learning, one is effective in creating and managing courses and the latter enhances the first by making the activities within the course <em>sequential</em>.
</p>
<p>
LAMS is all about sequencing, from the creation of activities to running them with the students all the way to monitoring their progress.&nbsp; LAMS provides specific order by which students can do their activities, the way in which teacher intended.&nbsp; It allows the students to learn together and make progress through the sequence of activities. Everyone is on the same page.&nbsp;
</p>
<p>
<em>Branching</em>, a tool inside LAMS, allows authors to create several routes through a sequence.&nbsp; Branching can be based on the following:
</p>
<ul>
	<li>output from the text that the students submit (thus, if a student answers X and not Y, he will follow a different path from the one that answered the opposite)</li>
	<li>output from any assessment or test (the route or branch that each student will follow depends on te result of the test of assessment)</li>
	<li>groups (each student will follow a branch or path depending on the group to which he belongs)</li>
	<li>The teachers or students decide where they want to go.</li>
</ul>
<p>
Once the students begin and move forward through the sequence of activities, teachers are able to monitor and follow up on the progress of the students.&nbsp; Furthermore, teachers also get to share their activities and teaching practices with other educators by exporting the sequences.&nbsp; Other educators may use existing sequences and then tailor or customize them according to their requirements.
</p>
<p>
View the full presentation of LAMS for Moodlers here.
</p>
<div id="__ss_3064147" style="width: 425px">
<strong style="display: block; margin: 12px 0pt 4px"><a href="http://www.slideshare.net/ernieg/lams-for-moodlers" title="LAMS for Moodlers">LAMS for Moodlers</a></strong>
<object height="355" width="425">
	<param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=imoot2010-100203151039-phpapp02&amp;stripped_title=lams-for-moodlers">
	</param>
	<param name="allowFullScreen" value="true">
	</param>
	<param name="allowScriptAccess" value="always">
	</param>
	<embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=imoot2010-100203151039-phpapp02&amp;stripped_title=lams-for-moodlers" allowfullscreen="true" type="application/x-shockwave-flash" height="355" width="425"></embed>
</object>
<div style="padding: 5px 0pt 12px">
<br />
</div>
</div>
]]></content:encoded>
<pubDate>Tue, 02 Mar 2010 09:10:05 GMT</pubDate>
</item>
<item>
<title>Middle Markets and Social Networking</title>
<link>http://www.solutiongrove.com/blogger/2010/02/24/middle-markets-and-social-networking</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/02/24/middle-markets-and-social-networking</guid>
<description>
Social networking has grown and spread through all ages and fields since its birth in the market about 24 months ago.&amp;nbsp; Everyone, if not the majority, has adopted the social networking fashion.&amp;nbsp; 


An interesting article talks about the social networking strategies that middle market companies are implementing these days.&amp;nbsp; Corporate leaders are beginning to see the value in social networking and how it can make business better by increasing business and employee efficiency, ...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:right;padding:0 0 10px 15px;"><img src="http://www.solutiongrove.com/image/1345643/1345643_3983492410_6bb8f156d9_m.jpg" border="0"><br>(photo by <a href="http://www.flickr.com/photos/shahriarhkhan/3983492410/sizes/s/">shahriarhkhan</a>)</div><p>
Social networking has grown and spread through all ages and fields since its birth in the market about 24 months ago.&nbsp; Everyone, if not the majority, has adopted the social networking fashion.&nbsp; 
</p>
<p>
An interesting article talks about the social networking strategies that middle market companies are implementing these days.&nbsp; Corporate leaders are beginning to see the value in social networking and how it can make business better by increasing business and employee efficiency, decreasing training and development costs. &quot;E<span class="bigsmalltallline">mployees are actually interested in 
using social networking; thereby increasing the likelihood of adoption 
and decreasing the time, budget, and resources required for training and
education.</span>&quot; 
</p>
<p>
3 things that companies or enterprises can benefit from social networking are as follows:
</p>
<ul>
	<li><strong>Employees welcome the use of social networking.</strong><br />
	Most employees have already become familiar with the concept of social networking, thus, dramatically reducing the learning curve. </li>
</ul>
<ul>
	<li><strong>Enterprises can start with smaller and contained initiatives.</strong><br />
	Some projects can be implemented within weeks or even days, allowing the enterprise to learn and adjust without committing significant budgets up front.</li>
</ul>
<ul>
	<li><strong>Communities will develop and be grown organically by the employees themselves.</strong>&nbsp; <br />
	As employees participate and get involved with forming and evolving communities, they take ownership and become more committed, thus, ensuring more success.&nbsp; The social networking phenomenon is largely based on the masses creating the value, rather than on a top-down approach.</li>
</ul>
<p>
For these reasons, middle market companies find it advantageous to invest in social networking strategies from within their firewall or what we may call <em>intranet</em>.&nbsp; ELGG is just one of the many softwares that cater to the social networking needs of most middle markets. It may be a good move to look into how ELGG can answer your own company's social need. 
</p>
<p>
To read more about the article, click <a href="http://www.internetevolution.com/author.asp?section_id=834&amp;doc_id=187665&amp;f_src=internetevolution_gnews" target="_blank">here</a>. 
</p>
]]></content:encoded>
<pubDate>Wed, 24 Feb 2010 23:49:08 GMT</pubDate>
</item>
<item>
<title>FBI probing school webcam spying case</title>
<link>http://www.solutiongrove.com/blogger/2010/02/22/fbi-probing-school-webcam-spying-case</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/02/22/fbi-probing-school-webcam-spying-case</guid>
<description>
There has been a case in the new lately of a student suing a school district for spying on them at home with a school laptop.&amp;nbsp; It reminded me of this video of a 1:1 school in NYC.


&amp;nbsp;http://www.pbs.org/wgbh/pages/frontline/digitalnation/learning/schools/how-google-saved-a-school.html?play 


At about 4:38 in the video you can watch the administrator using this capability. I think it is completely legal inside the school.&amp;nbsp; The whole video is worth watching and its interes...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:right;padding:0 0 10px 15px;"><img src="http://www.solutiongrove.com/image/1342463/1342463_Webcam-spy.png" border="0"><br>(photo by <a href="http://www.pbs.org/wgbh/pages/frontline/digitalnation/learning/schools/how-google-saved-a-school.html?play">Digital Nation</a>)</div><p>
There has been a case in the new lately of a student suing a school district for spying on them at home with a school laptop.&nbsp; It reminded me of this video of a 1:1 school in NYC.
</p>
<p>
<a href="http://www.pbs.org/wgbh/pages/frontline/digitalnation/learning/schools/how-google-saved-a-school.html?play">&nbsp;http://www.pbs.org/wgbh/pages/frontline/digitalnation/learning/schools/how-google-saved-a-school.html?play </a>
</p>
<p>
At about 4:38 in the video you can watch the administrator using this capability. I think it is completely legal inside the school.&nbsp; The whole video is worth watching and its interesting that they included this disturbing clip in an overall very positive piece.
</p>
<p>
Details on the current case: <a href="http://www.eschoolnews.com/2010/02/20/official-fbi-probing-school-webcam-spying-case/">http://www.eschoolnews.com/2010/02/20/official-fbi-probing-school-webcam-spying-case/ </a>
</p>
]]></content:encoded>
<pubDate>Mon, 22 Feb 2010 21:13:28 GMT</pubDate>
</item>
<item>
<title>Grassroots/Entrepreneurial Schools in Pakistan</title>
<link>http://www.solutiongrove.com/blogger/2010/02/22/grassroots-entrepreneurial-schools-in-pakistan</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/02/22/grassroots-entrepreneurial-schools-in-pakistan</guid>
<description>

The Harvard Kennedy School Magazine did a fascinating article about schooling in Pakistan.&amp;nbsp; There are 47,000 private schools in Pakistan.&amp;nbsp; Students in the private schools out performed those in public schools.&amp;nbsp; Most of these schools are run by one educated woman. There was a minimal difference, 2%, if the teacher had post-secondary education.


&amp;nbsp;Private schools were in competition so it kept the price down. The average is 60 rupees a month, less then a day's unskille...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1341958/1341958_pakistan.jpg" border="0"><br>(photo by <a href="http://www.hks.harvard.edu/news-events/publications/hks-magazine/archives/winter-2010/learning-from-pakistan/">Learning from Pakistan</a>)</div><span class="Apple-style-span" style="border-collapse: separate; color: #000000; font-family: Times; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium"><span class="Apple-style-span" style="font-family: arial; font-size: small">
<p>
<font face="verdana, sans-serif">The Harvard Kennedy School Magazine did a fascinating article about schooling in Pakistan.&nbsp; There are 47,000 private schools in Pakistan.&nbsp; Students in the private schools out performed those in public schools.&nbsp; Most of these schools are run by one educated woman. There was a minimal difference, 2%, if the teacher had post-secondary education.</font>
</p>
<p>
<font face="verdana, sans-serif">&nbsp;Private schools were in competition so it kept the price down. The average is 60 rupees a month, less then a day's unskilled wages.&nbsp; Thus its not surprising to see that the teachers in these private schools earned quite a bit less then those in public schools.</font>
</p>
<p>
<font face="verdana, sans-serif">&nbsp;Another interesting finding was that &quot;</font><span class="Apple-style-span" style="color: #333333; line-height: 21px"><font face="verdana, sans-serif">parents were relatively aware, regardless of whether they were literate or illiterate, of how different schools performed and how hardworking, or prone to absenteeism, the teachers were.&quot;</font></span><font face="verdana, sans-serif"></font>
</p>
<p>
<font face="verdana, sans-serif">As we think about education in the developing world I think one thing we should be thinking about how to support these high school educated entrepreneurs who start their own schools. How can we help them improve their pedagogy?&nbsp; In some ways this may be easier then improving the government schools because they face competitive forces. If the parents think a school is doing a better job they will immediately get more students and more money.&nbsp;</font>
</p>
</span></span>
<p>
&nbsp;
The full article is here: <a href="http://www.hks.harvard.edu/news-events/publications/hks-magazine/archives/winter-2010/learning-from-pakistan/">http://www.hks.harvard.edu/news-events/publications/hks-magazine/archives/winter-2010/learning-from-pakistan/</a>
</p>
<p>
&nbsp;
</p>
]]></content:encoded>
<pubDate>Mon, 22 Feb 2010 13:44:30 GMT</pubDate>
</item>
<item>
<title>LAMS features Geogebra</title>
<link>http://www.solutiongrove.com/blogger/2010/02/22/lams-features-geogebra</link>
<guid isPermaLink="true">http://www.solutiongrove.com/blogger/2010/02/22/lams-features-geogebra</guid>
<description>
A new tool called Geogebra has been helping students in graphing their Mathematical equations.&amp;nbsp; This great tool has been suggested by Edoardo Montefusco and has drawn most people's attention.&amp;nbsp; 


GeoGebra is free and multi-platform dynamic mathematics software for
learning and teaching. It is a software for all levels of education that joins
arithmetic, geometry, algebra and calculus. It offers multiple
representations of objects in its graphics, algebra, and spreadsheet
vie...</description>
<content:encoded><![CDATA[<div style="display:block;text-align:center;font-size:0.8em;float:left;padding:0 10px 10px 0;"><img src="http://www.solutiongrove.com/image/1343173/1343173_LAMS_logo.gif" border="0"></div><p>
A new tool called Geogebra has been helping students in graphing their Mathematical equations.&nbsp; This great tool has been suggested by Edoardo Montefusco and has drawn most people's attention.&nbsp; 
</p>
<p>
<a href="http://www.geogebra.org" target="_blank">GeoGebra</a> is free and multi-platform dynamic mathematics software for
learning and teaching. It is a software for all levels of education that joins
arithmetic, geometry, algebra and calculus. It offers multiple
representations of objects in its graphics, algebra, and spreadsheet
views that are all dynamically linked.
</p>
<p>
&nbsp;
</p>
<div style="text-align: center">
<img src="/image/1343147/geogebra_in_lams_small.jpg" border="0" />
</div>
<div style="text-align: center">
&nbsp;
</div>
<div style="text-align: center">
&nbsp;
</div>
<div style="text-align: center">
&nbsp;
</div>
<div style="text-align: center">
&nbsp;
<img src="/image/1343159/geogebra_sum_of_a_function.jpg" border="0" />
</div>
<p>
&nbsp;
</p>
<p>
The concept of GeoGebra is to connect geometric, algebraic, and numeric
representations in an interactive way. You can create constructions with
points, vectors, lines, conic sections as well as functions, and change
them dynamically afterwards. Furthermore, using GeoGebra you can directly enter and manipulate equations and coordinates. Thus, it is easy to plot functions, work with sliders to investigate parameters,
find symbolic derivatives, and use powerful commands like Root or
Sequence.&nbsp; 
<span class="article_seperator"></span>
</p>
<p>
Recently, Ernie Ghiglione has added a sequece in LAMS that illustrates how to use Geogebra.&nbsp; In this sequence, the teachers ask the students to draw their equations using Geogebra and then submit their graph for marking.&nbsp; This new Geogebra sequence in LAMS greatly aids students in graphing their equations and gives them additional knowledge especially in the field of Algebra, Geometry, and even Calculus.
</p>
<p>
&nbsp;
</p>
<div style="text-align: center">
<img src="/image/1343166/lams_sequence_geogebra_small.jpg" border="0" />
</div>
<p>
&nbsp;
</p>
<p>
Check out the sequence <a href="http://lamscommunity.org/lamscentral/sequence?seq_id=944268" target="_blank" title="Geogebra sequence in LAMS">here</a>.
</p>
]]></content:encoded>
<pubDate>Mon, 22 Feb 2010 07:33:31 GMT</pubDate>
</item>
</channel>
</rss>

