Xbox 360

Posted by admin | Uncategorized | Monday 9 November 2009 3:21 pm

Xbox 360 - probably all heard about this promising console with Microsoft, many even played it. In this topic for I would like to talk a little about the service xbox live, or rather about the bani.

xboxlive Xbox 360

So, Xbox 360. This console has many advantages and as many shortcomings on other gaming platforms.
On the advantages you can talk a long time, and as long holivarit about them. Therefore we will not do it.
But the shortcomings would like to stay in some detail.
1. Cheap Chinese build
As we know all the consoles in some degree defective. Different users, this manifests itself in different ways. Someone is playing for years and has no problems, someone is struggling with errors overheating, clip, memory, etc. every week.
To the latter I am, but thanks to site xbox-experts.com, many bugs solved head screwdriver and soldering iron:)
2. The high cost of licensed titles - from the 1000r for all get along, and from 2250 for the rules to the game … some games can and are worth, but the vast majority unequivocally NO. Pricing policy in Russia, I have absolutely not understandable - in fact over the hill disks are stolkozhe, and income by orders of magnitude higher.
Naturally there is some solution to this problem:
Reflash the drive to be able to read not only special verbs and regular stores DVD R DL.
Swing disk image, write it to honestly bought in a shop 100ð DVD R DL
We put in the drive and play.

Naturally this is copyright infringement, etc. etc.. But it is not about that.

CMS in 40 strings

Posted by admin | Uncategorized | Monday 5 October 2009 1:05 pm

This is an example of what can be a powerful RedBean PHP ORM.

Below you can find the source content management system (CMS) for Web sites of all sizes in 40 lines of code. To run this CMS, you only need to configure a database connection!

Once you enter your data to connect to the database, it will work right out of the box.

No options are no longer needed, no initial content in the database, no XML mapping’a, no templates, nothing! All you need - just a file with this code in PHP and library databases: RedBean ORM.

<html> <head> <title> example of a very small CMS in PHP </ title> </ head> <body color=’black’>
<h1> CMS Example </ h1>
<? php
$ self = $ _SERVER [ "PHP_SELF "].”?”;
require (”../ redbean / allinone.php “);
RedBean_Setup:: kickstartDev ( “Page”, “mysql: host = localhost; dbname = tutorial”);
if (! R:: exists ( “page”, 1)) ($ page = new Page; $ page-> setTitle ( “root”); $ page-> save ();)
?>
<? php if ($ _GET [ "type "]==” editpage”): $ page = new Page ($ _GET [ "id"]);?>
<form action =”<?=$ self?> type = savepage & id = <? php echo $ _GET [ "id"];?> & pid = <? php echo $ _GET [ "pid"];?> “method =” post “>
<input type = “text” name = “title” value = “<? php echo $ page-> getTitle ();?>” />
<br /> <textarea name=”intro”> <? php echo $ page-> getIntro ();?> </ textarea>
<br /> <textarea name=”body”> <? php echo $ page-> getBody ();?> </ textarea>
<hr /> <input type=”submit” name=”save” value=”save” />
</ form>
<? php else:?>
<? php if ($ _GET [ "type "]==” savepage”):
$ parent = new Page (max ($ _GET [ "pid"], 1));
$ page = new Page ($ _GET [ "id"]);
$ page-> importFromPost ( “title, intro, body”);
$ page-> save ();
$ parent-> attach ($ page);
endif;?>
<? php
$ currentparent = new Page (max ($ _GET [ "pid"], 1));
$ pages = $ currentparent-> children ();
?>
<? php foreach ($ pages as $ page):?>
<br /> <a href =”<?=$ self?> type = editpage & id = <? php echo $ page-> getID ();?> & pid = <? php echo $ _GET [ "pid"];?> “> edit </ a>
<a href =”<?=$ self?> type = overview & pid =<?=$ page-> getID ();?>”> beneath </ a>
<span> <? = $ page-> getTitle ()?></ span>
<br />
<? php endforeach;?>
<hr />
<? php if ($ _GET [ "pid"]> 1):?>
<a href =”<?=$ self?> type = overview & pid =<?=$ currentparent-> parent () -> getID ()?>”> page up </ a>
<? php endif;?>
<a href =”<?=$ self?> type = editpage & pid =<?=$ currentparent-> getID ()?>& id = 0 “> add new page </ a>
<? php endif;?>
</ body> </ html>

In the near future I plan to write a series of articles on RedBean ORM. This is the most remarkable object-relational mapping system for php, which I have ever seen, and it is tremendously saves time and nerves of web developers.



Check out the analysis of cheapassgamer.com, navitime.co.jp, gigabyte.com.tw, nhk.or.jp, 7sur7.be, kapook.com, cricbuzz.com, mundoanuncio.com.mx, immobiliare.it, sho.com - and much more

HTML facts

Posted by admin | Uncategorized | Saturday 3 October 2009 3:36 pm

A few facts about our favorite HTML, which are hidden by the authorities are rarely mentioned in textbooks and manuals. Perhaps for many it is obvious platitudes, but someone they can seem amusing, someone - useful. Plus, some of abstract thinking about. Inspired by this topic, although the idea matured much earlier.

Objections to the merits, and even moderate holivor in the commentary to fully welcome!

HTML does not allow “overlap” tags (like <a> <b> </ a> </ b>)

In this elementary check with a validator. Although many of the old articles advocating XHTML, you can run into the converse. Perhaps, the authors casually read the specification XHTML1.0 (or can read only the colored text:).

None of the adopted version of HTML was never tag <nobr>, <wbr>, <marquee> and <blink>

Try to disprove a link to the resp. specification, if you can:)

It is reasonable to ask “how then this trash come from?”. Good question …;)

HTML 4.01 Strict stricter (in terms of separation between content and presentation) than XHTML 1.0 Transitional

It is from HTML 4.01 Strict (more accurately, more of the HTML 4.0 Strict) were removed presentational tags like <s>, <u> and <font>, as well as attributes such as align (legacy HTML 3.x). A XHTML 1.0 completely took over the entire set of tags and attributes relevant subversions HTML 4.01, only changing the syntax. Therefore, in XHTML 1.0 Transitional this whole “presentation garbage” left.

HTML does not allow “not to close items”

The fact that the HTML closing (and for the 4 elements - and the opening) tags are optional, does not mean that the relevant elements can be “not close” (and, accordingly, “not open”). Just for closure (opening) of this element is somewhat equal and equally correct syntaxes. And it is not browser-independent activity (as with the first two facts) - a documented feature of the language of SGML, which is based on the HTML version of the second quarter, inclusive.

Rules of the closure elements in the HTML is really more complicated than XML, so heavier parsers (real browsers do not even take up a full SGML-parsing, replacing it with a simplified algorithm tightly sewn up in HTML5 this situation myself, this algorithm is legalized). Still, these rules are clearly defined and unambiguous. Therefore, in the HTML page can not be done without the BODY element or a table without TBODY - a required element appears in its rightful place when parsing regardless of the tag. While in XHTML in XML-parsing can easily construct a DOM, where tr is embedded directly in the table (and it validate correctly!). But where more order? ;)

The foregoing is not an appeal “not to close the tags. But knowledge of this feature can be great help in debugging (one example I have given in the topic for about optional tags).

Limit slash in single tags in HTML means something quite different from that in X (HT) ML

“Samozakrytye” tags in XML (such <br/>) come from a little-known features SGML called «Null End Tags (NET)». And if the XML uniquely determines their value, in the SGML (and, therefore, in HTML4 - in theory) they can be interpreted in two ways. NET has a slash in the closing tag (eg, <title> text </ title> can be reduced to <title / text /), so the entire structure <br/> interpreted as a closed tag line break, followed by the symbol “>”. By the way, that’s how these tags understands HTML-validator - only, perhaps, practically significant application that uses an honest SGML-parsing of DTD (see the example, note the sections «Source Listing» and «Document Outline» below).

It turns out that for HTML-XHTML-compatible markup, we should be grateful browsers … that they do not fully support SGML (and, accordingly, HTML:)! That’s because as it happens.

HTML is not easier for a man than XML, and can hardly be called a “language for the lazy”

Evidence, I hope, above enough:). Instead of once remember (you can even mechanically, like a mantra, not understanding:) a very brief set of not-so-complex syntactic constraints must be constantly aware of the peculiarities of each individual tag credit default when parsing and rendering.

Why such a complicated and confusing HTML not been superseded by a simple and clear, XHTML? Because it is resistant to errors. The reason for that is not necessarily Krivorukov webmaster, especially in our sverhdinamichno-ayaksovoe time.

HTML 5 wins against markup languages, in my view, largely because it saves the robustness (which users are unlikely to give up convenience for developers:), but greatly simplifies the parsing compared with SGML-monsters (on the same basis to the best of many years of browser-based practice).

HTML 5 - today «HTML by default”:)

This paradoxical, but the logical conclusion to be drawn. Since browsers do not support all the standard rules for previous versions of HTML, ignoring the DTD and use doktayp for other purposes, and the rules for the new standard are drawn from their actual behavior - it turns out, the new standard for them “closer to the body” rather than formal action! Again, doktayp for HTML5 does not contain the version number and serves only to activate the standard mode. And for application / xhtml + xml browsers (who knows it) does not require doktaype and understand all the tags and attributes (including deprecated) - which is strange from the standpoint of XHTML1.x, but it is quite logical for XHTML5.

Of course, the abuse of “credit default” has not yet adopted a standard should not be (a reason as Ian Hickson terrified developers obviously taken from the ceiling, the date “2022″ - hasty in such matters as the long-awaited introduction of order in all HTML-nom kingdom, predicts nothing good). But, in my opinion, it is periodically glances at this dynamic is a draft. At least for that in the future have fewer surprises, such as those described in this topic:).


Check out the analysis of hankyung.com, englishtown.com, kharkov.ua, affaritaliani.it, state.il.us, cheapstingybargains.com, pornprosnetwork.com, wwwamnc1.com, allday.ru, rightmove.co.uk - and much more

Sharing photos shadow statue hosting

Posted by admin | Uncategorized | Monday 21 September 2009 1:23 pm

Prepare you want to recognize calescent to share a photo secrete your friends or post positive onto bulletin board or a blog? Here is intelligible answer: upload your picture to photo hosting site at www. pict. com. This basic and swift service will take on contrivance automatically ( store your photo, resize material, tip you links, ticket your pics and stufff… ) Pict is definetly worth a try!

What about free domains?

Posted by admin | Uncategorized | Thursday 17 September 2009 6:38 pm

17 What about free domains?
If there is a way to get free domains, people will not spend $ $ $ on them. All will only get them for free … resulting in a domain name of the company and, quite possibly, hosting companies, to shut down.
And if that happens, our economy will be worse than it already is.
With that said, there * are ways to get a free domain name, but it will not be easy, and you are often faced with many, many, many problems, the most common of which is after the domain expires, you can not upgrade it.

Here’s what you need:
Site, where you simply register and you will instantly receive a free domain name, and you get to keep it forever.
If there is such a site, as I said earlier, the economy would take the fall. And this is probably the reason why thousands of people without work with families to feed.
Okay, this is starting to crush me …. So I’ll point out another thing.
You mentioned you’re new to web design. If so, then I would like to invite you to get a domain name, even if you could get it for free.
You should take a web design one step at a time. You need to start at the end, not from above, otherwise you will not improve their skills in web design. Once you hone your skills, then just buy your own domain.
You’re probably a teenager, and can not buy a domain name * .* But now, because you can not get legitimate free domain name, you just have to tough it on freeserver and buy a domain name when you have money.
Note: Despite giving a good, honest answer to this question, I would upset many people because it simply did not answer they were looking for. Kiddos Well, what you want does not exist, and only deal with him.

Lawsuit Against Tesla Dropped

Posted by admin | Uncategorized | Thursday 10 September 2009 11:34 am

We have yesterdays wiki story about “Lawsuit Against Tesla Dropped” at the largest internet site BBC. Writer thinks of a few awesome problems & internet problems in connection with “A Social Force Departs Google” (zaycev.net), “Yahoo Got Binged” (java.com profile), “PragueCrunch II Is GO! (mangavolume.com)” and “FTD’s Mother’s Day Mishap (jeddahbikers.com profile)”. You can download lots of brand new IT articles and reviews of amazing projects.Hubs, news sites, startups, personal blogs, media websites, services are fully reviewed in “AdWords Gets More Local”. Check it out and bookmark us.

Goodbye, Printed Blog

Posted by admin | Uncategorized | Wednesday 9 September 2009 6:31 pm

We have fresh wiki article with a fresh look on “Goodbye, Printed Blog” at the main tech blog CBS. The author talks about several crazy issues and site creation problems in connection with “Gmail Hitting Some Turbulence” (bmwusa.com profile), “Back I Am” (softwarepatch.com profile), “AIM Embraces The Lifestream (thaiware.com wiki)” and “Twitter unloved in Europe? Bad research from Forbes more like (kataweb.it)”. You can also find megabytes of brand new internet posts & reviews of cool IT paries.Online archives, personal blogs, news sites, media websites, startups, services are all represented in “JuicyCampus Dries Up”. Have a good reading and come back again.

It is all about hosting or domain names?

Posted by admin | Uncategorized | Sunday 6 September 2009 3:45 pm

12 It is all about hosting or domain names?
Nowadays a good website must be not only full of interesting stuff search engines index but also its success depends from hosting and domain names. Some people say it is all about hoisting though it is not as simple, but we are going to figure it out.

Nokia X6

Posted by admin | Uncategorized | Saturday 5 September 2009 12:01 am

Company Nokia has released a new model-a variation on the theme myuzikfona - Nokia X6. Novelty has a 3.2-inch touch screen and 32 GB of memory (much like a new competitor iPhone). The model is rather thin, only 14mm. On board of which fit: 5-megapixel camera with dual LED flash, TV output, the ability to edit video and instantly placed it online, A-GPS navigator with maps Ovi, access to Nokia Music Store, a full-featured -Web browser support Flash Lite. The battery allows the phone up to 16 days of standby time, up to 35 hours of music playback.

Nokia X6 will start shipping in the fourth quarter of 2009 at the price of EUR459 (about U.S. $ 650).

via niksalehi.com section from website database registry

Samsung NV100HD (TL34HD) Product Image - Gold

Posted by admin | Uncategorized | Sunday 5 April 2009 4:50 pm

Samsung NV100HD (TL34HD) Product Image - Gold

Next Page »