mrd

Leveraging synergy in this championship year
Michael Davies' Blog

Michael Davies
michael [at] the-davies.net
GPG Id: 0x0AA9D6FC
RSS feed.

No Software Patents




Local
  chicago
  docs
  photo blog
  planet
  site-index
  software

News
  lwn
  /.
  linuxtoday
  kernel traffic
  theregister
  abc
  bom
  

Software
  sourceforge
  savanna
  tigris
  ibiblio
  freshmeat
  tridge's junkcode
  Software Development wiki
  My Software
  

Utility
  Free DNS
  absolute truth
  google
  wikipedia
  convert currency
  convert time
  convert tongues
  convert temperature
  convert temperature (2)
  linux man pages
  thesaurus
  dictionary
  acronyms
  street maps downunder
  street maps usa
  toilets downunder
  




My Amazon Wishlist


www.flickr.com

Powered by PyBlosxom

Copyright © 2003, 2004, 2005, 2006, 2007, 2008 Michael Davies,
All Rights Reserved.
All opinions are mine only.

LinuxSA February 2007 - One Laptop per Child (OLPC) project

  Hi all,

  Time for the February meeting announcement (it's next Tuesday)...

  The usual details:

   When:   7:00pm-9:30pm (doors open 6:45pm) on
           Tuesday, 20th February, 2007
   Where:  Senior Secondary Assessment Board
           of South Australia (SSABSA)
           Boardroom (1st floor)
           60 Greenhill Road
           Wayville SA
   Cost:   FREE
   Who:    Anyone and everyone.
           No pre-registration necessary.

  Presentation:

   Joel Stanley will be giving a talk on the One Laptop per Child
   (OLPC) project:

   OLPC[0], a not for profit group originating from the MIT Media
   Lab[1], have spent the past two years dreaming up, designing and
   developing a sub-US$100 laptop for use by children, to be sold
   exclusively to governments who will provide them to disadvantaged
   children.

   At LCA 2007, Jim Gettys[2], VP of Software at OLPC announced that
   they were giving away a couple of XO[3] laptops, to those who were
   willing to work on them. Joel Stanley was lucky enough to receive
   one, which he will display on Tuesday. He will give some background
   on the OLPC project, and talk about the current status laptop,
   including some of the more interesting technology it employs.

   Joel is 21, in his final year of an Electrical Engineering (Computer
   Systems) and Economics double degree at the Uni of Adelaide. He runs
   ubuntu, edits with vim, and doesn't care if Han shot first.

   [0] http://en.wikipedia.org/wiki/One_Laptop_Per_Child
   [1] http://en.wikipedia.org/wiki/MIT_Media_Lab
   [2] http://en.wikipedia.org/wiki/Jim_Gettys
   [3] http://en.wikipedia.org/wiki/Children%27s_Machine

  Pizza:

   After the meeting, please join us for pizza at San Giorgios (cnr.
   Frome Street and Rundle Street in the city).

   For more information:

   Email:        organisers@linuxsa.org.au
   Web Page:     http://www.linuxsa.org.au/
   Mailing List: linuxsa@linuxsa.org.au
   IRC:          #linuxsa on irc.freenode.net

/tech/LinuxSA | 16 Feb 2007 | #

Trusted Code 2.0

So back in .NET 1.1 days we had a problem running C# code off a remote fileserver - Windows trusts, by default, code on the local machine only. Fortunately there is a work around, which we dubbed The Dilbert Zone.

Moving our product across to .NET 3.0 means changing the security trust on the local machine for this new environment in a similar fashion.

Start the appropriate configurator found at Start|Settings|Control Panel|Administrative Tools|.NET Framework 2.0 Configuration

Navigate to Console Root|.NET Framework 2.0 Configuration|My Computer|Runtime security Policy|Machine|Code groups|All_Code|LocalIntranet_Zone and select Add a Child Code Group.

Create The Dogbert Zone, with condition type = Zone, Zone = Local Intranet, and Permission set = FullTrust. Select Ok a few times and exit out of this user-unfriendly administrative console.

Restart Visual Studio 2005, and voilĂ  - it just works as expected.

/tech/code/C-Sharp | 16 Feb 2007 | #