Image | ![]() |
EAN-13 | 9780439704830 ![]() |
Product Name | The Principal's Leadership Sourcebook: Practices, Tools, And Strategies For Building A Thriving School Community |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
Price New | 3.44 US Dollars (curriencies) |
Price Used | 3.42 US Dollars (curriencies) |
Width | 7.4 inches (convert) |
Height | 0.4 inches (convert) |
Length | 9.2 inches (convert) |
Weight | 8.32 ounces (convert) |
Author | Evan Robb |
Page Count | 192 |
Binding | Paperback |
Published | 10/01/2007 |
Features | Used Book in Good Condition |
Long Description | A principal who is an effective leader is the difference between a successful, thriving school and a failing school. Evan Robb is such an effective leader, and in this resource he shares his no-fail strategies for approaching budgets, instruction, community relations, school safety, and much more. He explains how he plans the first days and weeks of school so the entire year is a smooth one; makes the most of faculty, team, and department meetings; and successfully builds effective relationships with parents and the community. An inspirational and practical sourcebook that will help both new and veteran principals. For use with Grades 4-12. |
Similar Items | 9781118138601: Leverage Leadership: A Practical Guide To Building Exceptional Schools 9780761940487: Leverage Leadership: A Practical Guide To Building Exceptional Schools 9780749427412: Leverage Leadership: A Practical Guide To Building Exceptional Schools 9781930556096: Dealing With Difficult Parents And With Parents In Difficult Situations 9781601382207: Your First Year As Principal: Everything You Need to Know That They Don't Teach in School 9781596671034: Motivating & Inspiring Teachers: The Educational Leader's Guide For Building Staff Morale 9780865304574: If You Don't Feed The Teachers They Eat The Students!: Guide To Success For Administrators And Teachers (Kids' Stuff) 9780439086882: If You Don't Feed The Teachers They Eat The Students!: Guide To Success For Administrators And Teachers (Kids' Stuff) 9780787965891: School Administrator's Complete Letter Book, Second Edition (Book & Cd-Rom) 9780471859000: School Administrator's Complete Letter Book, Second Edition (Book & Cd-Rom) 9780133812855: School Administrator's Complete Letter Book, Second Edition (Book & Cd-Rom) |
Created | 02-26-2012 8:26:20pm |
Modified | 04-30-2020 8:20:29pm |
MD5 | 2dccfc8fc93a2cca512f61249cf58fff |
SHA256 | 5877691de0b214c73632d14734ef52fbd29ae65b657d95d405773ebfa0a97855 |
Search Google | by EAN or by Title |
Query Time | 0.0337050 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.