<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>PeaceData</title>
	<link>http://peacedata.info</link>
	<description>costsaving means worksaving</description>
	<lastBuildDate>Fri, 21 Nov 2008 21:23:55 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Isn&#8217;t it beautiful</title>
		<description>

The Helio Ocean by Pantech is the first major handset announcement out of the annual CTIA  conference. Highlighted by a unique dual-slide form factor, the Ocean is the most unique Helio handset by far. Executives at the startup carrier have been buzzing about the device and noted that this ...</description>
		<link>http://peacedata.info/2008/11/21/isnt-it-beautiful/en/</link>
			</item>
	<item>
		<title>google sync</title>
		<description>Well, google has the mobile version of google calendar. So, you have access to you plans and events from everywhere. But, what if you're somewhere, where are no mobile networks? On island in the middle of the ocean or at least at the subway?

No Problem. You can sync your BlackBerry ...</description>
		<link>http://peacedata.info/2008/11/21/google-sync/en/</link>
			</item>
	<item>
		<title>PHP 5.2.7 RC3</title>
		<description>PHP 5.2.7 RC3 is out.

Sources can be found at http://qa.php.net/

The release can be availbale on thursday. </description>
		<link>http://peacedata.info/2008/11/09/php-527-rc3/en/</link>
			</item>
	<item>
		<title>Picasa for iPhone</title>
		<description>How I couldn't continue the previous post? Google has launched special version of Picasa for iPhone (iPod Touch). Regular Picasa for web browsers are using a lot of AJAXy things and do not work on iPhone by default.  But special new version is great!

[caption id="attachment_250" align="alignnone" width="320" caption="Picasa List ...</description>
		<link>http://peacedata.info/2008/10/31/picasa-for-iphone/en/</link>
			</item>
	<item>
		<title>Google on iPhone</title>
		<description>Glad to inform, that Google folks do not waste their free 20% time. There is available special version of Google and Gmail for iPhone (and iPod Touch):

[caption id="attachment_239" align="aligncenter" width="320" caption="Google Suggest On iPhone"][/caption]

[caption id="attachment_240" align="aligncenter" width="320" caption="Google Search On iPhone"][/caption]

[caption id="attachment_241" align="aligncenter" width="320" caption="Gmail on iPhone"][/caption]
 </description>
		<link>http://peacedata.info/2008/10/29/google-on-iphone/en/</link>
			</item>
	<item>
		<title>Blue circle on the map</title>
		<description>Google Maps for mobile phones now has the great feature - it can define your current location. You should just press "0" key on your phone - and map will indicate your approximate location by centering on a blue circle like this





It is important that you don't require GPS-receiver. Ok, ...</description>
		<link>http://peacedata.info/2008/10/28/blue-circle-on-the-map/en/</link>
			</item>
	<item>
		<title>Google Mobile Blog</title>
		<description>
To support Android Google has launched new blog: Google Mobile Blog.  While it is too early to use and it is only one  device based on this system, I  will use Symbian UIQ or something. But mobile.google.com is on bookmarks despite of everything. </description>
		<link>http://peacedata.info/2008/10/28/google-mobile-blog/en/</link>
			</item>
	<item>
		<title>The Open Source Web Design Toolbox: 100 Web Design Template Sources, Tools and Resources</title>
		<description>The open source model has, over the last 20 years, proven that collaborative development is one of the best ways to incorporate the newest ideas and latest concepts into design.

In fact, the open source model, which began with programmers, has been so successful that it is currently being applied in ...</description>
		<link>http://peacedata.info/2008/10/12/the-open-source-web-design-toolbox-100-web-design-template-sources-tools-and-resources/en/</link>
			</item>
	<item>
		<title>rus2lat plugin</title>
		<description>Testing rus2lat plugin. </description>
		<link>http://peacedata.info/2008/07/21/rus2lat-plugin/en/</link>
			</item>
	<item>
		<title>ajax cheatsheet</title>
		<description>1. Create XMLHttpRequest object


var xmlHttp = new XMLHttpRequest();


2. Get and set form field values with JavaScript
// get the value of "phone" field and write it to phone variable
var phone = document.getElementById("phone").value
//set values in form using response array
document.getElementById("order").value = response[0];
document.getElementById("address").value = response[1];
3. Working with Microsoft browsers

Microsoft Internet Explorer browser uses MSXML ...</description>
		<link>http://peacedata.info/2008/07/18/ajax-cheatsheet/en/</link>
			</item>
	<item>
		<title>Call bash Script Inside PHP Web Page</title>
		<description>Here is a simple way to call a simple bash script inside php script page and have a return value printed to your web page.

Below is a simple bash script called php.sh

#!/bin/bash
echo "Successful call from PHP : "
exit 0


chmod 700 so it would be root executable, and saved it to ...</description>
		<link>http://peacedata.info/2008/07/17/alternative-linux-browsers-2/en/</link>
			</item>
	<item>
		<title>Alternative Linux Browsers</title>
		<description>Currently, there are several linux-based browser running under most linux distros.
here are few of then:

	firefox / mozilla - http://www.mozilla.com/en-US/firefox/
	opera - http://www.opera.com/download/index.dml?platform=linux
	netscape - ftp://ftp.netscape.com/pub/netscape7/english/7.1/unix/linux22/sea/
	dillo - http://www.dillo.org/


And for fast alternative text-based browsers:

	elinks
	lynx
	links

And non-interactive web browser:

	wget
	curl

There are may ways how these tools can be beneficial. Say, we need to download
an image from web ...</description>
		<link>http://peacedata.info/2008/07/17/alternative-linux-browsers/en/</link>
			</item>
	<item>
		<title>last / currently logged in users</title>
		<description>here are several ways of knowing the last logged in users from your box. most of them shows similar details like username, date stamp, hostname, ip address and the like:

Individually issuing them as root :

#last -a
#lastb -a
#lastb username
#lastb
#lastb username
#lastlog

So, who is currently logged in?

#who
#who -a
#w

Some dirty roots:

#ps axuw &#124; grep ...</description>
		<link>http://peacedata.info/2008/07/17/last-currently-logged-in-users/en/</link>
			</item>
	<item>
		<title>install google earth in linux</title>
		<description>Here's a very simple, quick and easy way for installing google earth under linux.

First, download google earth binary file like so:

#wget -c http://dl.google.com/earth/client/current/GoogleEarthLinux.bin

This would fetch the binary file and save it to your current location. It would take some time specially if you are using a dialup connection, so take ...</description>
		<link>http://peacedata.info/2008/07/17/install-google-earth-in-linux/en/</link>
			</item>
	<item>
		<title>/etc/nologin</title>
		<description>This command politely refuses any login or authentication attempt. Could be helpful when you are trying to accomplish something or do stuff from the server while restricting login attempts. And doing this, any message inside this file could be possibly shown to any user with current connection attempts.

If /etc/nologin does ...</description>
		<link>http://peacedata.info/2008/07/17/etcnologin/en/</link>
			</item>
	<item>
		<title>ss - an alternative to netstat</title>
		<description>ss is used to dump socket statistics. It shows information similar to netstat. And It can display more TCP information than state than other tools .

As root, just issue:

#ss


This would you show you listening/established/past/ongoing connections with details such as IP address, sockets, protocol types, port numbers and some received/sent stats:

#ss ...</description>
		<link>http://peacedata.info/2008/07/16/ss-an-alternative-to-netstat/en/</link>
			</item>
	<item>
		<title>find / delete files owned by user / group</title>
		<description>Here are alternative ways to find files owned by a user or certain group. Incase a person resigned, just incase you would need to backup or delete all files owned by that specific user or group not located from his own folder. Remember to do this using the root user, ...</description>
		<link>http://peacedata.info/2008/07/16/find-delete-files-owned-by-user-group/en/</link>
			</item>
	<item>
		<title>uptime</title>
		<description>here’s a quick way to tell how long your system has been running, using root, just issue:

#uptime

would show you more likely this output:

08:02:46 up 66 days, 58 min, 2 users, load average: 0.10, 0.11, 0.03

this is the same information of the first output line from issuing

#w

fields:
1 - current date and ...</description>
		<link>http://peacedata.info/2008/07/16/uptime/en/</link>
			</item>
	<item>
		<title>The fastest way to see how many people are online at your site</title>
		<description>Php in most cases uses files to store session data. In general those files are stored in the /tmp directory (for unix based servers) and this is defined in the session.save_path php.ini directive.

The cool thing about php is that we can have different directives for each site, so we could ...</description>
		<link>http://peacedata.info/2008/07/14/the-fastest-way-to-see-how-many-people-are-online-at-your-site/en/</link>
			</item>
	<item>
		<title>CSS reset</title>
		<description>No need to explain. You all know that different browsers renders the default css in different ways. To make them all to do it the same way we should reset some specific browsers' defaults values. Let's see couple of examples.

Eric Meier's reset

html, body, div, span, applet, object, iframe,
h1, h2, h3, ...</description>
		<link>http://peacedata.info/2008/07/14/css-reset/en/</link>
			</item>
	<item>
		<title>Favicons</title>
		<description>Favicons (favorite icons) are the small images that are associated with a website. It will be displayed on address bar, tabbed browsers and your bookmark list. Therefore, creating an outstanding favicon is particularly important for website branding. The basic guidelines for design a good favicon are “simple” and “unique”.

Here is ...</description>
		<link>http://peacedata.info/2008/07/14/favicons/en/</link>
			</item>
	<item>
		<title>Javascript Libraries. A directory of tools shaping the new web.</title>
		<description>Full Libraries

	DOJO
	Yahoo
	Prototype
	Jquery
	MochiKit
	Ext JS
	Open Rico
	Qooxdoo
	Moo Tools
	X library
	Fork
	OAT
	AJS


Effects

	Script.aculo.us
	MooFX
	Bytefx
	Prototype Windows
	Lightbox
	Lytebox
	Leightbox
	GreyBox
	Behaviour
	Curvy Corners
	Nifty Corners
	jsScrolling

Tools


	XML.ObjTree XML parser
	jsvalidate
	Form validation
	Store json data in cookies
	Livepipe Tabs
	BSN AutoSuggest
	BarelyFitz Tabs
	overLIB Tooltips
	Kryogenix Sortable tables
	FD Sortable tables
	JDV Sortable tables
	TableKit

Graphing

	Plotkit
	Plotr
	EJSChart
	TimePlot
	Ajax-MGraph

Math/Cryptography

	Sylvester
	JavaScrypt
	MD5
	RSA

AJAX


	Bajax
	SACK
	Plex
	Taconite
	Sajax
	jx
	libXmlRequest
	Spry (Adobe)

Other


	JSlibs
	DOJO shrinksafe - compression
	JSmin - compression
	JS flash version detector
	Open JSAN
	MiniAJAX
	Google trends of the major players
	Smooth Gallery
	Slideshow
	Flickrshow




 </description>
		<link>http://peacedata.info/2008/07/14/javascript-libraries-a-directory-of-tools-shaping-the-new-web/en/</link>
			</item>
	<item>
		<title>Шаблоны, темы, дизайн</title>
		<description>



Blogger
Free BlogSpot Templates
Final Sense
Insaini Dot Com
Zoot''s Design
Pannasmontata
Template Panic
Notlar ve Notalar
Faces of Yve
Blogger Templates by Caz
Gecko &#38; Fly
simple-blogskins.blogspot.com

UserCSS
UserCSS - пользовательские каскадные таблицы стилей
userstyles.org
My Stylesheet




Wordpress
WPTheme - русифицированные темы для wordpress
mywordpress.ru




 </description>
		<link>http://peacedata.info/2008/07/14/shablony-temy-dizajjn/ru/</link>
			</item>
	<item>
		<title>YouTube - высокое разрешение</title>
		<description>YouTube с недавних пор предлагает некоторые видео-ролики в  нескольких разрешения. Если вы смотрите ролики на самом сайте YouTube, вы можеет выбирать различные разрешения, добавляя код формата к URL. Добавив "&#38;fmt=6"  - вы увеличите разрешение с 320x240 до 448x336 и удвоите частоту дискретизации аудио с 22.05 до 44.1kHz. А ...</description>
		<link>http://peacedata.info/2008/07/08/youtube-vysokoe-razreshenie/ru/</link>
			</item>
	<item>
		<title>Счастье</title>
		<description>Счастье - это когда есть кого любить, что делать и на что надеяться. </description>
		<link>http://peacedata.info/2008/06/08/schaste/ru/</link>
			</item>
</channel>
</rss>
