hitmanblood
Members-
Content Count
789 -
Joined
-
Last visited
Everything posted by hitmanblood
-
Well we now think that in physical point of view time is like an infinite spiral. It is just circling but in fact going on forward that is the main reason why sometimes similar thing happen in history. And if we consider our current knowledge of universe and what we predict that might happen that is in other words we are predicting that it will condensate back into one atom after it has expanded till its end that is when it is expanded and starts collapsing to the one point in space time continuum however when it gets back to one atom it will probably starts expanding in its usual way. So We have to consider this as an infinite loop in space and time.And because of this infinite loop I would say that time that is eternity is not possible to reach or it is constantly expanding if we would look around time spiral we would reach one end what we tough that is end and tim ewould expended and eluded us furthermore and so we would go to infinity.But as a conslucion I would like to say that time or eternity for human being one which could live eternally. Is only till the point when universe collapses. So to say only until universe which we know today is not destroyed and back to its initial point.
-
Well I also think that we live in the video game however I started thinking so after movie matrix. Because it is really possible that we are somehow trapped inside some sort of shell and living our lives in this game. But until someone escapes and lives to tell about that I am still living this life as only one.
-
War Is Becoming Like A Videogame
hitmanblood replied to Matrixdudej's topic in Science and Technology
I completely agree with Burke actually I have nothing more to add except that the biggest advantages in science have been made because of necessities for better weaponry. -
I've Got An Invention For You Trap17
hitmanblood replied to galexcd's topic in Science and Technology
I don't really understand your post and don't get it really actually to what is it related? If you are considering cold fusion from my previous post then you must understand that thing might just be possible it i sonly problem that no one sees solution for it right now it is alchemist problem of XXI century. And I watched once show I repeat show where they explained actually said that formula for cold fusion might be so simple that it will be once discovered by student of applied physics. It is just the problem that biggest minds are considering it to be hard to found and they are that way thinking in the wrong direction. And canceling friction is not that hard but the energy machine would produce would have to be used for friction cancelling and probably aside from that some energy would have to be transfered from somewhere else as this wouldn't be possible to maintain. -
Is Democracy The Best Way To Govern?
hitmanblood replied to amit nigam's topic in Science and Technology
I am not that much familiar in specifics with you about united states government. But what I consider is that You've got point there that new governement has too much time to adjust that is they use too much time. And what about third world countries where governments are changing more often.Also I would like to point that democracy is not the most stable system we have because of its fundamental law which is changing of the government every five or every four years. Because of this people cannot get really on some project considering only large scale projects, if one government start project other may think it is not necessary and other government closes this one and starts another one. This is main reason why democratic system is not sustainable and why in the democratic system there are so many scandals it is not because people have free thinking it is merely because of the conflict of interest of different government set up. The only thing that can be stable is some sort of long term government or any sort of ruling where there is one ruling body which is staying on the head of state for at least 50 years. This and such system is only feasible and sustainable to be stable. Otherwise it just breaks down when hall mechanism is wrong it is not hard to break it. But when someone is on the head of state for long term period this will in fact produce stability and it is not necessary that he or she or if it is some sort of government they are competent but they will produce stability because of the mere thing that they are not changing government every so. When they start some project they have the time and the power to finish it. And nothing else would stop them. However the biggest problem of such system would be that if really incompetent person would come in charge then it might produce more bad things then good to the society as a hall. That is why I would like to point that there should be one more body which would control the actions of the higher body and interfere only in case if it becomes critical like if people get so dissatisfied that they are ready to start riots and so on. -
Well OK here it is I will put just parts of code. The beggining of the form:<form action="private/submition.php" method="GET">Then parts where php script obtians variables values. $username = $_GET['username'];$rank = $_GET['rank'];$email = $_GET['email'];$link = $_GET['link'];Some variables. I really don't see possible mistake as I hvae done this thousand times and now in this particula script it doesn't dowrk.Also I have script on the same server which works with input and it works fine without any problem.
-
Hey I think you cannot joined chat room because it doesn't allowed passing of cookies or it might be that page on which chatroom is placed is not allowing you to enter chat room because it detects proxy server. I would suggest torpark free software which routes you trough several proxy servers and then on the home page they don't detect you as user from proxy. Hopefully this was simple enough.And for the pop up it is exploit and I belive haxored has given you response already.
-
I agree that they have done poor job answering to the market call but if you check core duo which is usually showed as the ace of the Intel maybe only one they have, and the history between the two companies you may notice that always Intel is first to make show down and then AMD puts their technology in place and Intel sales just drops down and in fact I think that they will await a bit longer as they have really competent processor on the market that is AM2 64 X2 seriaes which is cheaper some 25% and it has better performance.
-
Could you put your personal specifications I am not fond of Windows but I use it. Also it would be great to know where did you experienced problems with vista it cannot be that bad Because I was on presentation of vista in the University and talked to one Windows Virtual Programmer and it did not showed any slowdown however as I exlplained in the previous post we will see how will it work after one year of running on the computer.
-
I think the best antivirus software is Avast it is free reliable with constant updates of the database and software.
-
Well you are not really helpful if you could just write what exactly and where do you want to do it. Because you should be able to do this with include or require method in php. Similar way like cute news represents last news anywhere where you call the script.
-
Depends what you want to do if you are doing it hard core old fashioned style like me I would suggest then textpad oyu can configurate it in whatever fashion you want and like. However many of my friends use ultraedit but it is just too huge and not robust so to say. Textpad is small concise you have integrated java and javac command so you don't have to run command prompt next to it and it is easiy when you need something degugged.If you like to generate many things then Eclipse is just for you as you can do almost everything with it. Well in fact you can do everything with it. And furthermore it has really nice debugger so it is easy to use however the program itself is relativly large and you will need some time to get to the heart of it. But in the end it is free which is most importnat thing developed by open source community with thousands of add ons.BOTH PROGRAMS ARE FREE.
-
This program of yours is probably not needed anymore but I have decided to write it if you care for it still. Here comes the code.// Programs makes interesting output some sort of triangle with numbers.// HitmanBlood#include<iostream>using namespace std;int main(){ for(int j = -1; j <= 5; j++){ //First loop coordinates the raws for(int k = j + 1; k <= 5; k++){ // Cordinates this second loop for columns cout << k; } cout << endl; // Transfer to the new line that is new raw } //Second output for(int j = 6; j >= 1; j--){ // This loop is again coordinating raws for(int k = j - 1; k <= 5; k++){ // Second loop which is coordinating columns. cout << k; } cout << endl; // Transfer to the new line that is new raw } system("pause"); // If you are using linux just delete or comment this line }You see it is simple as that.
-
9 Year-old Girl Gives Birth In Amazon Rainforest
hitmanblood replied to arnz's topic in General Discussion
I really don't understand why are everyone stating how this girl is poor and she may be raped and so on. Nothing of those things is stated in the article which is precisly explaining that she and baby girl are ok and that police was about to research sexual habits and customs of the tribe in which she lived. No one can blame them if they have some sort of belief which includes sexual act with underaged girls. And there in article it is clearly stated that such events happened before it is just that no one saw such young girl giving birth for about several decades. -
The Big Debate On Cloning Just something i think...
hitmanblood replied to hotchick2121's topic in General Discussion
I am also for cloning it has many good benefits. However it is its fallacies. If we could you some sort of transplants harvesting methods that would be great as in my oppinion cloning used for good things and in good fashion is not actually dangerous it is not immoral thing to do however there are some problems with ethics but Im my personal opinion it is also ethical thing to do to save a person life. If clining is used to produce massive armies of soldiers or to infiltrate some sort of spy then it is dangerous thing and in fact bad thing. But if we are about to clone a person it will be in militiray experiments first and that is for certain. As the biggest advantages of the human race were done in the military labaratories and were first applied in the warfare.However there are few more things to consider as I already said organ harvesting would make cheaper medicine and it would increase human lifespan then clonning could also solve few problems with hunger in the world. As we would be able to clone animals and in addition with the genetical manipulation gain better breeding animals however this would be for some different discussion. -
Controversial Topic: Weapon Ownage How do you feel?
hitmanblood replied to Albus Dumbledore's topic in General Discussion
I have nothing against weapons owning however I would like to see strict control of weaponry because those weapons which are under control I want to say for which people take licneses and so on are not actually dangerous but those weapons out of control which authorities don't know they exist are actually dangerous and most people killed today are killed with a bullet from such a weapon. So legalisation is ok but with strict control in place. -
I wouldn't agree completely about you on this. As we can predict to certain extent how some things will develop many large international corporations are considering this option and they are slowly putting on market certain things. Because everything goes hand in hand. We could program high tech operating system but it is not market feasible if we don't have computer to run it on. So all such things have to be considered. And large corporations shaping the look of future are considering this things and they are slowly satifying the market which in fact and in return provides them with larger profit.
-
Is Democracy The Best Way To Govern?
hitmanblood replied to amit nigam's topic in Science and Technology
Yes but you must consider funding for such process. Because one could say that in Swizerland they have unlimited funding ability as the are bankers but in fact Swizerland is maybe only country in world to do so and which is able to do so. Wanting to do something is fairly different from being able to do something. -
Well I was using phpnet.us but as they started putting some advertisement I am switching to some other host. They offer unlimited bandwidth then php mysql three databases then bunch of good scripts for automatic installation and so on.In fact it is really good but when I checked today Xisto I was amazed how better this one is.
-
Hmm I don't see how come that you had such problem as what I did was to click on the network card I was using and then I just allowed other computer to access the first one. After that I was able to do everything eve to go to the internet. And files could be shared by the network places. I don't see why did you had any problem.
-
Well it depends what are you doing with your computer. But I have both and I am currently using more my laptop then desktop. However I am considering to buy new one just haven't decided what to buy as I need computer for server and laptops have some advantage over desktops.
-
Favorite Os? What is your Favorite Operating system
hitmanblood replied to Mafian's topic in Operating Systems
I am still using Windows XP and I want change it probably I am not even considering to transfer to the linux. As I don't need it and XP evethough I don't prefer it is to some extent good Operating System. Also I would like to point out that if you have Linux you don't need virus protection program. And About vista eventhough Microsoft is stating that it is completely newly written I would like to point out that it is still using large parts of XP coding however they have rewritten many very important parts and many critical system parts have been transfered out of kernel so to say the architecture of Vista provides more security then that of Windows XP. But it is still more or less Cosmetical update. I don't like linuxes as they are like to play hard tog et. Although it offeres more ability and control over your own computer I really don't need that much and Windows allows me at the moment apporximately the same amount of control i would need. -
Well you may search for some add on it might be helpful.
-
Well if you are using Xisto as your host there is automated option for this so you want bother about adding the htacces. As it can be tiring sometime actually all the time