xboxrulz1405241485
Members-
Content Count
3,012 -
Joined
-
Last visited
Everything posted by xboxrulz1405241485
-
The Choice Of Cms. The best CMS
xboxrulz1405241485 replied to Match1405241574's topic in Websites and Web Designing
I've used PHPNuke and PostNuke, but they are generally huge and clunky. They are usually for communities and not much a personal website.For personal or professional websites, I'd recommend Drupal, Joomla or Joomla's predecessor, Mambo.For my personal website, I'm using Drupal, it works really well, it's very modular so that's good.xboxrulz -
Computer Suddently Blacks out Computer Turns Self Off
xboxrulz1405241485 replied to iGuest's topic in General Discussion
Alright, but it seems to me that it may happen again since you'd need to reboot at least 10 times to get it working again.I have suspicions that it's caused by overheating components. Do you have sufficient cooling and have you clear any dust off any fans?xboxrulz -
What Mac's Do You Own? Mac users - represent
xboxrulz1405241485 replied to kaziorvb's topic in Websites and Web Designing
An update to what I posted so far back is that my white Macbook became so faulty that Apple just gave me a brand new (at the time) aluminium Macbook back in November.xboxrulz -
lol, I unno, I guess it's the wealthy feeling you get when you dunno what to get lol.I'm so busy with college right now that I'm just gonna let my myCents sit for a while until at least the semester is over and then I should be back and running.Thanks for the congrats!xboxrulz
-
Computer Suddently Blacks out Computer Turns Self Off
xboxrulz1405241485 replied to iGuest's topic in General Discussion
hfbvm,can you list your computer's complete specifications?It will help us understand better what's the nature of your issue.xboxrulz -
Hey guys, I really need some help here and I'd appreciate if you guys can help me. Alright, so I'm suppose to design a sliding tiles game. However, if you play around with it, it obviously doesn't work as you can see: URL: http://forums.xisto.com/no_longer_exists/ To replicate the bug above, all you need to do is to start playing from bottom up and then the tiles starts disappearing. Also, another issue is that I don't quite know how to tackle checking when you win. I understand that it must match 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15. Can you give me a hint? My implementation is definitely flawed and is shown in the code below. <script type="text/javascript"> //<![CDATA[ var rows = new Array(4) rows[0] = new Array (4) rows[1] = new Array (4) rows[2] = new Array (4) rows[3] = new Array (4) function checkWin() { var winner = false var checker = new Array(4) checker[0] = new Array (1, 2, 3, 4) checker[1] = new Array (5, 6, 7, 8) checker[2] = new Array (9, 10, 11, 12) checker[3] = new Array (13, 14, 15, 0) for (i = 0; i < 4; i++){ for (j = 0; j < 4; j++){ if (rows[i][j] == checker[i][j]){ winner = true } } } if (winner){ alert("Congratulations! You've Won!") return true } return false } function move(tile){ var obj = document.getElementById('tile' + tile) var win = false for (i = 0; i < 4; i++){ for (j = 0; j < 4; j++){ if (rows[i][j] == tile){ if (j > 0 && rows[i][j - 1] == 0){ obj.style.left = (j - 2) * 100 + 'px' rows[i][j - 1] = tile rows[i][j] = 0 }else if (j < 3 && rows[i][j + 1] == 0){ obj.style.left = (j + 2) * 100 + 'px' rows[i][j + 1] = tile rows[i][j] = 0 }else if (i > 0 && rows[i - 1][j] == 0){ obj.style.top = (i - 2) * 100 + 'px' rows[i - 1][j] = tile rows[i][j] = 0 }else if (i < 3 && rows[i + 1][j] == 0){ obj.style.top = (i + 2) * 100 + 'px' rows[i + 1][j] = tile rows[i][j] = 0 } win = checkWin() if (win){ break } return } } } } function initialize(){ var check = new Array (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15) for (i = 0; i < 4; i++) { for (j = 0; j < 4; j++) { if (i == 3 && j == 3){ rows[i][j] = 0 } else { var n = Math.ceil(Math.random() * 15) while (check[n - 1] == 0){ n = Math.ceil(Math.random() * 15) } rows[i][j] = n check[n - 1] = 0 document.getElementById('tile' + n).style.left = (j + 1) * 100 + 'px' document.getElementById('tile' + n).style.top = (i + 1) * 100 + 'px' } } } } // ]]> </script>Many thanks, xboxrulz
-
My brother had a problem with his Windows XP installation where all his disc drives were disabled because Windows XP couldn't load the drivers for the optical drives.In order to resolve this I had to reinstall Windows XP because the base files were corrupted, hence it being unable to use the drivers. The physical hardware works because I loaded a Linux LiveCD and it read a couple discs flawlessly.xboxrulz
-
lol, you're not that far either, you've already got 2447 posts lol. xboxrulz
-
For me, I generally stick to MySQL just because a lot of websites use it and it's the only database system that Xisto provides right now.I've been forced to use MS Access and MSSQL, and I didn't like it one bit. Especially the forcing part lol.xboxrulz
-
lol, I finally broke the 3000 post barrier =D! hehehe, 3 years ... holy crap, that's like 1000 posts a year, man I need a life lol. xboxrulz
-
I think I'm so used to using the XHTML validator. This seems like a very good alternative. It's nice and simple!Cheers,xboxrulz
-
I suggest you to look at http://www.oracle.com/technetwork/java/index.html. This is the official Java developer website. Specifically this article should get you off the ground: http://www.oracle.com/technetwork/java/index.html xboxrulz
-
Computer Suddently Blacks out Computer Turns Self Off
xboxrulz1405241485 replied to iGuest's topic in General Discussion
Best to run them one at a time.I seriously think it's just a faulty RAM.xboxrulz -
Css & Putting Logos At The Bottom
xboxrulz1405241485 replied to xboxrulz1405241485's topic in Websites and Web Designing
Thanks, I did find an alternative. p.footer{position:fixed; bottom:1px;} That forces it to the bottom. xboxrulz -
Css & Putting Logos At The Bottom
xboxrulz1405241485 replied to xboxrulz1405241485's topic in Websites and Web Designing
It's on a password protected server so I can only give you the code: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd xmlns="http://www.w3.org/1999/xhtml/; <title/> <style type = "text/css"> body{font-family:"Calibri", "Bitstream Vera Sans", "Arial"; color: #FFFFFF; background-color:#2B3856} a:link{color:#ffffff} a:visited{color:#ffffff} </style></head><body> <h2><em><strong><u>Assignment 2</u></strong></em></h2> <h3><strong><u>Contents</u></strong></h3> <ul> <li><a href="index2.html" target="cframe">Index</a></li> <li><a href="medianet.html" target="cframe">MediaNet</a></li> <li><a href="pjharvey.html" target="cframe">P.J. Harvey</a></li> <li><a href="../" target = "_vblank">Home</a></li> </ul> <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> <p> <a href="http://validator.w3.org/check?uri=referer" target = "_vblank"><img src="http://www.w3.org/Icons/valid-xhtml10&%2334; alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a> </p></body></html> Thanks, xboxrulz -
Hey guys,I'm trying to have a logo at the very bottom of the screen, but I don't know how to do this in CSS. It's part of my project and it's just ridiculous to constantly inserting <br/>'s.Is there a way to always have it at the bottom no matter of screen resolution?Thanks,xboxrulz
-
Guys, please try not to talk people into pirating MacOS X as this is against the rules of the board which may result in account suspension or termination.Try to keep it in the realm of legitimacy. I'm not going to lock this because I don't even know if it's really legal or not since running MacOS X on PC is being contested in courts.xboxrulz
-
Windows Vista's minimum specs doesn't require a dual core, 1 GB of RAM and 512 MB VRAM video card. It needs at least a Pentium 4 2.8 GHz, 512 MB of RAM and at least an integrated graphics chip. Of course, that's just minimum specs. If you can't run Windows Vista, you can't run Windows 7. Windows 7 is just a refinement of Windows Vista just like how Windows XP is just a refinement of Windows 2000. Windows Vista works really well with any dual core machine. I got a quad core and it just screams insaneness. xboxrulz
-
How Long Have You Been Programming ?
xboxrulz1405241485 replied to miCRoSCoPiC^eaRthLinG's topic in Programming
I'm a Java freak, if I want to do something, I'd do it in Java. I don't like C, but C++ is good. I've been programming since grade 10 (or about 14-15 yrs old). Now in college, I'm learning C++, but still accidentally add Java stuff sometimes lol.xboxrulz -
1and1 Click-and-build Crippled....
xboxrulz1405241485 replied to unimatrix's topic in General Discussion
I usually would stick to CPanel based host, but I'm quite lured towards Site5's hosting offer.However, nothing will make me budge since I'm happy at Asta.xboxrulz -
Does Anyone Still Run PC/MS/DR-DOS ?
xboxrulz1405241485 replied to madcrow's topic in Websites and Web Designing
Those exist? All I got are UNIX classes lol. xboxrulz -
Linux Distribution For Running Windows
xboxrulz1405241485 replied to pyost's topic in Websites and Web Designing
Ya, I recommend VirtualBox because it's free. It's very simple and straight forward to use: https://www.virtualbox.org/ Best of all, it's opensource =D! xboxrulz