[ del.icio.us poetry ]

http://www.agiledata.org/essays/databaseTesting.html
http://wz2100.net/

Warzone 2100 Strategy by Design

In Warzone 2100, you command the forces of The Project in a battle to rebuild the world after mankind has almost been destroyed by nuclear missiles.

The game offers campaign, multi-player, and single-player skirmish modes. An extensive tech tree with over 400 different technologies, combined with the unit design system, allows for a wide variety of possible units and tactics.

Read more »

More download options

About us Manual Current games

Screenshots

Community

If you want to arrange online games, you might want to use our online chat room!

Enter chat room »

Experienced users can also enter this chat room by visiting #warzone2100-games in FreeNode with an IRC client.

RSS Latest news

2.3.3 will be released shortly!

We've been having a few issues with 2.3.2. Specifically, it sometimes loads similarly-named maps instead of the map you selected, burn damage is sometimes calculated incorrectly, and there is a crash that we believe only affects Linux systems.

For these reasons, we are temporarily replacing our download links to point back to 2.3.1a (which we strongly recommend you use instead of 2.3.2), and we will release 2.3.3 shortly.

Again, sorry for the inconvenience.

Read more | 2 comments

2.3.2 has been released!

The Warzone 2100 Project brings you 2.3.2.

One of the new features in this release is an option to rotate the screen using the middle mouse button. Those of you with no middle mouse button will be able to rotate the screen by holding down the left and right mouse buttons at the same time.

We've also included a new map: 4c-Pyramidal, by Mysteryem.

Read more | 43 comments

2.3.1a (windows only!) has been released.

We are doing a re-release of 2.3.1 for windows, since it didn't patch a SDL bug that has to do with minimizing Warzone and the mouse cursor.

Read more | 14 comments

Older news »

If you do not understand English, there are fan sites available in other languages:

Deutsch (German) | Русский (Russian) | Polski (Polish) | 中文 (Chinese)

http://www.greensock.com/get-started-tweening/
http://www.howtogeek.com/howto/21132/change-your-wi-fi-router-channel-to-optimize-your-wireless-signal/
http://www.seodenver.com/embed-protected-video/
http://www.unc.edu/~jelsas/Research/TextMiningToolkit/manual/

Text Mining Toolkit: User's Manual

Contents

Introduction

Overview

The Text Mining Toolkit (TMT) is a software tool to aid in the automatic discovery of topics in a corpus of text or HTML (Hypertext Markup Language) documents. This toolkit includes components to parse a body of documents, apply data mining algorithms to those documents, and analyze the results of those algorithms. The toolkit provides a Java™ Application Programming Interface (API) for software developers to write programs utilizing the parsing and analysis facilities. It also provides a simple, configuration-file-driven, command-line interface to automate the parsing and analysis of a large collection of documents. This manual will only cover the TMT command-line tool, not the TMT API.

The basic steps to using the command-line tool are outlined below. All these steps are explained in further detail throughout this manual.
  1. Mirror the web site you want to analyze with wget.
  2. Index the mirrored collection of web documents, which involves parsing the documents and extracting term-counts from specified parts of the documents.
  3. Apply a clustering algorithm to the indexed collection.
  4. Manually evaluate the output of the clustering, labeling the clusters or adjusting the clustering parameters as necessary.

License

The Text Mining Toolkit is release under the GNU General Public License. A copy of the license should have been distributed with the software, and can also be downloaded from the GNU General Public License website.

Configuration

The TMT command line interface is highly configurable via an XML-based configuration file (sample file). This configuration file has a simple, yet powerful, format which is described in detail throughout this document. The organization of the configuration file corresponds to the high-level organization of the toolkit:

    <config>
        <index>
            ... indexing configuration details ...
        </index>
        
        <cluster>
            ... clustering configuration details ...
        </cluster>
        
        <analysis>
            ... analysis configuration details ...
        </analysis>
    </config>

Software Dependencies

The TMT has several software dependencies: All of the necessary Java libraries for the above tools are included with the Text Mining Toolkit. The toolkit also uses the output from a web-crawl made with a freely available Unix/Linux tool, wget.

Running the TMT Command-line Tool

To run the Text Mining Toolkit command-line interface, one must complete the following:
  1. Java™ must be in the user's path.
  2. The TMT jar file and all the above jar files must be in the user's CLASSPATH environment variable.
  3. A log file must have been produced from a web crawl using wget.
  4. A TMT configuration file must be present.
The Text Mining Toolkit comes with a simple script to invoke the command-line interface. This script is configured to set up the CLASSPATH variable correctly, but you may need to modify the script to suit your installation environment. This script should run on most UNIX/Linux installations.

A Note on using wget

Use of the freely-available tool, wget, is required for running the command-line TMT. This tool comes installed standard with most Linux distributions, but can also be downloaded from the GNU wget web site.

wget is used to mirror and create a local copy of the web site you are interested in clustering. The log-file generated by wget and the downloaded documents are used as input to the TMT command line tool. In order to produce a properly formatted wget log file, the following options must be used:

    wget -nv -o log-file [other options]
where log-file is the log file to be created and other options are the other arguments required by wget to mirror a web site. See the GNU wget web site for detailed information on the available options. The following example command downloads the first three levels of a web site and produces the proper output:

    wget -nv -o wget.log -r -l 3 -A html,htm -E -np http://www.example.com

Toolkit Components

There are three major components to the TMT: indexing, clustering, and analysis. The indexing component is responsible for reading files off disk, converting those files to structured data, and applying transformations to that data. The clustering component is responsible for selecting a clustering algorithm, configuring that algorithm, applying more transformations to the data (if necessary), and applying the clustering algorithm to the data. Finally, the analysis component is responsible for applying the trained clusterer and converting it into useful, understandable output.

Component: Indexing

The indexing component of the toolkit is responsible for parsing a mirrored web site and converting HTML documents into structured data which can be used by the clustering algorithms. This structured data is referred to as an indexed collection. For each HTML document in the collection, a series of numbers is produced. Each number corresponds to how many times a word occurs in the document. This series of numbers for each document is called a document representation. These document representations together make up the document-term matrix, which can be thought of as a grid, where the rows are documents, the columns are terms, and each cell of the grid is the number of times a term occurs in the corresponding document.

It is important to note that most words do not occur in most documents. This type of dataset is known as a sparse dataset. Whenever writing an indexed collection to disk, it is most efficient to make sure the data written to disk is in this sparse format.

A sample section of the configuration that corresponds to the indexing component is given below. An explanation of each element follows.

<index collection-name="name"
       input-file="input-file"
       input-dir="input-dir"
       save-to-file="true|false">
       
<parse-filters>
    <filter class-name="idl.tmt.documentparsing.filters.WordFilter"/>
    <filter class-name="idl.tmt.documentparsing.filters.LowerCaseFilter"/>
    <filter class-name="idl.tmt.documentparsing.filters.StopWordFilter">
        <param name="stopWordFile" value="stopList.txt"/>
    </filter>
</parse-filters>

<representation>
    <builder class-name="idl.tmt.representation.TitleTextRepresentationBuilder"
        weight="1.0" share-termlist="true"/>
    <builder class-name="idl.tmt.representation.MetaTextRepresentationBuilder"
        weight="1.0" share-termlist="true"/>
    <builder class-name="idl.tmt.representation.LinkTextRepresentationBuilder"
        weight="1.0" share-termlist="true" binarize="true"/>
</representation>

<transformations>
    <transform class-name="idl.tmt.representation.transformations.TermOccurrenceFilter">
        <param name="minOccurrences" value="5"/>
    </transform>
</transformations>

</index>
The index element takes several attributes (all required):

parse-filters element

The parse-filters controls which word-based filters are applied during the parsing of the HTML documents. Typically, these filters are used to do things like make all the characters lower-case, restrict to words of at least 3 characters in length, or apply a "stop-list" of words to exclude in the analysis. Filters are specified through filter elements within the parse-filter element. The available filters are: Typically, only the following filters are used, in this order: WordFilter, LowerCaseFilter, StopWordsFilter (with a stop-word list tailored to the specific web site), and LengthFilter (with minLength set to 3).

representation element

The representation element specifies which part of the HTML documents terms are drawn from to create the document representations. Terms could be pulled out of title of the document, the body of the document, or from within specific HTML elements within the document. The individual components which extract these terms are called representation builders and they are specified through the builder element within the representation element. The available builders are: Typically, the following builders are used: LinkText, MetaText, and TitleText.

All the builder elements also support the following attributes:

transformations element

The transformations element provides the ability to apply global transformations to the data after parsing has completed. These transformations can include removing uncommon terms, re-weighting terms, or re-weighting documents. The available transformations include: Typically, only the TermOccurrenceFilter is used, with minOccurrences set from 5 to 20.

It is important to note that the MatrixColumnCenterer and TfidfWeighter transformations convert sparse representations to dense representations, where almost all of the values in the document-term matrix are non-zero. The memory and disk-space requirements for working with dense matrices are vastly greater than working with sparse matrices. In most cases, it is inadvisable to apply those transformations at the indexing stage.

Component: Clustering

The clustering component is responsible for processing the data produced from the indexing step. The steps of the clustering task are: (1) retrieve the indexed collection, (2) transform the collection (optional), (3) select a portion of the collection as a training-set, (4) configure and train the clusterer, and (5) save the clusterer for future analysis.

A sample section of the configuration that corresponds to the clustering component follows:

<cluster name="name" use-collection="coll-name" save-to-file="true|false">

<clusterer class-name="idl.tmt.clusterers.EnhancedEM">
    <param name="initializerName" value="idl.tmt.clusterers.RandomInstancesEMInitializer"/>
    <param name="debug" value="false"/>
    <param name="maxClusterersToBuild" value="10"/>
    <param name="seed" value="50"/>
    <param name="minStdDev" value="0.02"/>
    <param name="numClusters" value="12"/>
</clusterer>

<training-sets>
    <set class-name="idl.tmt.training.RandomSelector">
        <param name="instanceCount" value="1500"/>
        <param name="seed" value="100"/>
    </set>
</training-sets>

</cluster>
The cluster element takes several attributes (all required):

clusterer element

The clusterer element specifies and configures the clustering algorithm to use in the clustering. This element has one required attribute, class-name and this should be set to idl.tmt.clusterers.EnhancedEM. This is an enhancement of Weka's EM algorithm that has been tailored for use with the text mining toolkit. There are several algorithm-specific parameters that can be set through the param element. These are:

training-sets element

The training-sets element specifies how to extract a training set from the indexed collection with which to train the clusterer. A training set is usually a smaller subset than the entire indexed collection. When building a training set, you should ensure that you have about 100 documents per cluster. For example, if you are building 12 clusters, make sure that there are at least 1200 documents selected from the indexed collection.

Training set selectors can be specified through the set element within the training-sets element. The available training set selectors are: Note that several sets can be specified in one training-sets element. In this way, you could specify a specific part of the website, and supplement that with additional randomly selected documents from the entire web site.

transformations element

The clusterer element also supports a transformations element (not shown in the configuration excerpt above). The parameters of this element are identical to the transformations element above.

Component: Analysis

There are currently two modes of analysis for the text mining toolkit: (1) generating HTML pages which list the documents belonging to a cluster and the top terms for that cluster, and (2) generating a spreadsheet-like file which contains all the document URLs and which cluster they belong to. A sample analysis configuration which shows the parameterization for the HTML analysis follows:

    <analysis type="HTMLAnalysis" 
            name="analysis-name" 
            use-collection="collection-name" 
            use-clusterer="clusterer-name"/>
The analysis element does not take any nested elements, but takes four required attributes:

HTML analysis

The HTMLAnalysis type attribute produces a set of Hyper-text Markup Language (HTML) documents that can be viewed through a web browser. One document is created for each cluster, and an index document is created with shows global information about the clustering as a whole. The index page displays the size of each cluster, provides a link to the individual cluster pages, and provide the top 10 terms associated with each cluster. A abbreviated example of the index page follows:

Cluster Output for Collection: collection-name

Basic Stats

Number of Docs: 9429
Number of Terms: 1256
Number of Clusters: 12

Detailed Synopses

Overview: Highest log-odds terms for each cluster


cluster 0

Term LOR
dedicated 3.5718
recently 3.2716
hot 3.2687
webcast 3.2415
Term Frequency
survey 195
population 161
state 132
income 125

Note that for each cluster, two lists of terms are given. The first list is the top terms by Log-Odds-Ratio (LOR) and the second list is the most frequent terms for that cluster. The LOR is a statistical measure of how associated a term is with a cluster. The LOR favors terms that occur often in this cluster while occuring rarely in other clusters. The frequent terms are the terms that occur in the most documents in this cluster. The term frequency does not take into account how many times the term occurs in other clusters.

The cluster pages show more specific data about each cluster. This information includes the top 15 terms, all the documents which belong to that cluster, and the probability that the document belongs to that cluster. An abbreviated example of a cluster page follows:

index

Results for Cluster 2

Terms with highest log-odds

Term LOR
natinal 12.2291
substandard 12.2291
collects 5.5709
Term LOR
survey 99
areas 74
american 74

Documents ordered by probability on this cluster

Document C C0 C1 C2 C3
http://www.example.org/
0:[example, terms, for, example, site]
2 0010
http://www.example.org/special/
1:[special, example, terms, for, example, site]
2 0010

The top terms are displayed at the top of the cluster pages. Below these terms, is a list of the document URLs belonging to this cluster. Below the document URL is a unique number for this document, and a list of the indexing terms used for this document. Remember that these terms come from specific locations in the document defined in the index element above. To the right of the document URL, a table of probabilities of cluster membership for this document on each cluster is displayed. Note that you will frequently see a probability of 1.0 for one cluster and 0.0 for all the other clusters. There may be documents at the bottom of the list which have a lower probability of membership to this cluster.

Table analysis

The Table type attribute produces a flat-text file containing the cluster memberships. The format of this file is as follows:
URL1 [tab] 1
URL2 [tab] 2
URL3 [tab] 1,2
where each line starts with the URL of that document, followed by a TAB, followed by the cluster number that the document belongs to. It is possible for a document to belong to more than one cluster if the probability of cluster membership for more than one cluster is greater than 0.20. If this is the case, a list of cluster numbers separated by commas will be in the second column, instead of a single number. The file created will be named <name>.rbdata where name corresponds to the name attribute of this element.
http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/
http://www.peterlindbergh.com/
http://pohmelje.ru/
http://www.saltarios.es/
http://wiki.kenburbary.com/
http://sankei.jp.msn.com/affairs/crime/100729/crm1007291258012-n1.htm
MSN Japan‚̃jƒ…[ƒXƒTƒCƒg‚ւ悤‚±‚»B‚±‚±‚̓jƒ…[ƒX‹LŽ–‘S•¶ƒy[ƒW‚Å‚·B
[PR]
  • ƒ[ƒ‹
  • ƒƒbƒZ
  • ˆóü

“Œ‹ž‚Ì‚P‚P‚PÎ’j«AŽÀ‚Í‚R‚O”N‘O‚ÉŽ€–S‚µ‚Ä‚¢‚½@ƒ~ƒCƒ‰‰»‚Å”­Œ©

2010.7.29 12:57
‚±‚̃jƒ…[ƒX‚̃gƒsƒbƒNƒXF•ςȎ–Œ

@‘S‘‚Ì’·ŽõãˆÊ‚É”F’肳‚ê‚Ä‚¢‚½“Œ‹ž“s‘«—§‹æ‚Ì’j«i‚P‚P‚Pj‚ªAŽÀ‚Í–ñ‚R‚O”N‘O‚ÉŽ€–S‚µ‚Ä‚¢‚½‚±‚Æ‚ª‚Q‚X“úA•ª‚©‚Á‚½BŽ©‘î‚ňꕔ”’œ‰»‚µ‚½ó‘Ô‚ÅŒ©‚‚©‚Á‚½B

@’j«‚Í–¾Ž¡‚R‚Q”N‚VŒŽ‚Q‚Q“ú¶‚Ü‚êB¡ŒŽ‚Q‚U“ú‚É‘«—§‹æ‚ÌEˆõ‚炪‚P‚P‚P΂̒a¶“ú‚ðj‚Á‚Ä‹L”O•i‚𑡂邽‚߂Ɏ©‘î‚ð–K–₵‚½‚Æ‚±‚ëA‚W‚P΂̖º‚ªu•ƒ‚Í’N‚Æ‚à‰ï‚¢‚½‚­‚È‚¢‚ÆŒ¾‚Á‚Ä‚¢‚év‚Ƙb‚µA‹L”O•i‚àŽ«‘Þ‚µ‚½B

@‚»‚ÌŒãA‚T‚R΂̑·‚ªçZ‚ð–K‚êAu‘c•ƒ‚Íwƒ~ƒCƒ‰‚ɂȂ肽‚¢xw‘¦g¬•§‚µ‚½‚¢x‚ÆŒ¾‚Á‚Ä‚R‚O”N‘O‚ÉŽ©Žº‚ɕ‚¶‚±‚à‚Á‚½‚܂܂¾v‚Æà–¾B’¼Œã‚É“¯ˆõ‚ªŽ©‘î‚Ń~ƒCƒ‰‰»‚µ‚½’j«‚̈â‘̂𔭌©‚µ‚½B

@‘«—§‹æ‚É‚æ‚邯A‚—îŽÒ‚̈À”Û‚ðŠm”F‚µ‚Ä‚¢‚½’nŒ³‚Ì–¯¶ˆÏˆõ‚ª’j«‚ɉ‚±‚Æ‚ª‚Å‚«‚È‚©‚Á‚½‚½‚ßS”z‚µA¡”N‚QŒŽ‚É‹æ‚ɘA—B‹æ‚Ì’S“–ŽÒ‚ª–K–₵‚½‚ªA‚±‚ÌŽž‚àu–{l‚ª‰ï‚¢‚½‚­‚È‚¢‚ÆŒ¾‚Á‚Ä‚¢‚év‚ƉƑ°‚É‹‘₳‚ê‚Ä‚¢‚½‚Æ‚¢‚¤B

PR

PR
PR
ƒCƒUISANSPO.COMZAKZAKSankeiBizSANKEI EXPRESS
Copyright 2010 The Sankei Shimbun & Sankei Digital
‚±‚̃y[ƒWã‚É•\ަ‚³‚ê‚éƒjƒ…[ƒX‚ÌŒ©o‚µ‚¨‚æ‚Ñ‹LŽ–“à—eA‚ ‚é‚¢‚ÍƒŠƒ“ƒNæ‚Ì‹LŽ–“à—e‚Í MSN ‚¨‚æ‚у}ƒCƒNƒƒ\ƒtƒg‚ÌŒ©‰ð‚𔽉f‚·‚é‚à‚̂ł͂ ‚è‚Ü‚¹‚ñB
ŒfÚ‚³‚ê‚Ä‚¢‚é‹LŽ–EŽÊ^‚ȂǃRƒ“ƒeƒ“ƒc‚Ì–³’f“]Ú‚ð‹Ö‚¶‚Ü‚·B
http://starkerstheme.com/
3.0 compatible

Starkers: The completely naked theme for WordPress

Starkers is a bare-bones WordPress theme created to act as a starting point for the theme designer.

Free of all style, presentational elements, and non-semantic markup, Starkers is the perfect ‘blank slate’ for your projects, as it’s a stripped-back version of the ‘Twenty Ten’ theme that ships with WordPress.

Best of all: it’s free and fully GPL-licensed, so you can use it for whatever you like  —  even your commercial projects.

Features

All non-semantic, presentational class names (e.g: class=“center”, class=“alignleft”) have been removed; all non-semantic, presentational HTML elements (e.g: <hr />, <br />) have been removed; all unnecessary elements have been removed (e.g: <div class=“entry”> disappears entirely and <h3 class=“comments”> simply becomes <h3>).

Elements have been converted where necessary (e.g: <small> becomes <p>) and some IDs have been kept intact (such as <h3 id=“respond”>) to preserve functionality.

Browser defaults have been reset in the stylesheet (based on the YUI Reset) to provide a true “clean slate”.

« Previous | Next »

Installation

Just like any other WordPress theme, simply download the latest version, unzip the file, upload it to your ‘themes’ directory, and then activate it through your WP admin.

Although slightly controversial, all styleheets and images have been contained in their respective directories inside a master ‘style’ directory. You don’t need to keep this intact, but I find it to be the most organised way of working, and it’s a better way of separating content from presentation.

« Previous | Next »

Changelog

You can view the changelog file here but it’s hardly Shakespeare. For a bit more of a background on the changes, please read the related blog posts:

« Previous | Next »

FAQ

In the demo, your stylesheets aren’t loading

Yes they are. It’s meant to look like that (that’s the whole point).

Why would I use Starkers instead of a super-powerful framework like Thematic?

Thematic is awesome. If you want the power of dynamic class names, microformats, and some existing markup / style, use Thematic. But if you want something super-simple to start out with, stripped down to the bare minimum of markup, use Starkers.

Why have you taken most code out but left some in?

A few things have been preserved for functionality. Initially this included IDs like ‘respond’ so that the comment form could be jumped to, but now it includes some stuff like the built-in support for a dynamic body / post class.

« Previous | Next »

Support

As the theme is offered for free, it’s also offered without support. If you really really need help, you can ask me nicely and I’ll do my best. Don’t ask me silly, generic questions about WordPress, CSS, PHP, or web design, though. Starkers-related stuff only, please.

« Previous | Next »

Report a bug

Bugs? Here?!? If you spot such a thing, please report it and I’ll fix it as soon as possible.

Please note: there is not an error loading the stylesheets in the demo: it’s meant to look like that (that’s the whole point).

« Previous | Next »

Brought to you by Elliot Jay Stocks
http://gizmodo.com/5084121/giz-explains-3d-technologies
http://www.hpl.hp.com/research/scl/papers/watercooler/group2009/group2009watercooler.pdf
http://www.ictcoordinator.co.uk/
 Nickname::  Password::
Stay Logged In
Total Members 6201 | Total Active Users 7
You are not logged in
30 July 2010 :: Membership:: Register | Your Details | Lost Password | Message Centre | Home
Search
 
Newsletter
Join our mailing list
subscribe
unsubscribe
Quick Links
News and Tips
Discussion Board
ICT Links
Free downloads
Classified Ads
Events Calendar
Contact Us
Members Online
View Stats
Poll Booth
Would you pay for software downloads by your telephone bill?
Yes
No
Not sure
External Links
Test Master
CLAIT School
Top Marks
MySchoolWeb
Education News
Sponsors
Click here to advertise

Click here for great value web hosting.
 
UK ICT Coordinator
Welcome to UK ICT Coordinator
Welcome to the new look site
Quote of the moment:

Welcome to the site! Have a browse around. If you want to contribute to the Discussion Board, use the internal email Message Box facility, post events in the Events Calendar, or sell items in the Classified Ads you will need to register which is free!

Your first stop might be the ICT Links section which has links to categorised free resources from primary to A level ICT and Computing sites.

UK ICT Coordinator


We have some great software offers for you too! Why spend valuable time searching for utilities and tools and downloading them when we have done the work for you? All have been tried and tested in schools. All software works on all versions of Windows and you are free to copy and distribute the CD as often as you like, on as many computers as you like. These are all full programs with no trial periods. When you order, all orders are dispatched by first class post the next day. Subscribe to our newsletter and from time to time get preferential discounts when we release new software.

Home Pack - £9.00
Ideal to give to students, parents or staff. Includes Anti Virus, Anti Spam, Spyware Remover, Firewall, Tabbed browser, Safe Surfing, Touch Typing Tutor, Registry Cleaner and Logger.

or

Reporting Pack - £6.00
Are your reports taking too long to produce? Give you and your staff Report Maker, Report Assistant, Report Comments and Handwriting Fonts with this pack and see how much time you save.

or

Productivity Pack - £15.00 Includes a full MS Office compatible Office suite, photo editing and optical character reading software.

or

Digital Imaging Pack - £8.00
Enhance, resize and rename multiple photos. Save on expensive photo paper with the Paper Saver program.

or

ICT Coordinator Toolkit Pack - £12.00
An essential suite of tools for the busy ICT Coordinator

or

Test and Quiz Pack - £6.00
We have done a lot of hard work to find the best programs to create test and quizzes for your students. Included in the pack are Word Search Creator & Player, Cloze Maker, Crossword Compiler, and Quiz Maker

or

Games Compendium Pack - £8.00
A great collection of 6 popular educational games from Chess to Mastermind!

or

My School Web - £20.00
Easy total web site authoring for schools.

or

Control Pack - £4.00
Why pay for expensive hardware to teach Control?

or

Simulation Pack - £4.00
Simulations for the modelling strand.

or

Test Master - £25 per year subscription (Internet connection required)
Create on line multiple choice tests that students can access from any computer with the Internet. No software to install. Lots of features including a complete analysis of class or individual results!

or

Virtual CLAIT School - £10.00
Students work through the modules at their own pace and email or print the practice assignments for you to mark.
This should be the only input that you have to do!
All the skills that need to be acquired are shown to the student through text and picture help and movies. This is for the Old CLAIT course

or



http://www.symfony-project.org/doc/1_4/

Documentation

Symfony 2.0 Preview Release
Books on symfony (by Sensio Labs)
symfony training
Be trained by symfony experts
Aug 10: Online (Nouveautés de 1.3/1.4 - Français)
Aug 25: Paris (Maîtrise de & Doctrine - Français)
Sep 07: Online (Nouveautés de 1.3/1.4 - Français)
Sep 22: Paris (Maîtrise de & Doctrine - Français)
Oct 05: Online (Nouveautés de 1.3/1.4 - Français)

Search


powered by google

From the Community

Wiki

User-contributed documentation, as well as translations and plugins, are available in the symfony wiki.

Read and Contribute

Code snippets

A collection of snippets contributed by symfony users. When you think that someone may already have solved a problem, that's where the solution usually lies. The snipeet application itself is a giant snippet, which you can browse and learn from.

Find a code snippet Browse the source

You are currently browsing the symfony documentation for the 1.4 version. You can switch to another version:

You want to learn more about symfony? We have plenty of documentation for you.

New to symfony?

PDF Getting Started

This tutorial is the best way to get started with symfony. It explains everything you need to know about symfony installation. In a matter of minutes, you will be ready to use symfony and start a new project.

Already used symfony?

PDF What's new? Discover the new features of symfony 1.4.

PDF Upgrade to 1.3/1.4 Learn about how to upgrade you symfony 1.2 projects to symfony 1.3/1.4.

PDF Which version of symfony? Discover the right version of symfony for your project.

PDF Deprecated in 1.3 Learn about deprecated features that have been removed in symfony 1.4.


A Gentle Introduction to symfony

A Gentle Introduction to symfony

Discover symfony: Read this book to get an overview of symfony. This book introduces you to symfony, showing you how to wield its many features to develop web applications faster and more efficiently, even if you only know a bit of PHP.

Buy A Gentle Introduction to symfony from amazon.com Read in
PDF

Practical symfony (Doctrine edition)

Practical symfony

Learn symfony: 24 tutorials of 1 hour each, that's all it takes to build up a complete and effective application from scratch. Definitely the best way to become a good symfony developer!

... for Doctrine

Buy Practical symfony (Doctrine edition) from amazon.com Read in
PDF Test

... for Propel

Buy Practical symfony (Propel edition) from amazon.com Read in
PDF Test

The symfony Reference Book

The symfony Reference Book

The reference guide: The Symfony Reference Guide is a book where you can easily find answers to your questions at your fingertips. This is a book you will keep with you whenever you develop with symfony.

Buy The symfony Reference Book from amazon.com Read in
PDF

More with symfony 1.3 & 1.4

More with symfony

Do more with symfony: This book is the symfony 2009 advent calendar, a set of 24 tutorials about advanced symfony topics, published day-by-day between December 1st and Christmas 2009. All tutorials are available in five languages: English, French, Spanish, Italian, and Japanese.

Buy The symfony Reference Book from amazon.com Read in
PDF

 

The API Documentation

Every class, method and function in symfony has PHPDoc comments explaining the way it works. The best way to check the parameters of a function or the nature of the returned value is there.

Read Browse

The Sensio Labs Network

Since 1998, Sensio Labs has been promoting the Open-Source software movement by providing quality web application development, training, consulting.
Sensio Labs also supports several large Open-Source projects.
http://stevenbonner.com/
 
 
http://www.artua.com/portfolio/web/
web design for BMW, design web, website design   BMW

A website of official representative of BMW corporation.

web design for Nissan, website design companies, design web sites   Nissan

A website of authorized dealer of Nissan corporation.

web design for Honda, web site design development, website developers   Honda

An informational website for official dealer of Honda cars.

web design for Peugeot, website design training, website design creation   Peugeot

Our studio has developed a website for official dealer of «Peugeot» company.

web design for Avtodel, website company, flash design   Avtodel

Avtodel portal website

web design for Turhost, site design, website design   Turhost

One day one of the biggest Turkish hosting companies has entrusted us the redesign of its website which they were pleased with.

web design for CodeCatalyst, site design company, website affordable   CodeCatalyst

When iPhone became one of the most popular gadgets worldwide, everyone decided that production of applications for it was a great stuff. Code Catalyst company is not an exception, but there is one thing which makes it to stand out – they also consult how to develop those applications. We have designed a website for this company.

web design for ESIS, best website design, business web site design   ESIS

It is pretty clear from the first glance that this website will help you to purchase any necessary TV equipment. Satellite receivers, antennas, cables… Anything that may help a real fan to spend time watching interesting TV show or exiting movie. All items are being competently categorized and supplied with detailed description. It is a real pleasure to use this online shop.

web design for Ofis.net, web solutions design, good design website   Ofis.net

Ofis.net is the biggest software vendor in Turkey and it is also official representative of Microsoft Corporation. Website is being designed using traditional business colors with slight touch of vivid elements. Classic composition together with well considered navigation, expressive technique of design of important elements, expressly restrained modern style — these are the main features of this work.

web design for Oliveway, website design search, easy website design   Oliveway

Oliveway company from Greece seems to follow national tradition, it produces all possible means for body care which are olive oil based. Studio designers had to add to this fact a delicate cosmetic spirit but at the same time they should not forget to emphasize exceptional naturalness of the product. And here comes the result. We should acknowledge that this is the most olive website in our portfolio.

web design for Pavlakis, web site development services, website development services   Pavlakis

If you have as much as two yachts it does not mean that you need no money. Of course you can sell one of them and to live in no bad way for a while, but you can be in track of this businesslike Greek and to rent both these yachts to tourists. Our task was to design a website which could help avid for sea adventures to virtually evaluate the level of offered service, yachts nautical qualities, and at the same time to appreciate the beauty of multitude of Greek islands.

web design for Tagoo, hotel website design, diy website design   Tagoo

Tagoo is young but quickly developing portal. It was created to make search for favorite music affordable even for the most inexperienced internet users. We were entrusted to create design of all portal pages, which number appeared to be not so small. Except visual website appearance, we have also designed funny guy which have become a talisman of Tagoo, ennobled the logo, created virtual music player. In other words we have made a lot of unnoticeable but important work. As the result we have got an easy-to-use media portal, which attracts bigger number of fans daily.

web design for InfusionSoft, affordable site design, affordable web site design  

Website is about CRM-system produced by Infusion Company.

web design for Jus International, graphic development, small website design  

Jus is a magic beverage.

web design for Toughacademy, website design, design site  

A website is about a cage in which men breaks ribs to each other.

web design for Vip, website development, friendly website design  

VIP is a short guide through provincial glamour.

web design for WebWay, website desgin, effective website design  

WEBWAY services gives you an opportunity to use ready made templates to create your own wesbite.

web design for Zapak.fm, web site design, website design  

Catalog of the internet radio-stations from the whole world.


 
http://parisparfait.typepad.com/
http://ideone.com/
New!  Welcome! login or register.

Your great ideas will be born here

New features!
help

What is ideone?
Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows
to compile and run code online in more than 40 programming languages.

How to use ideone?
Choose a programming language, paste your source code and input data into text boxes. Then check or uncheck run code (whether to execute your program) and private (whether not to list your paste in the recent pastes page) checkboxes, click the submit button and watch your snippet being executed.

Having problems?
Check the samples to see how to write a properly working code. To find out more, see the help section or the FAQ page.


This web site requires JavaScript

Choose your language:

http://search.creativecommons.org/#
http://radar.oreilly.com/2010/07/counting-milestones-towards-op.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+oreilly%2Fradar%2Fatom+%28O%27Reilly+Radar%29

Tue

Jul 27
2010

Alex Howard

Open government is a mindset

Analysis: Connections are forming between social media, open government and e-government.

by Alex Howard | @digiphilecomments: 6

I recently talked about the role social media can play in open government at Social Security's Open Government Employee Awareness Day. My presentation is embedded below:

As I said in my talk at the agency, what I've seen in my reporting over this year suggests a nascent connection between the evolution of social media, open government and e-government. The economic meltdown of the past few years has pushed state governments to do more with less. The federal government has explicitly -- and sometimes implicitly -- endorsed the use of several types of online social software as tools for open government. The top-down open government directive has come at a time when there is an active network of civic hackers finding innovative ways to use free services, open data and partnerships with social entrepreneurs.

e-gov.open-gov.we-gov

There's an emerging cycle of reciprocity between those governed, the e-services infrastructure provided by government entities and the open government approach adopted by municipalities and agencies. That relationship is worth considering as citizens turn to the Internet for data, policy and services in increasing numbers.

Example: How an agency (Social Security) can become more social

I talked with Social Security CIO Frank Baitman about open government and social media earlier this month. As my interview with Baitman revealed, access to social media is currently blocked for most Social Security employees, with exceptions made on a case-by-case basis. The risks and rewards of Web 2.0 for federal agencies are substantial for Social Security, given the fundamental role the institution plays in American society.

"We're understanding that social media is becoming another means to communicate with a wide range of citizens," said Baitman. "Since Social Security touches virtually every American at some point of their lives, social tools are critical to communication."

The medium could be particularly relevant to senior citizens, who after all receive the lion's share of their income from Social Security, with elderly citizens in the bottom quintile receiving 88.4 percent of their income from that source.

The issue of data leaks through new communication channels is not a negligible concern within the Office of the CIO, particularly as open government efforts move forward. Asked about that issue, Baitman said: "Open government is about communicating with the public, not sharing sensitive data. To the extent that we do share data, we extensively scrub it. Open government has nothing to do with personally identifiable information (PII). That has to do with what government is doing for and behalf of its citizens."

To address those concerns, Social Security may well look to the example set for the secure use of social social media by the Department of Defense or the guidelines for secure use of social media by federal departments and agencies from the Federal CIO Council.

If open government is to continue its progression at Social Security, more online interaction between citizens and staffers is inevitable. Right now, the agency is taking careful steps, as evidenced by its relatively quiet @SocialSecurity feed on Twitter or Social Security Facebook page. They've marketed their news about the top baby names to outlets like @CNNBrk, @ParentsMagazine and @ESPN, personalities like @RichSanchezCNN, and administration officials or entities like @whitehouse, @PressSec, and @BillBurton44. But they haven't replied to anyone. The agency currently is broadcasting on both forums, not engaging, responding or moderating comments or replies. With care, Social Security might take some notes from NASA on negotiating the frontiers of social media.

While online tools and digital platforms that enable greater transparency, collaboration and citizen participation will continue to improve beyond those used in 2010, the culture of openness within agencies will also need to evolve in order for open government to achieve any measure of success.

There are reasons to be hopeful. After I talked about the increase in location-based social networks, a young Social Security employee asked if I thought a live data feed of waiting times for branch locations would be useful if it was mashed up with an online map. I thought that sounded useful, and said as much.

Social Security Commissioner Michael J. Astrue listed three open government initiatives during his speech at Awareness Day. All are important, meaningful and likely achievable. But if the Social Security Administration wants to evolve into a true 21st-century institution through better use of information technology, those initiatives will need to be the tip of the iceberg.

As Greg Pace, deputy CIO at the Social Security Administration, said at the end of Awareness Day: "We must examine the principles of open government with an open mind. It's not about technology but about the people who use it. Be open."

Related:


tags: gov 2.0, government 2.0, government as a platform, social security, social softwarecomments: 6
submit:

 
Previous  |  Next

0 TrackBacks

TrackBack URL for this entry: http://blogs.oreilly.com/cgi-bin/mt/mt-t.cgi/10829

Comments: 6

Amy Wilson [2010-07-28 02:52 AM]

Interesting your slide number 42. Based on the Pew report results you claim that "higher use of government websites led to more trust".

However, this is not the same as saying that "heavy government data users have different attitudes about governments in terms of it being more open and accountable". Correlation does not mean causality.

Also, supposing there was to be a causality, could it be in the opposite direction, that is, "all other things equal, those who have better attitudes about government are more likely to be heavy government data users"? Research evidence suggests that this might be the case.

The most recent statistically rigorous studies on the relationship you suggest are inconclusive, which makes me think that claiming that "higher use of government websites led to more trust" is a bold statement, although not really evidence-based.

Apart from that, realy interesting slides and post.

Alexander Howard [2010-07-28 06:19 AM]

Thank you for the comment, Amy! I reported on research from the Pew Internet and Life Project back in April, which indicated that citizens turning to Internet for government data, policy and services. Their research on government online is free to download. The specific

Here's the key bit from my post and interview with Aaron Smith, the lead researcher on the report:


The Pew Research report found, however, that those who are heavy government data users have different attitudes about government in terms of it being more open and accountable. This differs from people who are not online or people who are online but not heavy government data users. That perception, however, is heavily biased around ideological lines, which gibes with historical trends.

"That fits with some research that our colleagues over at the Pew Research Center for the People and the Press put out last week," said Smith. "They went all the way back to public opinion data as far back as the Eisenhower administration. Basically, what they found is that people tend to trust the government when their party is in power and they tend to distrust it when the other party's in power."

"What we see happening is that, at least at the moment, when you look at Democratic voters, they're giving credit to the government for making that data out there. When you look at Republican voters, they're a little bit tougher sell. The upshot to government is if you put your data out there, people will clearly use it."

Chuck [2010-07-28 07:26 AM]

Great presentation! A useful addition would be to note how the federal Internet tech community (via people from ARPA and NSF who worked to build, lived and worked in the 'net) led the federal IT and agency operations folks to the Internet and its applications. That is summarized at:

The report is called:

Reengineering Through Information Technology,
Accompanying Report of the National Performance Review, Office of the Vice President, September 1993.

From that came the intial "e-government" directives, organizations, applications, benifits and problems whose decendents are buzzing along today. At the time, NSF already had on-line proposal submission working, and getting IRS forms online was a huge initial win!


Alexander Howard [2010-07-28 07:36 AM]

Thanks, Chuck. Here's that link: http://govinfo.library.unt.edu/npr/library/reports/it.html

17 years ago; how times flies.

Chuck [2010-07-28 08:14 AM]

You need to understand that there was still debate back then about:

1) the technical and economic viability of the Internet (at the time the set of connected federal research networks and the couple of initial private commercial TCP/IP ISPs);

2) the existance of a market for home computers (!!);

3) the entire environment of federal IT (just emerging from having been dominated by a couple of monopolist suppliers).

It took some "imagineering" to educate everyone about what was about to hit them. All the roots were only 20 years old, but the browser was just being invented in the basement (of a federally funded supercomputer center). While IT was still too geeky to be the "main event" of the NPR Report, strong seeds got planted.

The interesting thing is how durable the goals and issues are.

Mike Barris [2010-07-28 07:08 PM]

Attention: Alex Howard (not for posting - for internal use only)

Mr. Howard,
I'm writing a book with Rutgers University professor James Katz on citizen
participation and the Obama administration's social-media initiatives. I would like to interview you for your thoughts on the government’s efforts to stimulate citizen participation in policy-making through social media. My credentials include writing for The Wall Street Journal, WSJ.com and Dow Jones Newswires. My co-author, Dr. Katz, is professor and chair of the Department of Communication at Rutgers, where he also directs the Center for Mobile Communication Studies. If you choose not to participate in this project, could you please recommend someone
else with your organization with whom I could speak?
Best,
Mike Barris
mike@mikebarris.com
732-222-4237


Post A Comment:

 (please be patient, comments may take awhile to post)





RECOMMENDED FOR YOU

  1. Gov 2.0 Summit
    Gov 2.0 Summit, Government as a Platform, September 7-8, 2010, Washington, DC
  2. Web 2.0 Expo NY
    Web 2.0 Expo NY, Platforms for Growth, September 27-30, 2010, New York, NY
  3. Web 2.0 Summit
    Web 2.0 Summit, November 15-17, 2010, San Francisco, CA

RECENT COMMENTS

http://x86osx.com/bbs/zboard.php?id=index
http://razorjack.net/quicksand/

Quicksand

Reorder and filter items with a nice shuffling animation.

  • Activity Monitor 348 KB
  • Address Book1904 KB
  • Finder 1337 KB
  • Front Row 401 KB
  • Google Pokémon 12875 KB
  • iCal 5273 KB
  • iChat 5437 KB
  • Interface Builder 2764 KB
  • iTuna 17612 KB
  • Keychain Access 972 KB
  • Network Utility 245 KB
  • Sync 3788 KB
  • TextEdit 1669 KB

Demo seems sluggish? Disable CSS3 scaling and try again.

Isn’t it cool? Now, choose your fighter:

http://fluentnhibernate.org/

Fluent NHibernate 1.1 is available for download. View the announcement, or download it now.

Fluent, XML-less, compile safe, automated, convention-based mappings for NHibernate. Get your fluent on.

Getting started...

Further reading...

Once you've followed the above, you can compare our auto mapping to our fluent interface to see which suits your application, read through our API documentation, or just see what's available for reading in our wiki.

Contributors...

Fluent NHibernate wouldn't be possible without the time and effort of it's contributors. The team comprises of James Gregory, Paul Batum, Andrew Stewart, and Hudson Akridge.

Our valued committers are: Aaron Jensen, Alexander Gross, Andrew Stewart, Barry Dahlberg, Bobby Johnson, Chad Myers, Chris Chilvers, Craig Neuwirt, Dan Malcolm, Daniel Mirapalheta, David Archer, David R. Longnecker, Derick Bailey, Hudson Akridge, Ivan Zlatev, James Freiwirth, James Gregory, James Kovacs, Jeremy Skinner, Lee Henson, Louis DeJardin, Paul Batum, Roelof Blom, Stuart Childs, Tom Janssens, Tuna Toksoz, U-BSOD\pruiz, di97mni, dschilling, felixg, jeremydmiller, maxild, and robsosno.

Thanks goes to Jeremy Miller for the original idea and implementation.

Fluent NHibernate is © 2008-2010 James Gregory and contributors under the BSD license.


http://shewhoeats.blogspot.com/
http://www.videocopilot.net/basic/
You Need Flash Player to View the Video


Welcome to Basic Training!
In this Free Video Training Series, you'll learn everything you need to know to start using After Effects today. This is not an overview of the software, this is a real training series that covers advanced techniques for Motion Tracking, Color Keying and even 3D Title Design. Of course, we'll cover the basics too.

What Version of After Effects do I need?
Nearly all of the training in this series will apply to After Effects CS3 and the Professional version of AE 6.5 & 7.

Why is it free, are you guys crazy?
Time to come clean. The truth is we want you to buy our DVDs but not all of our products are for beginners, so by teaching you the basics, you'll be in a position to take advantage of our great post production tools. Pretty sneaky :) Oh yeah... and we love you too.

Why should I learn After Effects?
After Effects gives you the power to create amazing visual effects and motion graphics. These skills will surely make you more valuable at work or to a future employer. You will also appear more attractive and confident.
 
11:12




 
In this tutorial we will go over how to import and organize footage in the project window. We will also cover footage properties, creating a new composition and using the playback controls.
5:22




 
In this tutorial we'll cover adding simple effects to footage and using the effects and presets pallete to find specific plug-ins. We'll also take a look at popular and commonly used effects.
13:37




 
In this tutorial we will cover animating and adding keyframes in after effects. You will learn to use smooth keyframes and add motion blur to animated layers as well as important shortcuts.
13:55




 
In this tutorial we will take a look at how transparency works in After Effects. From simple color keying to masking and transfer modes. We will also cover using track-mattes with stock footage.
18:59




 
In this tutorial we will cover several types of motion tracking, including stabilizing a shaky shot, performing a sign replacement and motion tracking video to incorporate motion graphics seemlessly.
6:00




 
In this tutorial we will cover how speed changes are done in After Effects. We will perform speed changes as well as speed ramps. Additionally we will discuss the difference between frame blending and pixel motion
12:12




 
In this tutorial we will cover the basics of 3D in After Effects. You'll learn to turn any layer into 3D as well as create 3D lights and cameras. We will also take a look at depth of field and a 3D particle system.
38:11




 
In this 2 part tutorial we will take a basic to advanced look at creating titles in After Effects. We will also get into powerful camera animation techniques and create a 3D particle systems.
      
14:32




 
In this tutorial we will take a look at After Effects scripting which is called expression. This introductory look is intended to demonstrate what can be achieved with this powerful feature.
5:21




 
In this tutorial we will cover the basics of rendering your composition. You can export for video editing applications, flash and DVD. We will also cover helpful render queue tips.

© 2010 Video Copilot and Final Image Inc.



http://pererosales.com/

Publicaciones recientes

ORM en 4 pasos

March 31, 2010

El pasado 30 de Marzo tuve la oportunidad de participar en la primera jornada ‘puntxpunt‘ que trataba de la viticultura y la estrategia en Internet. Me invitaron para hablar sobre la gestión de la reputación digital, lo que familiarmente conocemos como ‘ORM’. A pesar de que no había mucha gente, el interés de los asistentes [...]

Las marcas más queridas

February 18, 2010
Las marcas más queridas

El sueño de toda marca es ser objeto de deseo por parte de sus usuarios, Kevin Roberts, CEO de Saatchi & Saatchi ya acuñó el concepto de Lovemarks hace varios años. Si todavía no has leído el libro, te lo recomiendo, es interesante y muy ameno, además está traducido al español. El caso es que [...]

Marca y Experiencia del Cliente

November 22, 2009
Marca y Experiencia del Cliente

Los que me conocen saben lo mucho que me interesa la relación entre marca y clientes. De hecho, releyendo mi perfil, me doy cuenta que no hablo de otra cosa. Pero al mismo tiempo, también reconozco lo complicado que resulta a veces explicar esto de una forma simple. Por eso, cuando encuentro algo bueno para [...]

PUBLICACIONES ANTERIORES

La gente que me gusta

June 1, 2009

íncipy

June 1, 2009

Cava & Twitts

December 24, 2008
http://www.raftingsaltarios.com/
logo
Español
 
English
 
Français
 
 
Contactar
banner  
Inicio
 
ACTIVIDADES

 
Rafting
 
Descenso en canoa
 
Travesías en kayak
 
Pesca en kayak
 
Descenso de cañones
 
Senderismo
 
Bicicleta de montaña
 
Tiro con arco
 
Rutas en quads
 
Paintball
 
Puenting
 
 
Seguridad-rescate
 
 
ESCUELA DE KAYAK

 
Curso kayak aguas bravas
 
Curso kayak aguas tranquilas
 
Curso tranquilas + bravas
 
Curso de esquimotaje
 
Curso de seguridad y rescate
 
Iniciación al kayak-surf
 
Rodeo en aguas bravas
 
 
INFORMACION

 
Quienes somos
 
Donde estamos
 
Nuestro entorno
 
Condiciones generales
 
Noticias de última hora
 
 
Nuestra Tienda
 
 

Bienvenido a la página de actividades de SaltaRíos

 

Somos una empresa pionera en el mundo del rafting y el kayak. Os ofrecemos desde aquí una serie de actividades de turismo activo que os pondrán en contacto con la naturaleza y os harán pasar unos momentos inolvidables.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Canal FaceBook
Canal YouTube
 

 
 
 

Rss Noticias de última hora

 
Curso Seguridad y Rescate
 

Curso Seguridad y Rescate

Seguridad para tus Expediciones: Fórmate en la seguridad y el rescate para tus futuras expediciones. Dirigido a Monitores, Guías y Piragüistas.

Se trata de un curso de 3 jornadas dedicadas a la seguridad y rescate en kayak de ag ...


Ir

 
VII Descenso del Batán. Ecija
 

VII Descenso del Batán. Ecija

VII DESCENSO DEL BATÁN Y FIESTA DE LA PIRAGUA.

El Club de Piragüismo Écija en colaboración con el Ayuntamiento de Écija, la Consejería de Turismo Comercio y Deporte de la Junta de Andalucía y la Federación Andaluza de Pira ...


Ir

 
Cursos Kayak aguas bravas
 

Cursos Kayak aguas bravas

A partir del 1 de Junio comienzan los cursos de kayak en aguas bravas en el canal de la ciudad de Granada, en el mismo centro de la ciudad !!

Con el calorcito que está haciendo, ¡ que mejor forma de hacer deporte que esta !

El pant ...


Ir

 
Rafting y Kayaks, deportes aventura, turismo activo, multiaventura, Granada - Andalucia - España | www.raftingsaltarios.com
 
Estadisticas
 
Telefonos
 
 
TIENDA

 
Accede a nuestra tienda
 
Tarjeta de socio
 
 
Rafting Guadalfeo
 
 
PROG. ESPECIALES

 
Programas escolares
 
Incentivos de empresa
 
Despedidas
 
Ofertas
 
Multiaventura
 
 
MULTIMEDIA

 
Galería de fotos
 
Galería de videos
 
 
Travesías En Kayak
 
 
FOROS

 
Comunícate con nuestro foro
 
Foro
 
 
VARIOS

 
Suscríbete a nuestras noticias
 
Libro de firmas
 
Recomienda a un amigo
 
Contacta con nosotros
 
Enlaces de interés
 
Mapa de la web
 
Política de privacidad
 
Copyright © 2009 Salta Ríos, S.L. Todos los derechos reservados
Tlf: 958 566 066 · 657 278 273
Valid XHTML 1.0 Transitional
http://www.pythonsecurity.org/

Home

Welcome to Python Security, the home of the largest collection of information about security in the Python programming language.

Our mission is to make Python the most secure programming language in the world, ensure hackers never break a Python-based application, and make security breaches a thing of the past!

This site contains a vast amount of security information, organized into two sections:

  • Security topics and how they relate to Python as a whole
  • The security of specific software such as frameworks and template engines

We also have a Google Group, on which you may ask or discuss anything related to security in Python.

We Need YOUR Help

PythonSecurity.org is a blossoming community, and we need your help to make it grow. Here are a few ways in which you could help:

  • Contribute to the currently focused article: Django
  • Submit a relevant link or piece of news
  • Contribute fixes and patches to software projects to improve security
  • Spread the word!

An OWASP project created by Craig Younkins

Powered by Moe and Google App Engine

http://www.oracle.com/solutions/business_intelligence/docs/epm-enterprise20-whitepaper.pdf
http://www.pcgamesupply.com/

WoW 60 Day Game Card (US)

Buy now with instant online email delivery. The World of Warcraft 60 Day Game Card code will be delivered to your ema... $29.99 - More Info

1 Month Xbox 360 Live Gold Membership (World Wide)

Buy now with instant online email delivery. The Xbox 1 Month Gold Membership code will be delivered to your email wit... $11.99 - More Info

Sony Playstation Network $20.00 Card (US ONLY)

Buy now with instant online email delivery. The $20 Sony Playstation Network card code will be delivered to your emai... $25.99 - More Info

Aion (US VERSION)

Buy now with instant online email delivery. The Aion CD Key code will be delivered to your email within 30 minutes of... $39.99 - More Info

World of Warcraft (US)
$19.99
Sony Playstation Network (US)
$25.99
X-Box Live (World Wide)
$19.99
World of Warcraft (US)
$24.99
World of Warcraft (US)
$39.99
X-Box Live (World Wide)
$11.99
 
Your Cart Total: $0.00
Shopping cart is empty.
LiveZilla Live Help
*special discounts for following us*
http://www.pinpkm.com/