Jump to content
xisto Community

Feelay

Members
  • Content Count

    275
  • Joined

  • Last visited

Everything posted by Feelay

  1. World of Goo is a game that I love! Especially the music and sounds!
  2. I'm not quite sure that you will find anything. The thing is that every "on-site-forum" is configured to that particular site. What I recommend you to do is figure out how a forum works, for example, you'll need a database. In this database, you'll need the following tables, at the least: Users Topics Posts Now the "Users" table will be used for the login and such.The "Topics" table will be used to store the topic ID, topic starter etc. The "Posts" is used to store posts.. I'd have to make a complete tutorial to actually teach you how to make an entire basic forum, and I'm afraid I don't have that time at the moment. Maybe you can request such a tutorial here: Xisto - Request Tutorials Then of course, you can always try to learn how to make one yourself (a forum that is). To tell the truth, like I said before, I'm almost 100% sure that there is no step-by-step tutorial to how to make a forum for your website from scratch. Everyone can write a book if they know the language. Not everyone can write a good book unless they practice. In other words, everyone can learn PHP (which I assume you haven't [maybe you should, or if you want to keep relying on your friend, keep reading]). Not everyone can make any system without knowing how that system works or without achieving what you want by making your own system. What I'm trying to say is.. It'd be better for you if you went to learn PHP and if you went to learn how to actually think when making systems like administrations and forums and so on. I'm sorry if anything I've written here is gibberish, the time is 12AM already for some reason. Anyways, good luck. Regards, /Feelay
  3. Seems to me like the question to your answer is no. I might be wrong, but as usual, I blame it on the time being 4AM. Anyway, I made some quick research, and found two interesting links. The first one is Wikipedia. Not always so reliable, but why not give it a shot. It explains how PageRank is calculated, and it also explains what PageRank is. I'll quote the part I found important about the calculation. If you want to read the rest of the article, here's the link: Wikipedia - PageRank I also found some interesting facts on how to improve your ranking, written by Google themselves I think. Here's an interesting quote: Here's the link: Webmaster Guidelines As you can see, there is nothing about copied text in the entire "content" part. Interesting article though, Hope this was some good information. Regards, /Feelay
  4. Thank you starscream, I'll check it out later today, it's morning already and I've got to go get some sleep, :/Derek, I managed to start ijji reactor, but couldn't get further than that, couldn't even login. Afraid it doesn't work. No WINE support on this one.
  5. Hm, I managed to install it, but when I try to start it nothing happens, :/
  6. I'm afraid I didn't get that. Could you please explain what you mean? What is it that you've tried? Full screen games? If the answer is yes, full screen games works great, if not, please explain,
  7. Wine works great for most applications I've tried actually,
  8. I'm already using Wine, but I don't know any good games for Windows either, and if I did, I'm not sure if they work on Wine, but thank you, :PThe thing is, I wont be able to use Facebook for the next 5 months, :/
  9. Seems like a great link, thank you derek!
  10. Thanks for your share!I'm somehow tired of Tetris-games though! :/
  11. I made a quick research and found a reference guide on the following website: W3.org - Child-Selectors W3.org - First-Child I made a quick example on my local PC, and this is the important part of the code. It works, and I think this is exactly what you want: <head> <style type="text/css"> div.summary > strong:first-child { color:red; } </style></head><body> <div class="summary">La<strong>lalal</strong>La<strong>lalal</strong></div></body> Now what will happen here is that the first strong element will make the text red, while the second strong element will do what it usually does, making text bold. I hope this is what you are looking for. Regards, /Feelay
  12. I assume that you are using CSS. If that's the case, you can write it like this, strong:first-child{CSS-Code goes here.} This will do that EVERY FIRST "strong" element inside another element (or in the body) gets those preferences. Is that what you're looking for? If that's not the case, I'll blame it on the time, (A) It's almost 4AM here, Regards /Feelay
  13. It took me a while to decide where to put this.. In the Linux forums or in the Games forum? But in the end I figured this might fit best here since it's Linux related.I'm wondering. What's your favourite Linux games? I'm using Ubuntu 10.10 and I'm still exploring all the possibilities. I've downloaded some games, but nothing that caught my eye.I know that Linux isn't the "Gaming-OS", but I'd like to know if you know anything that might be fun. I'd like the graphics to be either 2D or good 3D. In other words, no "bad" 3D with a bad camera and hard controls.I have a special request actually:Does anyone know of a strategy game where you, for example build a city or a town or something like that. Say that you build a building or make a research. When you do that, you wont be able to do anything else for say, five minutes. I want this, because it would be fun to do something like that while coding. I know there's a lot of games like these online like Travian, Ikariam and Evony, but I'd like to play a game like this in Single Player mode locally on my PC, because no matter what I do, I always end up making friends when playing such games online, and it's always hard to stop playing when I get tired of the game because of these friends.I'm also wondering if anyone knows of any good real time strategy game for Linux. That would be great when I have nothing to do.Thanks!Regards, Feelay.
  14. Haha, sorry for reviving such an old thread.. I'm just browsing through my old threads and I just realised how much I've developed since this thread was created!Somehow shocking how much you can develop in two years, haha!
  15. Feelay

    Notepad++

    Here you go, both of you, Latest version of Notepad++: https://notepad-plus-plus.org/download/v6.7.5.html Yordan might not need it, but starscream, you do,
  16. I've used JQuery, but not had the time to learn it completely Thanks for the advice anyways. The thing is I don't have the time to make many tutorials now that school has begun and I'm working with websites and at the same time I'm addicted to games and want to spend time with my friends. That's 4 things to do every day, more than most people can usually handle
  17. Feelay

    Notepad++

    Am I the only one having problems with the Notepad++ highlighting when coding JavaScript and PHP? Sometimes it randomly happens that all the colors disappear. The solution is to remove some lines before the <?php or <script> tag, and in some cases, if it looks like this: Lalalalala<script> I have to make it look like this and then make new lines again to make it work: Lalalalala<script>
  18. Welcome to Xisto resideNt.Have a nice stay.Regards./Feelay
  19. I'm afraid it'd take too long time for me to explain and I'm kind of busy at the moment. Maybe if someone else could help you (If you start a new thread), because I have no idea when I'll be able to write you a tutorial =/Regards/Feelay
  20. On line 80, try adding another } so that it looks like the following: }} Regards /Feelay
  21. imagedestroy($tmp)on line 69. Try adding a ; at the end of that line, so that it looks like the following imagedestroy($tmp); In upload.php Regards /Nanashi
  22. If you've installed PHPMyAdmin on your PC, and if you are trying to connect to your local database server, you'll have to install MySQL.Else if you want to connect to your hosted database, you'll have to figure out how to change the server you are trying to connect to using PHPMyAdmin, because I'm afraid I don't know how to do that =/
  23. Great!Tell me when you've learned how to make your own tables and insert new rows with PHPMyAdmin!
  24. Well.. To begin with, do you have a database account?And have you ever created a table inside a database before?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.