Jump to content
xisto Community

iGuest

Members
  • Content Count

    72,093
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iGuest

  1. I'm not sure if this is the right forum but... I recent stumbled about this new site: Aviary. Here is the description from their about page: Right now, their image editing application, "Phoenix", is in its beta stage, and you can sign up for an "early bird" invitation. I got my invitation to join the beta after about 3 days of signing up. Its a very cool website, and definitely worth a look for anyone who is interested in web-design, image editing or .. just cool new websites. I don't know how much longer the beta will be open, so if you're interested, go now.
  2. Ya, you can't find a script to do that... ..I replied to one of your posts about finding free web templates to edit. I think maybe you should just try to sit down and learn some web programming. You'll probably spend more time trying to read, edit and install scripts and applications you don't understand, than you would if you learned the language! But, to stay on topic, here is another online image editing site: a.viary.com. The site is actually a whole online suite of web applications (image editing, video editing etc..). Its in the beta stage for their image editing application right now and you can sign up for it. I got my invite after a couple days of signing up... Its very cool!
  3. Well, its not really a good idea to make a choice of using either Java or Python without considering the context. Depending on what project you're working on, one may be better for the job, or it might not really matter.For one thing, programming in Python is much faster. I'm not talking about run-time, but just the time it takes to write a program. Python is dynamically typed, compact and concise, so it is often a better choice for smaller applications. But for the reasons mentioned by hatim, Java has many advantages over Python. So, I guess I'm saying, you should learn both and use which ever one is appropriate.
  4. This is an old topic but ... ...Python is probably a very good choice for what you've described. If you have limited programming experience, its a very good language to start with. Its easy to learn and very intuitive (also no variable declarations or curly brackets!), but can be very powerful as well. If anyone does decide to get into Python, I'd recommend using Eclipse with the PyDev plugin. You probably won't find yourself needing anything more than what is offered with it.
  5. I just wanted to add another vote for Eclipse. I've been programming in Java for about 5 years, I've tried a lot of IDEs, and its easily the best one I've used. I use it for most development I do now, thanks to all of the great plugins available for it. But, for beginners, I'd recommend Dr.Java. Its lightweight and simple to use, but isn't nearly as powerful as Eclipse. I used it in a 1st year Java course in my CS program, which is a good place for it.
  6. iGuest

    I Hate Wiggers

    My 2 cents I Hate Wiggers A lot of people call me a wigger. I was raised in the projects and always had black friends. I could walk up to black friends of mine and say what up my *BLEEP*, and they wouldn't say anything, don't try this to any random black person you might die. I'm white of course, I realize now days it is very hard to get a job with the thug image. I have changed up my style a little but I still am the same person I was. If you were raised in the projects around that culture you would be a wigger too. All the racist people out there just wait till you have children. The world is going to diversify more and more till were all gray anyway. Its just a culture or way of life, don't take it so seriously. There are far more important things in life. Don't label people when you don't know what they've been through or what goes on inside their head. Were all going to end up in a box in the ground so why does it matter. You should do whatever makes you undeniably happy, its what life's all about. -reply by Jeff Bruce
  7. Hey kxrain, I'm not sure I understand exactly what you are asking for here. If you are looking for page templates that you can edit, you can find a lot of good, free designs at Open Source Web Design. Its a good, searchable page with preview images, and you can download sample pages and the CSS files. A better idea would be to use Wordpress. The official webpage has a huge database of themes that you can easily set-up and use with your site. This page has a lot of good themes too.
  8. TEXT ISSUE How To Make A Game-related Signature Replying to TeamEFX I used this thread to create me a basic gamer sig, but when I entered my text, my backgrond went white. How do I just write the text with the backgrond the same? As it is in the example sig. Please help. -josh
  9. Problems installing Halo3 font How To Make A Game-related Signature I downloaded the Halo3 v3.0 font and copy both files, fond my font folder under windows. When I right clicked and pasted the folders, I never got access to them as a font. I don't know what I am doing wrong. I followed the link from the website and followed yor instrctions. What can I do now to se the Halo3 font? -KALIBER6981
  10. how wrap the text content inside the div tag? Word Wrap Text In Div. Sir I developed a site for company.The contents are displayed dynamically. With the help of Ajax.Here the contet are from Databse and placed inside "div tag". Which are inside the "table". The content stored in the DB is in html format. So the problem is SOME TIMES IF THE CONTENT'S(table ) WIDTH IS GREATER THAN THE SPECIFIED SIZE OF THE table(USER SIDE) THEN THE ALIGNMENT FULLY CHANGED. THE CONTENT FROM THE DTATABASE COULD NOT OCCUPY THE SPECIFIED SPACE IN DISPLAY SIDE(user side). THE CONTENT COULD NOT WRAP and CANT PACED INSIDE THE TABLE. Please help me how to wrap the content inside the table. <td width="600" height="400px" bgcolor="#FFFFFF" colspan="2" > <div id="txtHint" style="width:595; vertical-align:top ;" > //CONTENT FROM DB //AJAX TECHNOLOGY USED, the content paced in <div> </div></td> Plese help me Saami
  11. Turning An Image Into A Cartoon Style - Photoshop Turning An Image Into A Cartoon Style - Photoshop Replying to halo2krew Which filter is supposed to be used to crate the cartoon effect?
  12. Try increasing the size of your icon cache by changing this registry key value to 2048 or larger:HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Explorer/Max Cached IconsIf that "Max Cached Icons" key does not exist in the registry, create it.-reply by DrCola
  13. 1:You have <title>Race</title> before your PHP session/headers, this means the headers will already be sent and you were too late to start a session. Usually caching a page before it's sent can solve this, or just move the title below the PHP code.2:Including a CSS stylesheet, I don't know what's inside here, but if it's plain text use HTML to include the stylesheet or if it's PHP, give it a PHP extension, else it'll be treated just like plain text.e.g. <link href="path/to/style.css" rel="stylesheet" type="text/css" />3:session_start() must appear before any other PHP operation unless page caching is done, but you should learn to always do it first.4:session_is_registered() takes a string, you are using a constant called myusername which may or may not be what you want, e.g. you might want to do if(!session_is_registered('myusername'))5:failed to check if $_GET['action'] is set before using it, you should do:if(!empty($_GET['action']) && $_GET['action'] == 'race')6:failed to check if $_POST['bike'] exists, undefined variables can cause undesirable results, always insure they are set before using them.if(!empty($_POST['bike'])) { $asa = $_POST['bike'];}else { echo '<p>You did not select a bike!</p><p>Click <a href="race.php">HERE</a> to go back</p>'; exit;}I know there will be more problems, but I don't have time to go through the whole thing at the moment so I'll leave it as this for now.Cheers,MC
  14. I am sorry to imform you but harry is not related to Godric Gryffindor but is actually related to Salazar Slytherin I have gotten this information from very hard searching in the books for your own look go to http://en.wikipedia.org/wiki/Potter_family it's near the end of the page -reply by biggestpotterfan
  15. Thanks! Phpbb Forum Site Transfer I haven't tried it yet, but when I do attempt to switch over to my domain, Ill use this reference *bookmarks this page* Oh and if you want a specific name for the "credits" section of my soon to be up beta site, just email me at tennis8668@yahoo.Com -reply by tennis8668
  16. Replying to rovertosOk, Video Games were invented by the Government as a way to keep poor people poor. Video Games came up right after the Government invented Drugs and they realized that people who are high would need something to do once they sobered up. The Government has to keep a POOR class in society so there will be people to work at Mc Donalds and Wal-Mart. If everyone was productive the America would not work, the rich could not profit from poor labor, etc. Thus Video Games keep Poor people from becoming educated and getting better jobs with better pay or God FORBID the Poor might gang up against the rich and revolt. Don't want that, keep em all High on drugs!! -reply by Mr Smith777
  17. Paypal savings acc. Paypal Savings Account I just sent an email inquiring about a paypal savings acc. I would like to say that after reading about all the emails that folks have sent in about paypal I am now not interested in opening this account.I do not feel comfortable opening a savings acc. With several 1000.00s and have it vanish or run into trouble down the road due to lost information or some other problem.Anyway be that as it may I wanted to inform you that I withdraw my request for a savings acc. Information. Thanks for your time. D.Peters -reply by Duwayne Peters
  18. re to increase disk size Increase Internet Speed For Win Xp Home Asim khan you can't increase you harddrive size unless you buy a new one. I think the 5gb is the recovery harddrive, just reformat your harddrive by increasing a clean version of xp. -none
  19. I would like information about your savings account Paypal Savings Account I have resently gotten information that Paypal has a savings account that offers a 12% interest rate. Is this true and if so can you please send me the information I need to open an account. Thank you D.Peters -reply by duwayne Peters
  20. max age limits Changing Legal Age For Driving Replying to Galahad They shouldn't raise the minimum age for driving but make a maximum age for elderly drivers. An age like 45 yrs. Old.
  21. max age limits Changing Legal Age For Driving There should be a maximum age limits for elderly drivers. One reson is that elderly drivers are the 2nd highest cause for crashes. I mean that old people should not be allowed to drive once they get past 50 yrs. Of age
  22. Here Tongue Twister Replying to hillbilly I Smart Fellow I Fellow Smart Just say it over and over again as fast as you can. I know you'll understand this one. -reply by rosebud
  23. Hey, I play CS:S alot and I was just wondering what CAL stands for as I have noticed alot of the people here using itThanks,Oli
  24. Use this commandMd.see:conIt will make you the required folder and you will not be able to delete it..As normally you do to delete it use the following commandRd.See:conOrRmdir.see:con-reply by Ranjeet Malik
  25. no to parenting licenses- a theoratical manifesto Parenting License? I don't think that parenting licenses are not just; because I believe that unless you are proven to be incompetent as a parent, there is no proof that you will turn out to be a bad one. I think that state has no right to intervene in a issue that is not predetermined. State can already take away the kid, if things go wrong and if kid is abused; meaning that crime is committed; but beforehand no one has the right to rule beforehand and behave parents as if guilty while they are theoretically innocent. -reply by lazymother
×
×
  • 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.