Wirtuals.pl – PHP, XML, (x)HTML, JavaScript (AJAX), CSS

30Apr/11Off

Rounded Corner Boxes – best solution

Rounded corners in CSS

Rounded Corner Boxes the CSS3 Way

Tagged as: , Comments Off
18Apr/11Off

Flowplayer – best flash player

Embed video streams to your website. Superior alternative to YouTube. Open Sourced under the GPL license. No other software makes this smoother.

 

More info : http://flowplayer.org/

18Apr/11Off

jQuery-Notes

jQuery-Notes is a simple and easy to use jQuery-Plugin that allows you to add notes to any image (even foreign ones) on your website or blog.

Features:

  • add notes to any image
  • many setting options
  • totally scalable
  • changeable look via css
  • link images
  • no database required

More info : http://jquery-notes.rydygel.de/

7Mar/11Off

jFormer form framework

jFormer is a form framework written on top of jQuery that allows you to quickly generate beautiful, standards compliant forms. Leveraging the latest techniques in web design, jFormer helps you create web forms that:

  • Validate client-side
  • Validate server-side
  • Process without changing pages (using AJAX)

 

Demo: http://www.jformer.com/demos/

 

26Jan/11Off

Klastrowanie sesji PHP z memcached

http://gagor.pl/main/index/klastrowanie-sesji-php-z-memcached

Tagged as: , Comments Off
26Jan/11Off

JpGraph – Most powerful PHP-driven charts

http://jpgraph.net/

http://jpgraph.net/features/gallery.php

Tagged as: Comments Off
24Jan/11Off

STOCK PHOTO / FREE

http://www.bluevertigo.com.ar/bluevertigo.htm

Tagged as: , Comments Off
19Jan/11Off

Easy version control for Linux

RabbitVCS is a set of graphical tools written to provide simple and straightforward access to the version control systems you use. We provide multiple clients and extensions designed to give you a uniform experience no matter what development tools you use.











Get it!

13Jan/11Off

cufón – fonts for the people

Cufón aims to become a worthy alternative to sIFR, which despite its merits still remains painfully tricky to set up and use. To achieve this ambitious goal the following requirements were set:

  1. No plug-ins required – it can only use features natively supported by the client
  2. Compatibility – it has to work on every major browser on the market
  3. Ease of use – no or near-zero configuration needed for standard use cases
  4. Speed – it has to be fast, even for sufficiently large amounts of text

And now, after nearly a year of planning and research we believe that these requirements have been met.

So, how does it work?

Cufón consists of two individual parts – a font generator, which converts fonts to a proprietary format and a rendering engine written in JavaScript.

The generator

In reality the generator is little more than a web-based interface to FontForge. First, the generator builds a custom FontForge script based on user input and then runs it, saving the result as an SVG font. The SVG font is then parsed and SVG paths are converted to VML paths. This is a crucial step in achieving stellar performance in Internet Explorer, as it supports VML natively. The resulting document is then converted into JSON with a mix of functional JavaScript. This has numerous advantages:

  1. To include a font, you only need to load it with the standard <script> tag as any other JavaScript file and it will be registered automatically
  2. There is no need to manually parse the file on client-side again
  3. External JavaScript files block execution until they have loaded, which helps us to achieve a flicker-free, clean replacement
  4. It compresses extremely well. While often somewhat large in terms of file size without any compression, a compressed font usually weighs in 60-80% less than the original.

The process is then repeated for the rest of the fonts given to the generator (if any) and the resulting JavaScript file is sent back to the client with a distinctive filename.

The renderer

The renderer is a bit more complicated. It consists of 3 parts – a Core, which provides the API and common functionality, and two rendering engines. One of them renders VML shapes and is used for Internet Explorer (it supports VML from version 5.5), while the other one uses the widely supported HTML5 <canvas> element. Due to the path data already being VML, little work is needed in the VML engine. The canvas engine, however, must convert all paths to the corresponding sets of drawing commands provided by the canvas API. This turned out to be somewhat tricky at first, but a solution was found after two complete rewrites in the form of code generation and caching, resulting in a very fast renderer.

Inline SVG was also considered but quickly turned down due to it being surprisingly slow in the few browsers that actually support it properly.

More: http://cufon.shoqolate.com

3Jan/11Off

PHPExcel – OpenXML – Create Excel2007 documents in PHP

Project providing a set of classes for the PHP programming language, which allow you to write to and read from different file formats, like Excel 2007, PDF, HTML, ... This project is built around Microsoft's OpenXML standard and PHP.
Checkout the Features this class set provides, such as setting spreadsheet meta data (author, title, description, ...), multiple worksheets, different fonts and font styles, cell borders, fills, gradients, adding images to your spreadsheet and much, much more!

PHPExcel currently features:

* Create an in-memory spreadsheet representation
* Set spreadsheet meta data (author, title, description, ...)
* Add worksheets to spreadsheet
* Add data and formulas to individual cells
* Merge cells
* Protect ranges of cells with a password
* Supports setting cell width and height
* Supports different fonts and font styles
* Supports formatting, styles, cell borders, fills, gradients, ...
* Supports hyperlinks
* Supports different data types for individual cells
* Supports cell text wrapping
* Supports conditional formatting
* Supports column auto-sizing
* Supports rich-text strings
* Supports autofilter
* Supports "freezing" cell panes
* Supports cell-level security
* Supports workbook-level security
* Supports worksheet-level protection
* Group rows/columns
* Cell data validation
* Insert/remove rows/columns
* Named ranges
* Worksheet references
* Calculate formula values
* Add comments to a cell
* Add images to your spreadsheet
* Set image styles
o Positioning
o Rotation
o Shadow
* Set printing options
o Header
o Footer
o Page margins
o Paper size
o Orientation
o Row and column breaks
o Repeat rows at header / columns at left
o Print area
* Output your spreadsheet object to different file formats
o Excel 2007 (spreadsheetML)
o BIFF8 (Excel 97 and higher)
o PHPExcel Serialized Spreadsheet
o CSV (Comma Separated Values)
o HTML
o PDF
* Read different file formats into your spreadsheet object
o Excel 2007 (spreadsheetML)
o BIFF5 (Excel 5.0 / Excel 95), BIFF8 (Excel 97 and higher)
o PHPExcel Serialized Spreadsheet
o Excel 2003 XML format
o Symbolic Link (SYLK)
o CSV (Comma Separated Values)
* ... and lots of other things!

PHPExcel