|
|
|
|
I remembered that in the previous blog (I'm always losing the files that is one reason for my consideration to use WordPress) I publish that my favorite airplane is the B-2 Spirit, a military bomber. Regrettable military but it design is just impressive.
One day as other I was surfing on the net and I found a website of crashes, where you can cry seeing that the cheapest crash is of a Corvette.

The point is that I found the B-2 Spirit, a crash that cost 1.4 billion dolars, the accident occurs when the airplane was taking off the airbase on Guam in February 23, 2008. The specialists saids that it happen because of the moisture in the system, what did that the airplane go nose and crashed. This is one of the 21 that exist and the accident is the most expensive in air crash history.


You can see the two pilots leaving the airplane before the impact. The impact begins in the minute 2.
From an aeornautical view this accident shouldn't happen, except for the reasons of the authorities any pilot need to know that when the airplane is losing lift-off (loss of height to let me understand) it should be keep straight and land inmediatly and wherever it's neccesary. I'm sure that both pilots was fired, you can see in the video that when they are off they tryed to turn back, and I'm sure that they put the engines to the maximum. When they try to turn back the little lift-off that they have is lost and if they put the engines to the maximum it helps to the crash.
A sadness that the elite pilots don't know what a ULM knows or should know.
Reference to: http://www.wreckedexotics.com/ |
|
|
|
|
|
|
|
|
It has been a long time since I wrote here. The truth is that I was a 5min to moved the website to a WordPress, but then i rememberd all that cot me build this website and I decided that I would continue with it even if it's more complicated to update (by now).
To the observers they realized that I abandoned Adsense, they put many limitations and pay less, it's better to me go door by doot to see who wants to have his face on my website.
At the momento the development in general is stop, I remodeled my bussines www.akapon.net and finally finish the Official website of Panda. When I have more time I will finish the other projects.
Well, this message is just to let you know that I'm back in my blog and I hope that tomorrow have something that like to yours screens. |
|
|
|
|
|
|
|
|
I finished with this, it would help me to administrate all my media files that i would publish here.
Example: http://www.zseven.net/multimedia/view/20080817155900
Base URL: http://www.zseven.net/multimedia |
|
|
|
|
|
|
|
|
Like you see i almost done with the tasks. I have to reorganizate everything because of the new way of ge the language, that is really comfortable.
The RSS is working, again our sponsor is FeedBurner.
To have an idea of how to make a RS you just need to create a new file (in my case with .php extension) and make a print in it of all the news, after that link it with FeedBurner.
Remember that the RSS should be XML files, so before put your PHP code (we save it as PHP so we want it that work as it) you should put the next labels:
<?
header("Content-type: application/xml");
echo "<?";
echo "xml version=\"1.0\" encoding=\"iso-8859-1\"";
echo "?>\r\n";
echo "<?";
echo "xml-stylesheet type=\"text/css\" href=\"".$style."\"";
echo "?>\r\n";?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
// Here should be your code for the RSS
</channel>
</rss>
* Its a simple way to do it, where your PHP should print the records of the database should be between the labels <item></item>, read something about how to do RSS and you would understand me.
Also i finally implemeted the code to not html insertions in my comments and with this dont allow to the users to insert images or frames with inappropiate webpages. And a code that dont allow to make PHP injections, this were teach it by Hsilamot, this is a little paranoic with the safety and he have amazing results with ALL his methods.el es un poco paranoico con eso de la seguridad y ha tenido muy buenos resultados con TODOS los métodos que utiliza.
<?
function nospammers($code){
$s1=array("&", "<", ">");
$s2=array("", "", "");
return str_replace($s1, $s2, $code);
}
function nophpinjection($code){
$s1=array("'", "\"");
$s2=array("\'", "\"");
return str_replace($s1, $s2, $code);
}
?>
* The codes only replace symbols. In the HTML code it replace HTML labels for nothing making all plain text. In the case of the injections code it replace the quotes of any kind for quotes that cant be manipulated to make an injection.
The WDB structure (Web-data-base) is just to edit all the frames that you are seeing, just making a relation between the friendly urls and the data base.
The other things you already know them and also i need to develop somethings else.
This website had been test in the next browsers (% of efficient):
95%
100%
95%
95%
98%
* The variations are about tables interpretations. |
|
|
|
|
|
|
|
|
Since now this website use cookies, i decided that have yoursite.com/es or yoursite.com/en (the language) didnt seems nice.
Now i use cookies to save the preferences of language of the user, if you want to know how read this: (actually are sessions i think that are more safety than the cookies)
<?
// Session start
session_start();
// If the user want to change the language the variable 'language_of_user' from the URL should have it
if($_GET['language_of_user']=="") {
// This verify that the session doesnt have another language
if($_SESSION['language_in_session']=="") {
// If it doesnt have it, the code take it from the browser
$language_default=substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0, 2);
// In my case i just use two languages, so if the browser are not any of this it take English as a default
if($language_default=="es"){ }
if($language_default=="en"){ } else { $language_default="en"; }
} else { $LANGUAGE=$_SESSION['LANGUAGESESSION'];
if($language_default=="es"){ }
if($language_default=="en"){ } else { $language_default="en"; } }
} else {
// If 'language_of_user' have a language it take it over everything else in the session.
$language_default=$_GET['language_of_user'];
$_SESSION['language_in_session']=$language_default;
}
?>
I hope that this will help you, if you have some doubts you can read the last article about this topic. |
|
|
|
|
|
|
|
|
Like you see my flv player works without any troubble, you can download if you want it here:
http://rapidshare.com/files/131760630/22072008z7.rar
Source: http://www.jeroenwijering.com/
And the code:
<embed src="player.swf" width="300" height="250" allowscriptaccess="always"
allowfullscreen="true" flashvars="file=file.flv"/></embed>
With this script i want to do a multimedia system where i can put all my videos, photos and sounds, more advanced that anything that i ever done but very funtional, the idea is that it give me the code just to paste it here and also give it to you.
Note: You can customized this player with logotype, colors, and other things just changing this line:
flashvars="file=file.flv&screencolor=0x000000&logo=logo.png&link=http://www.zseven.net" |
|
|
|
|
|
|
|
|
The thursday of the last week i decided to jump from a airplane, finally i have the chance and i take it. With more than 40,000 jumps my instructor convinced me.
Im really thing that i going to have fear to jump, but actually in the video i jump late because the instructor stop me like 2 times, in the third time he let me go, im still without know why.
It feels like flight, until you realized that that you are going to see if the parachute open or not and of that depends your life.
What is the worst part?, when the parachute open and a strong force pull you up from 200-250km/h to 80km/h in 2 seconds. Then you remember where you come from...
Where a hell you are jumping?, Abbotsford, BC, Canada.
What do i think feeling the ground?, first jump, two more i can do it alone.
How much did i fly?, 1 mile.
Nothing more to add, is cool. :)
Unless know i now that im not afraid form the high just to make me strawberry mermelade on the floor.
* With this i start my videos module, good bye YouTube, i dont need you anymore. More information in the week, i make a database of videos, based me in a script that i will put later to download.
Note: If you ever play Grand Theft Auto the last versions and jump in a parachute it seems equal, but feels better.
The bored part, not too bored but in contrast it is... |
|
|
|
|
|
|
|
|
|
|
•
RSS
•
Multimedia system
•
Anti-injection
•
WBD structure
•
PDF creator
•
Notes
•
Search engine
•
Contact
•
Links
•
Curriculum
•
Profile
•
Flash images
•
Login
•
FLV player
•
Shop
|
|
|
|
|
|
|
|
 |
|
|
|
|
 |
|
|
 |
|